! Listing 6.2: Passive RIP support combined with active RIP and OSPF ! !Copyright (C) 2001 by Vincent C Jones. All Rights Reserved. version 11.0 ! interface Ethernet0 ip address 192.168.110.201 255.255.255.0 ip ospf authentication-key ospfSecret1 ! interface Serial0 ip address 172.19.254.5 255.255.255.252 ip ospf authentication-key ospfSecret2 ! router ospf 200 network 192.168.110.0 0.0.0.255 area 192.42.110.0 network 172.19.0.0 0.0.255.255 area 0 area 0 authentication area 192.42.110.0 authentication area 192.42.110.0 range 192.42.110.0 255.255.255.0 area 0 range 172.19.254.4 255.255.255.252 redistribute rip metric 1 subnets ! router rip network 192.168.110.0 redistribute ospf 200 metric 1 distribute-list 10 in ethernet0 distribute-list 11 out ethernet0 access-list 10 permit 192.168.0.198 access-list 10 permit 192.168.0.199 access-list 11 permit 0.0.0.0 ! end