Jump to content

This is the support site for Andrews & Arnold Ltd, a UK Internet provider. Information on these pages is generally for our customers but may be useful to others, enjoy!

Bonding with Cisco IOS: Difference between revisions

no edit summary
(Created page with "After a few nights of meddling with my configuration, the following setup is working well for me. I would like to share it with the community. == Perquisites == * Ask suppor...")
 
No edit summary
* Internal ADSL interfaces allow me to run the setup in PPPoA mode. Modify your dialers for PPPoE if you are using external bridges.
 
== Configuring your Dialer interfaces ==
<nowiki>interface ATM0/0/0
description 01234567890
no ip address
no atm ilmi-keepalive
dsl noise-margin -2
hold-queue 224 in
pvc 0/38
ppp chap password 0 <yourPassword>
no cdp enable
!
dialer-list 1 protocol ip permit
dialer-list 2 protocol ip permit
dialer-list 3 protocol ip permit
!</nowiki>
 
== Configure a virtual interface for your router IP address ==
Use the first address from your block
<nowiki>interface Vlan2
ip address <fromyourblock> <yoursubnet></nowiki>
 
== Upstream load balancing using CEF ==
<nowiki>ip cef
!
ip route 0.0.0.0 0.0.0.0 Dialer0
ip route 0.0.0.0 0.0.0.0 Dialer1
ip route 0.0.0.0 0.0.0.0 Dialer2
!
int Dialer0
ip load-sharing per-packet
!
int Dialer1
ip load-sharing per-packet
!
int Dialer2
ip load-sharing per-packet
!</nowiki>