Bonding with Cisco IOS: Difference between revisions
Appearance
Content deleted Content added
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 |
||
| Line 12: | Line 12: | ||
* Internal ADSL interfaces allow me to run the setup in PPPoA mode. Modify your dialers for PPPoE if you are using external bridges. |
* 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 |
== Configuring your Dialer interfaces == |
||
<nowiki>interface ATM0/0/0 |
<nowiki>interface ATM0/0/0 |
||
description 01234567890 |
description 01234567890 |
||
| Line 27: | Line 27: | ||
no ip address |
no ip address |
||
no atm ilmi-keepalive |
no atm ilmi-keepalive |
||
dsl noise-margin -2 |
|||
hold-queue 224 in |
hold-queue 224 in |
||
pvc 0/38 |
pvc 0/38 |
||
| Line 70: | Line 69: | ||
ppp chap password 0 <yourPassword> |
ppp chap password 0 <yourPassword> |
||
no cdp enable |
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> |
!</nowiki> |
||