Sunday, March 27, 2011

Lab 73 - RIPv2 Auto-Summary

Prerequisites: CCNP level skills.

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

Task 1
On R5 create loopback interfaces with the following addresses:
  • 192.168.1.0/28
  • 192.168.1.16/28
Task 2
On R5 summarize class C subnets. Do not use any command on the interface to accomplish that.

Lab Solution

Task 1
On R5 create loopback interfaces with the following addresses:
  • 192.168.1.0/28
  • 192.168.1.16/28
R5 Configuration:
!
interface Loopback0
 ip address 192.168.1.1 255.255.255.240
!
interface Loopback1
 ip address 192.168.1.17 255.255.255.240
!

Task 2
On R5 summarize class C subnets. Do not use any command on the interface to accomplish that.


R5 Configuration:
!
router rip
 version 2
 passive-interface Loopback0
 network 10.0.0.0
 network 192.168.1.0
!

Notice!
Automatic summarization to the class boundary is turned on by default.

Pic. 2 - RIP Details.

Pic. 3 - R5's Routing Table.