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

Can Multilink PPP bridging?

Status
Not open for further replies.

ben2001

MIS
Oct 13, 2004
23
US
Is is possible to setup Multilink PPP (via multiple T1) and bridged them together? Anyone has an example of it.

Thank you
 
The correct term would be bonding them together and yes you can do it point to point with with two t1 lines or with two t1 lines to the internet so long as your ISP supports it.

Example:

ip cef

interface Multilink##
description Maple Street
ip address x.x.x.x 255.255.255.252
no ip directed-broadcast
no cdp enable
ppp multilink
ppp multilink fragment disable
multilink-group ##

interface Serial0/0
description
no ip address
no ip directed-broadcast
encapsulation ppp
no keepalive
tx-queue-limit 26
no fair-queue
no cdp enable
ppp multilink
multilink-group ##

interface Serial0/1
description
no ip address
no ip directed-broadcast
encapsulation ppp
no keepalive
tx-queue-limit 26
no fair-queue
no cdp enable
ppp multilink
multilink-group ##

May need to add nat, crypto, or access-list commands to the multilink if used for internet side.
 
If used point to point remember that one side should have both serial interfaces set to clock source internal for line clocking.
 
I mean bridging not bonding. Instead of setup two subnet (one for each office), can I bridge them together (via multilink PPP) so the two offices are on the same subnet?

Thanks
 
I think what you are trying to do is transparent birdging. Anyway I ran the same thing at my last job which was a few years ago, but from what I remeber I found this which extends one subnet across a wan link. I assume to intergrate multilink add the solution above by joamon.


RouterA RouterB
-------- --------
Interface ethernet 0 Interface ethernet 0
bridge-group 1 bridge-group 1

Interface serial 0 Interface serial 0
bridge-group 1 bridge-group 1

bridge 1 protocol ieee bridge 1 protocol ieee



Visit for free Cisco rack access.
 
Sorry....mis-understood what you were trying to do.
The bridge setup from gwildfire looks like what you were wanting. Would the following be another possibility.

Router A
Interface ethernet0
ip address 192.168.1.1 255.255.255.0
interface serial0
ip unnumbered ethernet0

Ronter B
interface ethernet0
ip address 192.168.1.2 255.255.255.0
interface serial0
ip unnumbered ethernet0

 
Only thing I'd mention in addition to what's already been said is that it may be more appropriate to enable bridging on the multilink interface rather than the individual serials. Otherwise not all your serials in the multilink group won't be able to pass OSI traffic.

 
Only thing I'd mention in addition to what's already been said is that it may be more appropriate to enable bridging on the multilink interface rather than the individual serials. Otherwise not all your serials in the multilink group won't be able to pass layer 2 traffic.

 
I will have my T1s in by the end of nextweek. Will see if it will work. Thank you everyone for your help.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top