I tried to configure OSPF on an NBMA network using a point-to-multipoint Frame Relay, as below:
Configuration on R1:
!
interface Serial1/0
ip address 192.168.123.1 255.255.255.0
encapsulation frame-relay
ip ospf network non-broadcast
serial restart-delay 0
clock rate 2016000
frame-relay map ip 192.168.123.2 102 broadcast
frame-relay map ip 192.168.123.3 103 broadcast
!
!
router ospf 1
network 192.168.123.0 0.0.0.255 area 1
neighbor 192.168.123.3
neighbor 192.168.123.2
!
Configuration on R2:
!
interface Serial1/0
ip address 192.168.123.2 255.255.255.0
encapsulation frame-relay
ip ospf network non-broadcast
ip ospf priority 0
serial restart-delay 0
clock rate 2016000
frame-relay map ip 192.168.123.1 201 broadcast
!
!
router ospf 1
network 192.168.123.0 0.0.0.255 area 1
!
Configuration on R3:
!
interface Serial1/0
ip address 192.168.123.3 255.255.255.0
encapsulation frame-relay
ip ospf network non-broadcast
ip ospf priority 0
serial restart-delay 0
clock rate 2016000
frame-relay map ip 192.168.123.1 301 broadcast
!
!
router ospf 1
network 192.168.123.0 0.0.0.255 area 1
!
But when I check the neighbors on R2 and R3, I don’t see a neighbor establised, and in R1 I see the below:
R1#sh ip ospf neighbor
Neighbor ID Pri State Dead Time Address Interface
N/A 0 ATTEMPT/DROTHER - 192.168.123.3 Serial1/0
N/A 0 ATTEMPT/DROTHER - 192.168.123.2 Serial1/0
What exactly am I missing ?