Allied Telesis Support Portal

How to configure Non-broadcast OSPF on AlliedWare+

Introduction:

OSPF (Open Shortest Path First) is a routing protocol commonly used in large-scale networks to efficiently determine the best path for data packets. In OSPF, networks are typically categorized into different types, such as broadcast, point-to-point, and non-broadcast. Non-broadcast OSPF networks are those where OSPF routers cannot automatically discover their neighboring routers due to the network's characteristics.

Overview of Non-Broadcast OSPF:

Non-broadcast OSPF networks are often encountered in environments where the underlying network infrastructure does not support broadcast or multicast communication. Examples include Frame Relay, ATM, and some types of MPLS networks. In these environments, OSPF routers cannot rely on broadcast messages to discover their neighbors, requiring administrators to configure neighbor relationships manually.
Key Characteristics of Non-Broadcast OSPF:
  1. Manual Neighbor Configuration: Unlike in broadcast networks where OSPF routers dynamically discover neighbors using multicast or broadcast packets, in non-broadcast networks, administrators must manually configure neighbor relationships on each OSPF router within the network.
  2. Designated Router (DR) and Backup Designated Router (BDR): In broadcast networks, OSPF routers elect a designated router and a backup designated router to optimize routing information exchange. However, in non-broadcast networks, DR and BDR election does not occur. Instead, all OSPF routers establish point-to-point connections with each other.
  3. Neighbor Statements: OSPF routers in non-broadcast networks use neighbor statements to define adjacent routers explicitly. These statements include the IP addresses of neighboring routers and are configured on each OSPF router interface.
  4. Hello and Dead Intervals: OSPF routers in non-broadcast networks exchange Hello packets to establish and maintain neighbor relationships. Administrators must configure appropriate Hello and Dead interval timers to ensure timely detection of neighbor failures.
  5. Address Resolution Protocol (ARP) or Next-Hop Resolution Protocol (NHRP): In non-broadcast networks such as Frame Relay or ATM, OSPF routers may need to rely on ARP or NHRP to resolve next-hop addresses for routing purposes, as traditional broadcast methods are not available.

Configuring Non-Broadcast OSPF:

Configuring OSPF in a non-broadcast environment requires careful planning and configuration. Here's a basic outline of the configuration steps:
  1. Enable OSPF: Enable OSPF on each router participating in the OSPF routing domain using the router ospf command.
(config)# [no] router ospf [<1-65535>] [VRFNAME]
  1. Configure Interfaces: Define OSPF network types as non-broadcast on each interface participating in OSPF using the ip ospf network command.
(config-if)# ip ospf network non-broadcast
  1. Define Neighbor Relationships: Manually configure neighbor relationships using the neighbor statement under the OSPF configuration.
(config-router)# neighbor A.B.C.D [poll-interval <1-2147483647>] [priority <0-255>]
  1. Set Hello and Dead Intervals: Adjust Hello and Dead interval timers to appropriate values using the ip ospf hello-interval and ip ospf dead-interval commands.
(config-if)# ip ospf [A.B.C.D] hello-interval <1-65535>
(config-if)# ip ospf [A.B.C.D] dead-interval <1-65535>
Example:
User-added image
  1. Verify Configuration: Use verification commands such as show ip ospf neighbor and show ip ospf interface to verify OSPF neighbor relationships and interface configurations.

Conclusion:

Non-broadcast OSPF networks require manual configuration of neighbor relationships and careful consideration of network characteristics such as Hello and Dead intervals. By understanding the key characteristics and configuration steps outlined in this article, network administrators can effectively deploy OSPF in non-broadcast environments to ensure efficient routing and network connectivity.