Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Cant route through router

Status
Not open for further replies.

adam525

ISP
Aug 27, 2003
7
US
I have a cisco 1720 with 2 ethernet interfaces. There is a separate CSU/DSU with cable going to one interface on the router. The other interface on the router goes to a switch on the LAN. From the router I can ping internet addresses and IP's on the LAN but if I try to set the router as the gateway from a computer on the LAN, I can't see past the router. Here is my config. Any ideas?

TIA

_SNIP__

Using 884 out of 29688 bytes
!
version 12.3
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname cisco1
!
boot-start-marker
boot-end-marker
!
enable secret 5
enable password
!
memory-size iomem 20
mmi polling-interval 60
no mmi auto-configure
no mmi pvc
mmi snmp-timeout 180
no aaa new-model
ip subnet-zero
!
!
ip name-server 192.168.12.246
!
ip cef
ip audit po max-events 100
!
!
!
!
!
!
!
interface Ethernet0
ip address 66.88.34.2 255.255.255.252
ip nat outside
full-duplex
!
interface FastEthernet0
ip address 192.168.12.1 255.255.255.0
ip nat inside
speed auto
full-duplex
!
ip address 192.168.12.1 255.255.255.0
ip nat inside
speed auto
full-duplex
!
ip classless
ip route 0.0.0.0 0.0.0.0 66.88.34.1
ip http server
no ip http secure-server
!
!
access-list 1 permit any
dialer-list 1 protocol ip permit
!
!
line con 0
line aux 0
line vty 0 4
password
login
!
end

__SNIP__
 
What interface is this?

ip address 192.168.12.1 255.255.255.0
ip nat inside
speed auto
full-duplex

I don't see the csu/dsu config in here.
 
I didn't notice that before but took it out. There is no interface there.

I don't have the CSU/DSU config (it belongs to the ISP). I can ping external addresses from the router, so should the CSU/DSU's config matter?

I have a REALLY basic setup here and I just want to be sure I'm not going insane.

I have one interface on the LAN (192.168.12.0). The IP of that interface is 192.168.12.1

I have another interface of 66.88.34.2 which is a /30.

I setup the default route of 0.0.0.0 0.0.0.0 66.88.34.1

To me, that should work.
 
You're missing some part of your NAT setup. You've defined your inside and outside interfaces but you also need to define your pools and dynamic mappings:

ip nat inside source list 1 interface ethernet0 overload
access-list 1 permit ip 192.168.12.0 0.0.0.255
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top