Saturday, March 26, 2011

Lab 71 - RIPv2 Filtering with AD

Prerequisites: CCNP level skills.

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

Task 1
Configure R3 so that it uses R1 as the gateway towards 172.16.144.0/24 and R2 as the next-hop router towards 172.16.104.0/24. Do not use the 'distribute-list' command and do not manipulate the metric.

Pic. 2 - R3's Current Routing Table.
  
Lab Solution

Task 1
Configure R3 so that it uses R1 as the gateway towards 172.16.144.0/24 and R2 as the next-hop router towards 172.16.104.0/24. Do not use the 'distribute-list' command and do not manipulate the metric.

R3 Configuration:
!
access-list 1 permit 172.16.144.0
access-list 2 permit 172.16.104.0
!
router rip
 version 2
 passive-interface Loopback0
 network 10.0.0.0
 network 172.16.0.0
 distance 255 10.1.23.2 0.0.0.0 1
 distance 255 10.1.13.1 0.0.0.0 2
 no auto-summary
!

Verification:
Pic. 3 - R3's Routing Table.