Hey gang,
I'm attempting
this lab on IP NAT via Cisco Learning. I'm having trouble with something very basic and for some reason, I can't seem to figure it out. Probably something simple, but would appreciate another set of eyes on the issue.
I setup both routers as per the pdf, running-configs (interesting stuff only) below:
Gateway:
version 12.4
no service password-encryption
!
hostname Gateway
!
enable secret 5 $1$547r$Ie6vnl7DwlvdMphtaoB0Y/
enable password cisco
!
interface FastEthernet0/0
ip address 10.10.10.1 255.255.255.0
speed 100
full-duplex
!
interface Serial0/0
ip address 200.2.2.18 255.255.255.252
clock rate 64000
!
interface TokenRing0/0
no ip address
shutdown
ring-speed 16
!
interface Serial0/1
no ip address
shutdown
!
ip default-gateway 200.2.2.17
!
ip route 0.0.0.0 0.0.0.0 200.2.2.17
!
line con 0
password cisco
logging synchronous
login
line aux 0
line vty 0 4
password cisco
login
!
end
ISP:
version 12.4
no service password-encryption
!
hostname ISP
!
enable secret 5 $1$EsId$25IJ3FekNDR.SdGcQV4/l0
enable password cisco
!
interface Loopback0
ip address 172.16.1.1 255.255.255.255
!
interface FastEthernet0/0
no ip address
speed 100
full-duplex
!
interface Serial0/0
ip address 200.2.2.17 255.255.255.252
!
interface TokenRing0/0
no ip address
shutdown
ring-speed 16
!
interface Serial0/1
no ip address
shutdown
!
ip route 199.99.9.32 255.255.255.224 200.2.2.18
!
line con 0
password cisco
logging synchronous
login
line aux 0
line vty 0 4
password cisco
login
!
end
Now I am unable to ping from the 10.10.10.0/24 network to the ISP router or vice versa. I've attempted a few things, but I'm getting annoyed and most likely overlooking something very basic.
Am I dumb?