I know this is just a tad bit out of the scope of the CCNA, but I came upon this problem while working through some frame relay labs..
Scenario:
I have three routers in a full mesh configuration, all can ping each other, and after a great struggle, I have gotten EIGRP tables to propogate, to a certain extent. Weird thing is...One of the routers in my mesh is not getting EIGRP updates from one of the others..
RouterA
interface Ethernet0
ip address 172.16.9.1 255.255.255.0
no ip directed-broadcast
!
interface Serial0
ip address 10.10.2.1 255.255.255.0
no ip directed-broadcast
no ip mroute-cache
no fair-queue
clockrate 4000000
!
interface Serial1
ip address 172.16.2.1 255.255.255.0
ip directed-broadcast
encapsulation frame-relay
frame-relay lmi-type ansi
router eigrp 1
network 10.0.0.0
network 172.16.0.0
no auto-summary
Note that RouterA is only getting routing updates from the third router, but not RouterB
Russ#sho ip rou
172.16.0.0/24 is subnetted, 3 subnets
D 172.16.8.0 [90/2172416] via 172.16.2.3, 00:36:39, Serial1
C 172.16.1.0 is directly connected, Loopback1
C 172.16.2.0 is directly connected, Serial1
RouterB
interface Ethernet0
ip address 172.16.9.1 255.255.255.0
no ip directed-broadcast
!
interface Serial0
ip address 10.10.2.1 255.255.255.0
no ip directed-broadcast
no ip mroute-cache
no fair-queue
clockrate 4000000
!
interface Serial1
ip address 172.16.2.1 255.255.255.0
ip directed-broadcast
encapsulation frame-relay
frame-relay lmi-type ansi
!
interface TokenRing0
no ip address
no ip directed-broadcast
shutdown
!
router eigrp 1
network 10.0.0.0
network 172.16.0.0
no auto-summary
RouterB#sho ip rou
(The two bolded routes are not showing up in RouterA's routing table.)
172.16.0.0/24 is subnetted, 4 subnets
D 172.16.8.0 [90/2172416] via 172.16.2.3, 00:28:38, Serial1
C 172.16.9.0 is directly connected, Ethernet0
D 172.16.1.0 [90/2297856] via 172.16.2.2, 00:28:40, Serial1
C 172.16.2.0 is directly connected, Serial1
Notice that RouterB IS learning routes from RouterA, though!
So, in essence, all the router are playing nicely, except one router is not taking updates from one other router, and otherwise, everyone is exchanging info.
Any ideas? Like I said, I know it's not really within the scope of the CCNA, but it is driving me crazy.
All 6 PVCs are up and running. PVC status ACTIVE.
I am so confused...

Russ