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

Access list help for BGP

Status
Not open for further replies.

qhasxeem

MIS
Oct 30, 2001
1
US
I currently have two differently ISP running BGP on two T1. Now I'm going to get a third ISP and another T1 (company's cheat and goes for lowest price). I don't want BGP to its job and choose the best path. I have set weights to the address (see load sharing on cisco site)

access-list 1 permit 0.0.0.0 127.255.255.255
access-list 2 deny 0.0.0.0 127.255.255.255
access-list 2 permit all

This breaks the list into two groups and then assign weights using route-map commands (not shown).

Does anyone know how to break this into three even list? Multicast addresses does not matter.


Will the follow work?
access-list 1 permit 0.0.0.0 80.255.255.255
access-list 2 deny 0.0.0.0 80.255.255.255
access-list 2 permit 80.0.0.0 80.255.255.255
access-list 3 deny 0.0.0.0 80.255.255.255
access-list 3 deny 80.0.0.0 80.255.255.255
access-list 3 permit all

range 1 : 0.0.0.0 to 80.255.255.255
range 2 : 81.0.0.0 to 160.255.255.255
range 3 : 161.0.0.0 to 255.255.255.255
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top