A little confused about something on the first CBT Nuggets lab covering EIGRP config.
I have three routers connected, as shown here:
Whoops! - TinyGrab
I have EIGRP (AS90) running on all three routers. All recognize each other:
BB#sh run | s eigrp
router eigrp 90
network 10.1.24.0 0.0.0.3
network 10.1.34.0 0.0.0.3
network 192.168.1.0
no auto-summary
R2#sh run | s eigrp
router eigrp 90
network 10.1.2.0 0.0.0.255
network 10.1.24.0 0.0.0.3
no auto-summary
R3#sh run | s eigrp
router eigrp 90
network 10.1.2.0 0.0.0.255
network 10.1.34.0 0.0.0.3
no auto-summary
One of the questions asks for a static route on BB to point at Null0 - this is why I am also advertising "network 192.168.1.0 0.0.0.255" on the BB router.
When I do a "show ip EIGRP topology" from R2 or R3, I expected to see routes to 192.168.1.0/24, advertised by BB, and the "other" router. So on R2, I would expect to see two routes to 192.168.1.0 - one through BB (successor), and one through R3 (feasible successor).
Oddly enough, when I do "show ip EIGRP top", I get the following:
R2#sh ip eigrp top
IP-EIGRP Topology Table for AS(90)/ID(10.1.24.2)
Codes: P - Passive, A - Active, U - Update, Q - Query, R - Reply,
r - reply Status, s - sia Status
P 10.1.2.0/24, 1 successors, FD is 28160
via Connected, FastEthernet1/0
P 10.1.24.0/30, 1 successors, FD is 20512000
via Connected, Serial0/0
P 10.1.34.0/30, 1 successors, FD is 10514432
via 10.1.2.3 (10514432/10511872), FastEthernet1/0
via 10.1.24.1 (21024000/10511872), Serial0/0
P 192.168.1.0/24, 1 successors, FD is 10514432
via 10.1.2.3 (10514432/10511872), FastEthernet1/0
via 10.1.24.1 (20512000/256), Serial0/0
R3#sh ip eigrp top
IP-EIGRP Topology Table for AS(90)/ID(10.1.34.2)
Codes: P - Passive, A - Active, U - Update, Q - Query, R - Reply,
r - reply Status, s - sia Status
P 10.1.2.0/24, 1 successors, FD is 28160
via Connected, FastEthernet1/0
P 10.1.24.0/30, 1 successors, FD is 20514560
via 10.1.2.2 (20514560/20512000), FastEthernet1/0
via 10.1.34.1 (21024000/20512000), Serial0/0
P 10.1.34.0/30, 1 successors, FD is 10511872
via Connected, Serial0/0
P 192.168.1.0/24, 1 successors, FD is 10511872
via 10.1.34.1 (10511872/256), Serial0/0
So my question is this: Why doesn't R3 recognize R2 as a feasible successor to the 192.168.1.0 network?