! Listing 3.2: Passive RIP configuration using RIP v2 ! !Copyright (C) 2001 by Vincent C Jones. All Rights Reserved. version 11.2 ! interface Ethernet0 description LAN connection to local systems ip address 10.10.0.1 255.255.0.0 ! interface Serial0 description WAN connection to everyone else ip address 10.1.2.1 255.255.255.252 ! router ospf 154 ! Statements to control the "real" routing go here ! router rip ! Generate and control RIPv2 multicasts to local users version 2 redistribute static passive-interface Serial0 network 10.0.0.0 distribute-list 2 out Ethernet0 distribute-list 1 in Ethernet0 ! ip route 0.0.0.0 0.0.0.0 Serial0 access-list 1 deny any access-list 2 permit 0.0.0.0 ! end