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

IP Route

Status
Not open for further replies.

12122053

Technical User
Feb 19, 2001
210
US
I have setup back to back between a 1604 and 2524 routers. Im using RIP for my routing protocol. On the 1604 router i have a isdn interface that i use for the internet. The problem im having is when i place the command ip route 0.0.0.0 0.0.0.0 s0. After i place the command none of my client machines can't access the internet it seems that there going through the s0, but don't i need that command in order for my 1604 hosts to reach 2524 hosts. Currently I have ip route 0.0.0.0 0.0.0.0 d1 which works fine, but i can't ping from a host on the 1604 side to the 2524 side. Any suggestions, thanks.
 

Building configuration...

Current configuration:
!
version 12.0
no service pad
service timestamps debug uptime
service timestamps log uptime
service password-encryption
no service dhcp
!
hostname founder
!
boot system flash
no logging console
enable secret 5
enable password 7 !
!
!
!
ip subnet-zero
no ip finger
no ip domain-lookup
!
isdn switch-type basic-ni
!
!
process-max-time 200
!
interface Ethernet0
ip address 192.68.1.1 255.255.255.0
no ip directed-broadcast
no ip proxy-arp
ip nat inside
!
interface Serial0
ip address 192.68.3.1 255.255.255.0
no ip directed-broadcast
clockrate 2000000
!
interface BRI0
no ip address
no ip directed-broadcast
ip nat outside
encapsulation ppp
dialer rotary-group 1
isdn switch-type basic-ni
isdn spid1 xxxxxxxxxxxxx
isdn spid2 xxxxxxxxxxxxx

interface Dialer1
description connection to ISP
ip address x.x.x.x x.x.x.x
no ip directed-broadcast
no ip proxy-arp
ip nat outside
encapsulation ppp
dialer in-band
dialer idle-timeout 300
dialer string xxxxxxxxxx
dialer load-threshold 3 either
dialer-group 1
no cdp enable
ppp authentication pap callin
ppp pap sent-username xxxxxx password xxxxxxxxxx
ppp multilink
!
ip nat inside source list 1 interface Dialer1 overload
ip classless
ip route 0.0.0.0 0.0.0.0 Dialer1
ip route 0.0.0.0 0.0.0.0 s0
no ip http server
!
RIP network 192.68.1.0
access-list 1 permit 192.68.1.0 0.0.0.255
dialer-list 1 protocol ip permit
banner motd ^C WARNING!!! UNAUTHORIZED USE WILL BE PUNISH, YOU HAVE BEEN WARNED
^C
!
line con 0
exec-timeout 0 0
transport input none
line vty 0 4
password 7 08701E1F5B
login
!
end

 
The problem is your router now sees the default route as being available both through s0 and dialer1 equally. Your router will round-robin packets between both paths.

You need to weight them so that one is favored:

ip route 0.0.0.0 0.0.0.0 s0 10
ip route 0.0.0.0 0.0.0.0 dialer1 15

--chris
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top