12-22-2009 10:04 PM - edited 03-04-2019 07:03 AM
Can anyone please inform me why I am not getting expected result from the NAT process? I have included a Packet Tracer file which contains the Network and its configuration. I am also posting some pictures of the diagram and configuration.
Please view the configuration of two routers to know the details of the diagram.
Following activities are currently working properly in the Network diagram.
As I have implemented an ACL on serial 0/0 inbound direction, I want Router “ISP” should block any private IP address coming from the “Gateway” Router.
On the router “Gateway” I have intentionally denied some private IP addresses in the access list, so that they can not take part in IP NAT translation process.
Problem:
When I am using “tracert 100.100.100.102” from any Host computers it is showing the time to reach that IP address, but it cant ping that address
When I am using “tracert 100.100.100.102” from any servers, its showing “destination host unreachable”.
When I am using the Simulation mode of Packet tracer, simulation shows packets are generating from host computers, can reach and come back to the same host, but result is showing “Failed”.
“Show access-list” command on “ISP” router showing increasing counters only against “permit ip any any”. But counter are not increasing when I am sending packets from any servers (for those packets, which I don’t want to translate through the NAT process). In that case, when I am sending packets from any servers, counters against “deny ip 172.16.0.0 0.0.15.255 any” should increase in the “ISP router.
Can anyone please help?
12-22-2009 10:22 PM
enablethedebuaging of the nat using the folowing command in gateway router
debug ip nat detail
then generate traffic from a host supposed to be nated to outside
and post the result of the debug here as text file
12-22-2009 11:57 PM
Here is the output
Gateway#debug ip nat
IP NAT debugging is on
Gateway#
NAT: s=192.168.1.8->100.100.100.101, d=100.100.100.102 [7]
NAT*: s=100.100.100.101->100.100.100.102, d=100.100.100.101 [233]
NAT*: s=100.100.100.102, d=100.100.100.101->192.168.1.8 [233]
NAT: s=192.168.2.11->100.100.100.101, d=100.100.100.102 [9]
NAT: s=100.100.100.101, d=100.100.100.102->100.100.100.102 [9]
NAT*: s=100.100.100.101->100.100.100.102, d=100.100.100.101 [239]
NAT*: s=100.100.100.102, d=100.100.100.101->192.168.2.11 [239]
NAT: s=192.168.3.11->100.100.100.101, d=100.100.100.102 [9]
NAT: s=100.100.100.101, d=100.100.100.102->100.100.100.102 [9]
NAT*: s=100.100.100.101->100.100.100.102, d=100.100.100.101 [242]
NAT*: s=100.100.100.102, d=100.100.100.101->192.168.3.11 [242]
NAT: s=192.168.4.11->100.100.100.101, d=100.100.100.102 [9]
NAT: s=100.100.100.101, d=100.100.100.102->100.100.100.102 [9]
NAT*: s=100.100.100.101->100.100.100.102, d=100.100.100.101 [246]
NAT*: s=100.100.100.102, d=100.100.100.101->192.168.4.11 [246]
NAT: s=192.168.5.11->100.100.100.101, d=100.100.100.102 [9]
NAT: s=100.100.100.101, d=100.100.100.102->100.100.100.102 [9]
NAT*: s=100.100.100.101->100.100.100.102, d=100.100.100.101 [249]
NAT*: s=100.100.100.102, d=100.100.100.101->192.168.5.11 [249]
NAT: s=192.168.2.10->100.100.100.101, d=100.100.100.102 [9]
NAT: s=100.100.100.101, d=100.100.100.102->100.100.100.102 [9]
NAT*: s=100.100.100.101->100.100.100.102, d=100.100.100.101 [252]
NAT*: s=100.100.100.102, d=100.100.100.101->192.168.2.10 [252]
NAT: s=192.168.3.10->100.100.100.101, d=100.100.100.102 [9]
NAT: s=100.100.100.101, d=100.100.100.102->100.100.100.102 [9]
NAT*: s=100.100.100.101->100.100.100.102, d=100.100.100.101 [256]
NAT*: s=100.100.100.102, d=100.100.100.101->192.168.3.10 [256]
NAT: s=192.168.4.10->100.100.100.101, d=100.100.100.102 [9]
NAT: s=100.100.100.101, d=100.100.100.102->100.100.100.102 [9]
NAT*: s=100.100.100.101->100.100.100.102, d=100.100.100.101 [259]
NAT*: s=100.100.100.102, d=100.100.100.101->192.168.4.10 [259]
NAT: s=192.168.5.10->100.100.100.101, d=100.100.100.102 [9]
NAT: s=100.100.100.101, d=100.100.100.102->100.100.100.102 [9]
NAT*: s=100.100.100.101->100.100.100.102, d=100.100.100.101 [263]
NAT*: s=100.100.100.102, d=100.100.100.101->192.168.5.10 [263]
NAT: expiring 100.100.100.101 (192.168.1.8) icmp 1 (1)
NAT: expiring 100.100.100.101 (192.168.2.11) icmp 1024 (1)
NAT: expiring 100.100.100.101 (192.168.3.11) icmp 1025 (1)
NAT: expiring 100.100.100.101 (192.168.5.11) icmp 1027 (1)
NAT: expiring 100.100.100.101 (192.168.2.10) icmp 1028 (1)100.100.
NAT: expiring 100.100.100.101 (192.168.3.10) icmp 1029 (1)100.10
NAT: expiring 100.100.100.101 (192.168.4.10) icmp 1030 (1)2
NAT: expiring 100.100.100.101 (192.168.5.10) icmp 1031 (1)
I have generated trafic from each & every host and servers
12-23-2009 04:10 AM
thanks for doing that
but i asked to do
debug ip nat detail
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide