You may use the test workstation to generate HTTP traffic to validate your solution

CORRECT TEXT

You are a Network Engineer with ROUTE.com, a small IT company. ROUTE.com has two
connections to the internet: one via a frame relay link and one via an EoMPLS link. IT policy
requires that all outbound HTTP traffic use the frame relay link when it is available. All other traffic
may use either link. No static or default routing is allowed.
Choose and configure the appropriate path selection feature to accomplish this task. You may use
the test workstation to generate HTTP traffic to validate your solution.

CORRECT TEXT

You are a Network Engineer with ROUTE.com, a small IT company. ROUTE.com has two
connections to the internet: one via a frame relay link and one via an EoMPLS link. IT policy
requires that all outbound HTTP traffic use the frame relay link when it is available. All other traffic
may use either link. No static or default routing is allowed.
Choose and configure the appropriate path selection feature to accomplish this task. You may use
the test workstation to generate HTTP traffic to validate your solution.

Answer: See the explanation

Explanation:
Here are the step by Step Solution for this:
1) First create the access list that catches the HTTP traffic:
R1#access-list 101 permit tcp any any eq www
2) Configure the route map that sets the next hop address to be ISP1 and permits the rest of the
traffic:
R1(config)#route-map pbr permit 10
R1(config-route-map)#match ip address 101
R1(config-route-map)#set ip next-hop 10.1.100.2
R1(config-route-map)#exit
R1(config)#route-map pbr permit 20
3) Apply the route-map on the interface to the server in the EIGRP Network:
R1(config-route-map)#exit
R1(config)#int fa0/1
R1(config-if)#ip policy route-map pbr
R1(config-if)#exit
R1(config)#exit

First you need to configure access list to HTTP traffic and then configure that access list. After that

configure the route map and then apply it on the interface to the server in EIGRP network.



Leave a Reply 0

Your email address will not be published. Required fields are marked *