cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
238
Views
0
Helpful
2
Replies

PAT HELP

jkortis
Level 1
Level 1

I sent a message before for the following

Serial 0/0 200.200.200.200

eth 0/0 10.10.10.1

eth 0/1 201.201.201.201

ip nat inside source list 1 interface Serial0/0 overload

so the 10.10.10.0 net is nat'd to 200.200.200.200

what i would like to do is

telnet 200.200.200.200:100 and PAT to 201.201.201.204:21

someone suggested

ip nat inside source static 200.200.200.200 100 201.201.201.204 21

this does not work!

it will not allow he port

any hel available?

j

2 Replies 2

donewald
Level 6
Level 6

I think that you're just missing the tcp key word in your translation.

ip nat inside source static tcp 200.200.200.200 100 201.201.201.204 21

NOTE 21 is an FTP port not telnet (23)... FYI

Hope that helps,

Don

donewald
Level 6
Level 6

Did you try the tcp key word?

ip nat inside source static tcp 200.200.200.200 100 201.201.201.204 21

Hope this helps,

Don