OSPF Network Types - Point to point

Опубликовано: 31 Октябрь 2024
на канале: Ferds Tech Channel
1,098
6

OSPF Network Types - Point-to-point

1. Broadcast (Broadcast multi-access network) - Default for Ethernet interfaces.
2. Non-broadcast (Non-Broadcast Multi-Access (NBMA) network) - Exampple is a frame relay network which does not support multicast and broadcast.
3. Point-to-point - Can be configured regardless of the underlying technology (even on Ethernet interfaces).
4. Point-to-multipoint - Useful with frame relay networks that support “pseudo-broadcast”.
5. Point-to-multipoint Non-broadcast - Can be used in frame relay networks where pseudo-broadcast is not supported.

CONFIGURE:
R1:
conf t
interface Serial0/0
ip address 10.10.12.1 255.255.255.0
!
router ospf 1
network 10.10.12.0 0.0.0.255 area 0
end
wr

R2:
conf t
interface Serial0/0
ip address 10.10.12.2 255.255.255.0
!
router ospf 1
network 10.10.12.0 0.0.0.255 area 0
!
end
end
wr

VERIFY:
show ip ospf neighbor
show interfaces s0/0 !To check layer 2 encapsulation.
show ip ospf interface !To check the network type.



RERENCES:
Chapter: Configuring OSPF
https://www.cisco.com/c/en/us/td/docs...

OSPF Non-Broadcast Network Type over Frame-Relay
https://forum.networklessons.com/t/os...

OSPF network types
https://packetlife.net/blog/2008/jun/...

OSPF Network Types – Point-to-Point and Broadcast
https://study-ccna.com/ospf-network-t...

#cisco #ccnp #ccie #ospf