/
Basic OSPF Configuration Tasks

Basic OSPF Configuration Tasks

To configure OSPF on a PicOS device, complete the tasks described in the following sections.

Configuring OSPF Router ID

The OSPF router ID is a 32-bit value similar to an IP address by which the OSPF router or switch is uniquely identified within the OSPF domain. 

Use the following command to configure OSPF router ID:

set protocols ospf4 router-id <router-id>

The following example configures 1.1.1.1 as the OSPF router ID:

admin@XorPlus# set protocols ospf4 router-id 1.1.1.1
admin@XorPlus# commit
Commit OK.
Save done.

Do not change the router ID after completing the configuration.

Configuring OSPF Areas

Divide an OSPF domain into areas, which contains the flow of most routing protocol traffic within a single area and reduces the impact of protocol on CPU and memory.

Use the following command to configure OSPF areas:

set protocols ospf4 area <area-id> area-type <type>

Area ID 0.0.0.0 is reserved for the backbone and each OSPF domain should have the backbone area. All traffic between two non-backbone areas must pass through the backbone. OSPF area types supported by PicOS are: normal, stub, and NSSA.

The example that follows demonstrates configuration of three different areas:

Area IDArea Type
0.0.0.0Normal
1.1.1.1Stub
2.2.2.2

NSSA

admin@XorPlus# set protocols ospf4 area 0.0.0.0 area-type normal
admin@XorPlus# set protocols ospf4 area 1.1.1.1 area-type stub
admin@XorPlus# set protocols ospf4 area 2.2.2.2 area-type nssa
admin@XorPlus# commit
Commit OK.
Save done.

Configuring OSPF Interfaces

After configuring an OSPF area, assign a switch interface to the area. Once an interface is assigned to an OSPF area, it will start sending OSPF hello messages.

Use the following command to assign a Layer 3 interface to an OSPF area:

set protocols ospf4 area <area-id> interface <interface-name> vif <interface-name> address <ip-address>

The following commands create Layer 3 VLAN interfaces vlan-2 and vlan-3. The interfaces are given IP addresses and switch ports are assiged to them. Finally, both interfaces are configured to be in the OSPF backbone area according to the table shown below.

VLAN InterfaceIP Address / Mask LengthAssigned Switch Interface(s)OSPF Area
vlan-210.10.60.10 / 24ge-1/1/10.0.0.0
vlan-310.10.61.10 / 24ge-1/1/20.0.0.0
admin@XorPlus# set vlans vlan-id 2 l3-interface vlan-2
admin@XorPlus# set vlans vlan-id 3 l3-interface vlan-3
admin@XorPlus# set vlan-interface interface vlan-2 vif vlan-2 address 10.10.60.10 prefix-length 24
admin@XorPlus# set vlan-interface interface vlan-3 vif vlan-3 address 10.10.61.10 prefix-length 24
admin@XorPlus# set interface gigabit-ethernet ge-1/1/1 family ethernet-switching native-vlan-id 2
admin@XorPlus# set interface gigabit-ethernet ge-1/1/2 family ethernet-switching native-vlan-id 3
admin@XorPlus# set protocols ospf4 area 0.0.0.0 interface vlan-2 vif vlan-2 address 10.10.60.10
admin@XorPlus# set protocols ospf4 area 0.0.0.0 interface vlan-3 vif vlan-3 address 10.10.61.10
admin@XorPlus# commit
Waiting for merging configuration.
Commit OK.
Save done.
admin@XorPlus#

Configuring Additional OSPF Parameters

Fine-tune OSPF operation by configuring additional OSPF interface parameters including hello interval, interface cost, passive interface, priority, retransmit interval, router dead interval, and transmit delay.

The following example demonstrates how to configure some of the OSPF interface parameters:

admin@XorPlus# set protocols ospf4 area 0.0.0.0 interface vlan-2 vif vlan-2 address 10.10.60.10 hello-interval 5
admin@XorPlus# set protocols ospf4 area 0.0.0.0 interface vlan-2 vif vlan-2 address 10.10.60.10 interface-cost 8
admin@XorPlus# set protocols ospf4 area 0.0.0.0 interface vlan-2 vif vlan-2 address 10.10.60.10 transmit-delay 2
admin@XorPlus# commit
Waiting for merging configuration.
Commit OK.
Save done.

Copyright © 2025 Pica8 Inc. All Rights Reserved.