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

Default Static Route Issue

Status
Not open for further replies.

enzo288

MIS
Jun 15, 2004
44
US
My client has two Cisco 7204 routers with two separate ISP connections via DS-3. I am configuring a third DS-3 connection for them however, only thier lab subnet should use this particular Internet connection. The issue I have is that means that there will need to be a third default route configured. The are using BGP-Multihomed for the multiple connections. Would I be able to achieve this needed separation using route-maps? I'm not sure about the best way to set this up. TIA and let me know if add'l info is needed.
 
If I understand you correctly you should be able to achieve what you want using PBR..

int 'interface'
ip policy route-map lab

route-map lab permit 10
match ip address 1
set ip next-hop x.x.x.x

access-list 1 permit x.x.x.x x.x.x.x


So next hop will be far end of your /30 on DS3, access-list is obviously your lab subnet and the interface is the one the traffic arrives on (before being sent to the route map).

All other traffic that doesn't match the access list will be treated in the normal way.

You set your BGP up in the normal way for incoming traffic

Apologies if I've misunderstood what you're trying to do!
 
This looks good. Thanks for the quick response Tom.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top