Monday, March 28, 2011

Lab 78 - RIPv2 Source Update Validation

Prerequisites: CCNP level skills.

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

Task 1
Change encapsulation on Serial0/1 interfaces between R1 and R3 to PPP. Configure R1, so that it receives the IP address: 10.1.13.1 from R3 using IPCP.


Task 2
Configure R1 so it installs RIP updates sent by R3.

Lab Solution

Task 1
Change encapsulation on Serial0/1 interfaces between R1 and R3 to PPP. Configure R1, so that it receives the IP address 10.1.13.1 from R3 using IPCP.


R1 Configuration:
!
interface Serial0/1
 ip address negotiated
 encapsulation ppp
 serial restart-delay 0
!

R3 Configuration:
!
interface Serial0/1
 ip address 10.1.13.3 255.255.255.0
 encapsulation ppp
 peer default ip address 10.1.13.1
 serial restart-delay 0
!

Note!
For this IP address to be assigned, the LCP negotiation must take place (shut, no shut on s0/1 interface).

Verification:
Pic. 2 - R1's Address Assigned via IPCP.

Pic. 3 - R3's Connected Networks.

Pic. 4 - R1's Connected Networks.

Notice!
R1 installs two host routes (/32) in its routing table. R3 installs a host route but has the /24 subnet entry as well. The result is that R1 and R3 are not on the common subnet.

Pic. 5 - RIP Table on R1.

Pic. 6 - RIP Updates on R1.


Task 2
Configure R1 so it installs RIP updates sent by R3.
R1 Configuration:
!
router rip
 version 2
 no validate-update-source
 passive-interface Loopback0
 network 10.0.0.0
 network 172.16.0.0
 no auto-summary
!

Verification:
Pic. 7 - R1's Routing Table.