OSPF network types
I know that there are 5 OSPF network types:
NBMA (RFC)
Point-to-multipoint broadcast (RFC)
Point-to-point (Cisco)
Point-to-multipoint non-broadcast (Cisco)
Broadcast (Cisco)
I am little confuse about these network types. My understanding is:
Let say that we have R1, R2, R3 in OSPF Broadcast network type. This is like OSPF in ethernet network or like Token ring and all the routers are in a 1 network subnet. Hello/Dead timer is 10/40. Also, DR/BDR is elected.
The NBMA network is like the Broadcast, but it uses Frame-relay, ATM, MPLS. And the hello/dead timer is 30/120.
Now, I believe that NBMA can be a full mesh or Hub and Spoke setup. Based on my understanding, to setup a full mesh NBMA network, I would need to use the neighbor command under router ospf 1 to define my neighbors and R1, R2 and R3 need to have the neighbor command configured.
For Hub and Spoke NBMA, only R1 would use the neighbor command, and the the spoke routers (R2, R3) would use the command frame-relay map ip ip-add dlci broadcast under interface mode.
About the point-to-multipoint NBMA, it is a combination of point-to-point and multipoint setup. For instance, we have R1, R2, R3 and R4 in point-to-multipoint NBMA, R1 and R2 is point-to-point and R1, R3, R4 are multipoint. Therefore, R1 and R2 use a /30 mask, and R1, R3, R4 use /29 mask. No DR/BDR election, and hello/dead timer is 30/120.
The point-to-multipoint Broadcast is similar to the point-to-multipoint NBMA, but in a Ethernet network.
Am I right?
Thanks