Thursday, March 24, 2011

Lab 64 - RIPv2 Default Routing

Prerequisites: CCNP level skills.

Topology
Pic. 1 - Topology Diagram.
Icons designed by: Andrzej Szoblik - http://www.newo.pl

Task1
Configure R3 to advertise a default to its RIP neighbors. Do not advertise the default route towards R5.

Lab Solution

Task1
Configure R3 to advertise a default to its RIP neighbors. Do not advertise the default route towards R5.

R3 Configuration:
!
route-map DEFAULT_ROUTE permit 10
 set interface Serial0/1 Serial0/2
!
router rip
 version 2
 passive-interface Loopback0
 network 10.0.0.0
 network 172.16.0.0
 default-information originate route-map DEFAULT_ROUTE
 no auto-summary
!

Verification:
Pic. 2 - RIP Update towards R1.

Pic. 3 - RIP Update towards R2.

 Pic. 4 - RIP Update towards R5.

Notice!
RIP update towards R5 does NOT contain a default route.

Pic. 5 - R3's Routing Table.

Notice!
Unlike OSPF or EIGRP, R3 does NOT install a discard route (0.0.0.0/0 via Null0).