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

Route by protocol 1

Status
Not open for further replies.

MattWray

Technical User
Nov 2, 2001
2,332
US
We have a Frame Relay WAN with a backup of VPN over cable. I would like to route all HTTP out the cable and all other traffic over the Frame. Is this possible? The router is a 1721...

Thanks,

Matt Wray
MCSE, MCSA, MCP, CCNA

 
Sure. I don't have an example off the top of my head but it would involve access lists. i have done something similar but it has been a while.

I will see if i can post an example if no one else does.

commsguy

 
Yes. Look for "route-map" and "policy routing" on cisco (and Google, for that matter). It works something like this:

access-list 101 permit tcp any any eq www
route-map mytrafficmap permit 10
match ip address 101
set ip next-hop <cable ip>

interface <incoming i/f>
ip policy route-map mytrafficmap

 
Just to clarify, since the tutorial doesn't make it entirely clear for you application.

This should roughly do what you want:

access-list 142 permit tcp any eq !
interface ethernet 1
ip policy route-map PBR
!
route-map PBR permit 10
match ip address 142
set ip next-hop <Cable>
!
route-map PBR permit 20
set ip next-hop <IP of Frame>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top