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!

E1 configuration, pls advice.

Status
Not open for further replies.

andreyts

Technical User
Feb 7, 2005
73
IL
Hi
I have cisco router with 3 E1 controllers.
I want to configure them together ( like a bundle) and connect to equipment that working 6M+ .
Anybody can help me with bundle configuration?

Thanks

Best Regards,

Andrey
CCNA
 
KiscoKid hi
Thank you very mutch.
Tell me something , what kind of filters you are useng in the Cisco web site when you automaticly find this staff?

I tried several times but the problem is that they have a lot of information and on single search i am receiving 2000 URLs to deferent pdfs.

Can you explain me that?

Thanks

Best Regards,

Andrey
CCNA
 
Setup a MPPP (Multilink Bundle). Do a search on google for cisco mppp configure.

CREATING MULTILINK INTERFACES
_____________________________

1. Enter the interface multilink # command.
Try using a mulitlink# that matches the annex.

72xx(config)# interface multilink 7
72xx(config-if)#

2. Add a WAN address (/30) for the multilink interface.
72xx(config-if)#ip address 10.224.254.241 255.255.255.252

3. Enter 72xx(config-if)#ppp multilink

4. Enter 72xx(config-if)#no ppp multilink fragmentation

5. Enter 72xx(config-if)#description Binds Two T1s from SA7B to MS

interface Multilink7
description Binds two T1s from SA7B to MS
ip address 10.224.254.241 255.255.255.252
ppp multilink
no ppp multilink fragmentation
multilink-group 7

BUNDLING PHYSICAL INTERFACES
____________________________

1. Enter interface configuration mode for the first T1 interfaces.
72xx(config)#interface serial 3/0:1

2. Specify the interface encapsulation as PPP.
72xx(config-if)#encapsulation ppp

3. Enter the ppp multilink command to enable this interface to support MLP.
72xx(config-if)#ppp multilink

4. Enter no fair-queue command.
72xx(config-if)#no fair-queue

5. Assign this interface to the multilink group.
72xx(config-if)#multilink-group 7

6. Enter a description for the multilink.

7. Do the same for the next T1 serial interface.

interface Serial3/0:1
no ip address
encapsulation ppp
no fair-queue
ppp multilink
multilink-group 7

interface Serial3/1:1
no ip address
encapsulation ppp
no fair-queue
ppp multilink
multilink-group 7

VERIFING MULTILINK INTERFACES
_____________________________

Router# show interfaces multilink 7
The Bandwith (BW) line should show the combined T1 bandswith (3088 for 2 T1's)

Router# show ppp multilink

Router# show interfaces multilink 7 stat

Router# show cdp nei multilink7 detail


REMOVING MULTILINK INTERFACES
_____________________________

1. Enter the T1 interface that you want to remove from a multilink bundle.
Router(config)# interface serial 3/0:1
Shutdown the interface first.

2. Remove the interface from the multilink group.
Router(config-if)# no multilink-group

3. Disable multilink for the interface.
Router(config-if)# no ppp multilink

4. Remove the PPP authentication.
Router(config-if)# no ppp chap hostname


Thanks,
Nicole
 
Thank you very much :)

Andrey

Best Regards,

Andrey
CCNA
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top