Evil_TTL> show | s

PBR

Category:Cisco Systems -> Routing and Switching

Network diagram:

PBR-10.jpg

Process flow diagram:

PBR-20.jpg

PBR configuration example:

ip access-list extended TMG
 10 deny ip any 172.16.0.0 0.0.255.255 
// Ignore packets between subnets, e.g., destined to any host in 172.16.0.0 network
 
20 permit ip 172.16.10.0 0.0.0.255 any
 30 permit ip 172.16.20.0 0.0.0.255 any

route
-map TMG permit 10
 match ip address TMG
 set ip next
-hop 172.16.30.150

int vlan 10
 ip policy route
-map TMG
int vlan 20
 ip policy route
-map TMG 
By privilege15