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

ACL Question 1

Status
Not open for further replies.

Almin

Technical User
Mar 1, 2010
137
US
If I have two VLANS and two outside interfaces, and currently both are routing over a 10MB circuit.

vlan 172
ip address 10.10.10.1 255.255.255.0

vlan 173
ip address 10.10.11.1 255.255.255.0

currently both are routing over the 10MB circuit 66.65.67.2 255.255.255.252

if I wanted to create a policy based routing for vlan 173 to go out of the 3MB secondary circuit 54.55.56.6 255.255.255.252 what would my ACL look like. I'm not very good with extended ACL's and im having issues when it comes to this part.

All I need it vlan 172 to route through 54.55.56.6 address.

Any help is greatly appreciated

Thank you
 
It would look something like this:
Code:
ip access-list extended acl_pbr
  permit ip 10.10.11.0 0.0.0.255 any

route-map pbr permit 10
  match ip address acl_pbr
  set ip default next-hop 54.55.56.5
route-map pbr permit 20

interface vlan 173
  ip policy route-map acl_pbr

 
Thank you unclerico.... you have helped me a lot

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top