1. In this topology, when you shutdown loopback0 on R1, a routing loop is created between R1/R4/R5!
R1 sends IP Address: 10.0.0.0, Metric: 3
R4 sends IP Address: 10.0.0.0, Metric: 4
R1 sends IP Address: 10.0.0.0, Metric: 5
R4 sends IP Address: 10.0.0.0, Metric: 6
...
What configuration change(s) would prevent problems like this?
R1 Configuration
router rip
network 1.0.0.0
network 10.0.0.0
network 192.168.1.0
interface Loopback0
ip address 10.0.0.1 255.0.0.0
shutdown
interface Serial0/0
ip address 192.168.1.1 255.255.255.0
encapsulation frame-relay
clock rate 2000000
R5 Configuration
router rip
network 5.0.0.0
network 192.168.1.0
interface Loopback0
ip address 5.0.0.5 255.0.0.0
interface Serial0/0
ip address 192.168.1.5 255.255.255.0
encapsulation frame-relay
clock rate 2000000
R4 Configuration
router rip
network 4.0.0.0
network 192.168.1.0
interface Loopback0
ip address 4.0.0.4 255.0.0.0
interface Serial0/0
ip address 192.168.1.4 255.255.255.0
encapsulation frame-relay
clock rate 2000000
2. After fixing the above, you decide to enable authentication on the WAN. You add the following configuration to R1 only--
key chain REM
key 1
key-string GreatBeyond
interface s0/0
ip rip authentication key-chain REM
R1 continues to accept updates from R4 and R5, even though you have not configured matching authentication on them! What had you forgotten?