Hey all--
I'm hoping to get another set of eyes on this. Staring at my laptop has me going cross-eyed! I have set up a hub-and-spoke frame relay topology with EIGRP as my routing protocol. I am able to ping between the routers at layer 3. Each router has a loopback interface configured and the spokes are advertising to the hub just fine - But the hub isn't forwarding those advertisements back out to the spokes! I have disabled split horizon and used the 'broadcast' declaration on my frame relay mappings. I'm sure I'm missing something fundamental but I'm feeling burnt out at the moment. R1 is my hub, and R2 and R3 are the spokes - When I run "show ip route eigrp" one one spoke I don't see the other spoke's loopback interface. I'm mainly confused because the spoke routers are receiving advertisements for each others frame relay interfaces, just not their loopback interfaces.
I appreciate any help I can get - Thank you!
hostname R1 (hub)
!
!
interface Loopback1
ip address 1.1.1.1 255.255.255.255
!
interface FastEthernet0/0
no ip address
duplex auto
speed auto
shutdown
!
interface Serial0/0
ip address 10.1.1.1 255.255.255.0
no ip split-horizon
encapsulation frame-relay
frame-relay map ip 10.1.1.2 100 broadcast
frame-relay map ip 10.1.1.3 150 broadcast
!
router eigrp 1
network 1.1.1.1 0.0.0.0
network 10.1.1.1 0.0.0.0
no auto-summary
!
ip classless
!
!
line con 0
logging synchronous
line vty 0 4
login
!
!
!
end
Router 2 (Spoke)
hostname R2
!
!
interface Loopback2
ip address 2.2.2.2 255.255.255.255
!
interface FastEthernet0/0
no ip address
duplex auto
speed auto
shutdown
!
interface Serial0/0
ip address 10.1.1.2 255.255.255.0
no ip split-horizon
encapsulation frame-relay
frame-relay map ip 10.1.1.1 200 broadcast
frame-relay map ip 10.1.1.3 200 broadcast
!
router eigrp 1
network 2.2.2.2 0.0.0.0
network 10.1.1.2 0.0.0.0
no auto-summary
!
ip classless
!
line con 0
logging synchronous
line vty 0 4
login
!
end
R3 (Spoke)
hostname R3
!
interface Loopback3
ip address 3.3.3.3 255.255.255.255
!
interface FastEthernet0/0
no ip address
duplex auto
speed auto
shutdown
!
interface Serial0/0
ip address 10.1.1.3 255.255.255.0
no ip split-horizon
encapsulation frame-relay
frame-relay map ip 10.1.1.1 300 broadcast
frame-relay map ip 10.1.1.2 300 broadcast
!
router eigrp 1
network 3.3.3.3 0.0.0.0
network 10.1.1.3 0.0.0.0
no auto-summary
!
ip classless
!
line con 0
logging synchronous
line vty 0 4
login
!
!
!
end