connection.
Step 1
Configure a route map tag. I chose "takeserial".
Step 2
Point the route map to the tag. Don’t let the 10 shake you it is just a
sequence number.
Router_C(config)#route-map
takeserial permit ?
<0-65535>
Sequence to insert to/delete
from existing route-map entry
Step 3
Identify which packet should be route mapped. In our example we will
match the ip address of access list 1.
Step 4
Tell the router where to send the matched packet. We will send the
packets to Serial 0.
Current configuration:
!
version 11.2
!
hostname Router_C
!
!
!
interface Ethernet0
ip address 10.3.0.3 255.255.0.0
!
interface Ethernet1
ip address 10.1.0.3 255.255.0.0
ip policy route-map takeserial*Step 1
!
interface Serial0
ip address 10.2.0.1 255.255.0.0
clockrate 38400
!
interface Serial1
no ip address
shutdown
!
router ospf 100
network 10.0.0.0 0.255.255.255 area 0
!
no ip classless
access-list 1 permit 10.1.0.5
route-map takeserial permit 10 *Step 2
match ip address 1 *Step 3
set interface Serial0 *Step 4
!
line con 0
line aux 0
line vty 0 4
login
!
end
Now we will ping 10.4.0.2 from Workstaton A:
Router_C#debug ip policy