|
Posted by Matt on December 1, 2005, 10:49 am
If you were Registered and logged in, you could reply and use other advanced thread options
ip nat pool test 172.16.17.20 172.16.17.30 netmask 255.255.255.0
ip nat inside source list 1 pool test
!
int s0
ip address 10.1.1.1 255.255.255.0
ip nat outside
!
int e0
ip address 192.168.1.1 255.255.255.0
ip nat inside
!
int loopback 0
ip address 172.16.17.1 255.255.255.0
!
router rip
network 10.0.0.0
network 172.16.0.0
!
access-list 1 permit 192.168.1.0 0.0.0.255
-----------------------------------------------------------------------------------
In this configuration why would you assign the loopback interface
172.16.17.1?? Why wouldn't you advertise the 192.168.1.0 network? And
last but not least if your NATing to a 172.16.17.20 address how does
the external host send the packet back to the serial interface when it
has an address of 10.1.1.1? Would't the packet have a Source address of
the new nated address (172.16.17.20) and the destination of (External
Host)? How does it find its way back to the S0 10.1.1.1 network?
Thanks
|