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

Combining three t-1 as one

Status
Not open for further replies.

sikek

MIS
Joined
Sep 15, 2003
Messages
170
Location
US
I wanted to know what commands could I use to combine three t-1 as one?
 
If a T1 is 1.55 i.e x3, so I speculate you configure your bandwith like wise.
 
What layer two tech are you using?
 
HP Procurve Switch 4108GL.
 
See multilink for cisco routers this can help you.
 
If your router can support 3 WIC slots, or take 3 T1's in to it physically in any fasion, then do this (my example below is for a 2691, so label your slots accordingly for your router):

interface Multilink1
ip address x.x.x.x x.x.x.x
ppp multilink
ppp multilink fragment disable
ppp multilink group 1

interface Serial0/0
no ip address
encapsulation ppp
service-module t1 timeslots 1-24
ppp multilink
ppp multilink group 1
!
interface Serial0/1
no ip address
encapsulation ppp
service-module t1 timeslots 1-24
ppp multilink
ppp multilink group 1
!
interface Serial0/2
no ip address
encapsulation ppp
service-module t1 timeslots 1-24
ppp multilink
ppp multilink group 1

So, as you can see, you will not put any IP info on the T1 interfaces themselves, only on the MultiLink interface. This is also where you would put routing information, etc. Think of the multilink interface as the interface to put all IP info, and the Serial interface as the interfaces that do nothing more than physically terminate a T1.
 
Thanks Jynxx,jamin123,reverendo for all your help i'll give it a try.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top