This blog was originally started to better help me understand the technologies in the CCIE R&S blueprint; after completing the R&S track I have decided to transition the blog into a technology blog.

CCIE #29033

This blog will continue to include questions, troubleshooting scenarios, and references to existing and new technologies but will grow to include a variety of different platforms and technologies. Currently I have created over 185 questions/answers in regards to the CCIE R&S track!! Note: answers are in the comment field or within "Read More" section.

You can also follow me on twitter @FE80CC1E


Sunday, October 17, 2010

Question 140

How do you ensure that any packet sourced from 192.168.1.1 uses serial 1/0 and packets sourced from 192.168.1.2 uses serial 1/1? All other packets use the best route.


2 comments:

Packets Analyzed said...

Gary B wrote


this should do it, uses the local policy route-map to PBR routes sourced from the router, vs int PBR of packets sent through the router

ip access-list extended ONEONE
permit ip host 192.168.1.1 any
ip access-list extended ONETWO
permit ip host 192.168.1.2 any
!
route-map SERIAL_PBR permit 10
match ip address ONEONE
set interface Serial1/0
!
route-map SERIAL_PBR permit 20
match ip address ONETWO
set interface Serial1/1

ip local policy route-map SERIAL_PBR

Packets Analyzed said...

If you wanted to ensure traffic that was not locally generated and was coming from fastethernet 0/1 the you would do the following

config#interface fastethernet 0/1
config-if#ip policy route-map SERIAL_PBR

Post a Comment