HungryHouse
Vendor
If you have already have overload NAT/PAT configured to be bound to the outside interface on a Cisco router in order to allow standard internet browsing from the inside hosts, and you also have a static port NAT for an inside web server 1-1 on port 80 bound to that same interface (the web server is on the same subnet as the rest of the hosts being PAT'd), then wouldn't that web server, if browsing as a host itself, show up in the nat translation table as souce port 80 and not a random port# like it would for PAT?
I thought this was the case, however, when seeing the
"show ip nat translation" output this is not so. Its still using random port#s for that host.
Can anyone help explain this? I must be missing something.
Here is the config example:
(config)#int eth0/0
(config-if)#ip nat inside
(config-if)#exit
(config)#int eth0/1
(config-if)#ip nat outside
(config)#exit
(config)#ip access-list standard NAT_ADDIES
(config-std-nacl)#permit 192.168.0.0 0.0.255.255
(config-std-nacl)#exit
(config)#ip nat inside source list NAT_ADDIES int eth0/1 overload
(config)#ip nat inside source static tcp 192.168.99.99 80 int eth0/1 80
thank you
-HH
I thought this was the case, however, when seeing the
"show ip nat translation" output this is not so. Its still using random port#s for that host.
Can anyone help explain this? I must be missing something.
Here is the config example:
(config)#int eth0/0
(config-if)#ip nat inside
(config-if)#exit
(config)#int eth0/1
(config-if)#ip nat outside
(config)#exit
(config)#ip access-list standard NAT_ADDIES
(config-std-nacl)#permit 192.168.0.0 0.0.255.255
(config-std-nacl)#exit
(config)#ip nat inside source list NAT_ADDIES int eth0/1 overload
(config)#ip nat inside source static tcp 192.168.99.99 80 int eth0/1 80
thank you
-HH