Policy-Base Routing part 1 - GNS3
Policy-Base Routing - route base on source address - GNS3    *this is not a complete routing design, just to prove the Policy-Base Routing concept  all traffic source from 10.1.1.1 and 10.2.2.2 will be route to R3 and R4 respectively using policy-base routing  R1 will have a default route to R2, policy-base routing will be applied on R2  note that policy-base will take over from static or dynamic route if there's a match  R1 interface Loopback1  ip address 10.1.1.1 255.255.255.0 ! interface Loopback2  ip address 10.2.2.2 255.255.255.0 ! interface Serial0/0  ip address 172.16.1.1 255.255.255.252  clock rate 56000 ! ip route 0.0.0.0 0.0.0.0 172.16.1.2  R2 interface FastEthernet0/0  ip address 192.168.1.1 255.255.255.0  duplex auto  speed auto ! interface Serial0/0  ip address 172.16.1.2 255.255.255.252  ip route-cache policy  ip policy route-map map1  clock rate 2000000 ! interface FastEthernet0/1  ip address 192.168.2.1 255.255....
