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

Bandle t1

Status
Not open for further replies.

encrb

MIS
Aug 26, 2008
3
0
0
US
The company is adding a second internet t1 and I have a cisco 2620 12.3 (25) with 2 wic- dsu- t1 v1

The 2 t1 are clear channels.

I am not sure is the default route should be 2 lines to the serial interface or one line to the multilink interface.

ip route 0.0.0.0 0.0.0.0 Serial0/0
ip route 0.0.0.0 0.0.0.0 Serial0/1

OR

ip route 0.0.0.0 0.0.0.0 Multilink1


Here is my interfaces.

interface Multilink1
ip address X.X.X.X 255.255.255.X
no cdp enable
ppp multilink
ppp multilink group 1
!
interface FastEthernet0/0
description Encircle local
ip address X.X.X.X 255.255.255.X
no ip redirects
no ip unreachables
no ip proxy-arp
no ip split-horizon
duplex auto
speed auto
no cdp enable
!
interface FastEthernet0/0.1
no ip redirects
no ip unreachables
no ip proxy-arp
!
interface Serial0/0
description "Multilink First T1"
bandwidth 1536
no ip address
ip verify unicast source reachable-via rx allow-default 100
no ip redirects
no ip unreachables
no ip proxy-arp
ip accounting access-violations
encapsulation ppp
no ip mroute-cache
no fair-queue
service-module t1 timeslots 1-24
service-module t1 remote-alarm-enable
no cdp enable
ppp multilink
ppp multilink group 1
!
interface Serial0/1
description "Multilink Second T1"
bandwidth 1536
no ip address
ip verify unicast source reachable-via rx allow-default 100
no ip redirects
no ip unreachables
no ip proxy-arp
ip accounting output-packets
ip accounting access-violations
encapsulation ppp
no ip mroute-cache
keepalive 5
no fair-queue
service-module t1 clock source internal
service-module t1 timeslots 1-24
service-module t1 remote-alarm-enable
no cdp enable
ppp multilink
ppp multilink group 1
!
no ip http server
no ip http secure-server
ip classless
ip route 0.0.0.0 0.0.0.0 Serial0/0
ip route 0.0.0.0 0.0.0.0 Serial0/1
!
!
logging trap debugging
logging x.x.x.x
access-list 100 permit udp any any eq bootpc
no cdp run
!
!
!
dial-peer cor custom
!
!
banner motd ^C


Any subjection will be appreciated.

Thank you.

 
I would just put

ip route 0.0.0.0 0.0.0.0 x.x.x.x <-- wan gw address



[americanflag] SPC NVARNG
Tek-TIP Member 19,650
 
It make sense for me, thank you for your help
I will try the gw IP instead.
 
Remember, the ip route statement is a layer three statement. Once you make your T1s part of a multilink group, the multilink interface is your layer three component.

Regardless, I would do as Jeter suggests and just point to the layer three destination, not any particular interface.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top