SIMULATION -
Policy Based Routing Sim -
Company A can has two links which can take it to the Internet. The company policy demands that you use web traffic to be forwarded only to Frame Relay link if available and other traffic can go through any links. No static or default routing is allowed.
1) Access list that catches the HTTP traffic:
BorderRouter(config)#access-list 101 permit tcp any any eq www
2) Route map that sets the next hop address to be ISP1 and permits the rest of the traffic:
BorderRouter(config)#route-map pbr permit 10
BorderRouter(config-route-map)#match ip address 101
BorderRouter(config-route-map)#set ip next-hop 10.1.101.1
BorderRouter(config-route-map)#exit
3) Apply the route-map on the interface to the server in the EIGRP Network:
BorderRouter(config-route-map)#exit
BorderRouter(config)#int fa0/0 -
BorderRouter(config-if)#ip policy route-map pbr
BorderRouter(config-if)#exit -
BorderRouter(config)#exit -
BorderRouter#show route-map -
SIMULATION - Policy Based Routing Sim - Company A can has two links which can take it to the Internet. The company pol
-
answerhappygod
- Site Admin
- Posts: 899604
- Joined: Mon Aug 02, 2021 8:13 am
SIMULATION - Policy Based Routing Sim - Company A can has two links which can take it to the Internet. The company pol
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!