Configuring OSPF Options On A Nodegrid Appliance & Neighbor Adjacency

Configuring OSPF Options On A Nodegrid Appliance & Neighbor Adjacency

Configuring OSPF Nodegrid Appliance & Neighbor Adjacency

The Nodegrid OS uses FRR (Free Range Routing Suite) to implement routing protocols such as OSPF.  FRR is a fully featured, high performance, free software IP routing suite.


To enable OSPF routing protocol daemons via WebUI:
1. Login as admin in WebUI, go to Security::Services

2. Scroll down to FRR section and enable the protocol that is required

3. Scroll back to top and click Save

Enable routing protocol daemons via CLI:
1. Login as admin in CLI. Type these commands,
      cd /settings/services
      set frr_enable_vrrp=yes
      commit

Enable routing protocol daemons via Shell:
1. Login as root in shell or type shell sudo su - to go to root shell
2. Go to the /etc/frr/daemons file to enable the protocol
      change the value of the protocol to yes like ospfd=yes
      save and exit from the file
3. Restart the frr service with /etc/init.d/frr restart

To enable routing protocol daemons via WebUI:
1. Login as admin in WebUI, go to Security::Services

2. Scroll down to FRR section and enable the protocol that is required

 


Enable routing protocol daemons via CLI:

cd /settings/services/
set frr_enable_ospfv2=yes
commit

exec frr
configure terminal
router ospf

network 10.0.0.0/24 area 0.0.0.0 - (identify network to be in the backbone area 0)
network 192.168.10.0/24 0.0.0.0 - (identify network to be in the backbone area 0)
ospf router-id 10.0.0.1 default-information originate  - (Inject a default gateways into OSPF)
redistribute static  - (redistribute static routes into OSPF) redistribute kernel  - (Virtual server routes are neither connected nor static type. falls under a new type known as kernel. )
do write
exit
exit
exit

Troubleshooting OSPF protocol:

show ip ospf neighbor


tcpdump -v -i backplane0.10 proto ospf  



show ip route ospf 




show ip ospfinterface



tcpdump -i backplane0.10 ip[9] == 89



    • Related Articles

    • FRR Routing Protocol Suite

      FRR Routing On Nodegrid Service Router FRRouting(FRR) is an IP routing protocol suite for Linux and Unix platforms which includes protocol daemons for BGP, IS-IS, LDP, OSPF, PIM, and RIP. NG has the network tool vtysh(quagga/FRR) to administer the ...
    • NSCP in gateway Mode

      Configuring NSCP in gateway Mode Just like the SR series, the NSCP can also now be configured in a gateway mode profile. This is a new feature that has been added in Nodegrid release 5.10. This is a requirement for true ZTP over LTE. For gateway mode ...
    • NodeGrid Multi-routing

      NodeGrid supports IP multi-routing and allows to set default gateway per interfaces. The unit enforces that data traffic is sent through the same network interface the package was received. In other words, packages received from ETH0 network will be ...
    • Initial Configuration of a Nodegrid Appliance via the Console Port

      Configuring a Nodegrid Appliance through the console port lets you perform the initial configuration easily via CLI. Once the Nodegrid platform is turned on we can see the startup process of Nodegrid device via console port connected to the Nodegrid. ...
    • Nodegrid Manager Installation in ESXi 5

      Nodegrid Manager software is installed from an ISO file. The installation procedure is a three-stage process:  Creating a virtual machine; Booting from the ISO file in order to install the software; Restarting and booting from the newly created ...