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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Problem with 1720 and 2621 Routing

Status
Not open for further replies.

jafo18301

IS-IT--Management
Joined
May 28, 2003
Messages
55
Location
US
First of all I want to thank everyone in the past who has helped out this newbie. I'm learning more and more as I read. I have the following problem. I have a DSL modem connected to a 1720 router (50.1.1.0 network). I have the 50.1.1.1 network connected to a switch. On the same switch I have a 2621 with a 50.1.1.5 address on the FE0/0 interface. On the FE0/1 of the 2621 I have a 90.1.1.0 network. Now, I can reach the internet from any address on the 50.1.1.0 network but cannot even ping on the 90.1.1.0 network. I can reach any address on the 50.1.1.0 or 90.1.1.0 network but cannot get from the 90.1.1.0 network to the internet. I do not have any firewalls setup as of yet but I am using NAT on the 1720 router. I will setting up a static IP on the 1720 within a few weeks but for now it is dynamic. Can anyone explain why I cannot hit the internet from my 90.1.1.0 network? Any help is always appreciated by this newbie. Below are my configs for each router. Thanks in advance....

**** 1720 ****
!
version 12.3
service timestamps debug uptime
service timestamps log uptime
service password-encryption
!
hostname R2
!
boot-start-marker
boot-end-marker
!
enable password 7 XXXXXXXXXXXXXX
!
memory-size iomem 25
mmi polling-interval 60
no mmi auto-configure
no mmi pvc
mmi snmp-timeout 180
no aaa new-model
ip subnet-zero
!
no ip domain lookup
!
ip cef
ip audit po max-events 100
vpdn enable
!
vpdn-group pppoe
request-dialin
protocol pppoe
!
no ftp-server write-enable
!
!
!
!
!
!
!
interface Ethernet0
description connected to Internet
no ip address
half-duplex
pppoe enable
pppoe-client dial-pool-number 1
no keepalive
!
interface FastEthernet0
description connected to EthernetLAN
ip address 50.1.1.1 255.255.255.0
ip helper-address 90.1.1.1
ip nat inside
ip tcp adjust-mss 1452
speed auto
!
interface Dialer1
description connected to Internet
ip address negotiated
ip mtu 1492
ip nat outside
encapsulation ppp
dialer pool 1
dialer-group 2
ppp authentication chap pap callin
ppp chap hostname XXXXXXXXXXXXX
ppp chap password 7 XXXXXXXXXXXXXXXXXX
ppp pap sent-username XXXXXXXXXXX password 7 XXXXXXXXXXXXXXXXXX

!
router rip
version 2
passive-interface Dialer1
network 50.0.0.0
no auto-summary
!
ip nat inside source list 1 interface Dialer1 overload
ip classless
ip forward-protocol udp 135
ip route 0.0.0.0 0.0.0.0 Dialer1
ip route 50.1.1.0 255.255.255.0 FastEthernet0 permanent
ip route 90.1.1.0 255.255.255.0 FastEthernet0 permanent
no ip http server
no ip http secure-server
!
!
access-list 1 permit 50.1.1.0 0.0.0.255
access-list 1 permit 90.1.1.0 0.0.0.255
dialer-list 2 protocol ip permit
!
snmp-server community public RO
snmp-server enable traps tty
!
line con 0
exec-timeout 0 0
password 7 XXXXXXXXXXXXXX
login
line aux 0
line vty 0 4
password 7 XXXXXXXXXXXXXX
login
!
!
end


**** 2621 ****
Current configuration:
!
version 12.0
service timestamps debug uptime
service timestamps log uptime
service password-encryption
!
hostname R3
!
enable password 7 XXXXXXXXXXXXXXXX
!
!
!
!
!
ip subnet-zero
no ip domain-lookup
ip dhcp excluded-address 90.1.1.1 90.1.1.100
!
ip dhcp pool 1
network 90.1.1.0 255.255.255.0
default-router 90.1.1.1
dns-server XXX.XXX.XXX.XXX XXX.XXX.XXX.XXX
!
ip audit notify log
ip audit po max-events 100
isdn voice-call-failure 0
!
!
!
!
!
!
!
!
interface FastEthernet0/0
description connected to EthernetLAN
ip address 50.1.1.5 255.255.255.0
ip helper-address 90.1.1.1
no ip directed-broadcast
ip nat outside
duplex auto
speed auto
!
interface FastEthernet0/1
description connected to EthernetLAN_1
ip address 90.1.1.1 255.255.255.0
no ip directed-broadcast
ip nat inside
duplex auto
speed auto
!
router rip
version 2
redistribute static metric 1
no auto-summary
!
ip classless
ip route 50.1.1.0 255.255.255.0 FastEthernet0/0 permanent
ip route 90.1.1.0 255.255.255.0 FastEthernet0/1 permanent
no ip http server
!
snmp-server engineID local
snmp-server community public RO
!
line con 0
exec-timeout 0 0
password 7 XXXXXXXXXXXXXXXX
login
transport input none
line aux 0
line vty 0 4
password 7 XXXXXXXXXXXXXXXX
login
!
no scheduler allocate
end
 
Nevermind.... I figured out my stupid issue.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top