Dynamic Routing

Dynamic routing, also called adaptive routing, is a process where a router can forward data via a different route or given destination based on the current conditions of the communication circuits within a system. The term is most commonly associated with data networking to describe the capability of a network to ‘route around’ damage, such as loss of a node or a connection between nodes, so long as other path choices are available. Dynamic routing allows as many routes as possible to remain valid in response to the change.

Systems that do not implement dynamic routing are described as using static routing, where routes through a network are described by fixed paths. RansNet Appliances supports Dynamic Open Shortest Path First (OSPF), which is a standard dynamic routing protocol and can interoperate with 3rd-party devices as well

The RansNet Gateway Routing UI facilitates users to configure Dynamic OSPF Route based on your topology.

NOTE

Dynamic Route – Automatic adjust the routes according to the current state in the routing table. Dynamic routing uses protocols to discover network destinations and the routes to reach it.

Dynamic Routing

Dynamic routing makes automatic adjustments of the routes in the routing table. Dynamic routing uses protocols to discover network destinations and the routes to reach them. RansNet Appliances supports Dynamic Open Shortest Path First (OSPF), which is a standard dynamic routing protocol and can interoperate with 3rd-party devices as well.

User can Enable Dynamic Routing (OSPF) by sliding the button from the section head of the Routing UI to configure details.

Image 3 : SD-WAN Gateway Dynamic Routing (OSPF) UI

Settings of Dynamic Routing (OSPF)

The parameters to configure Dynamic Routing (OSPF) are explained below:

S/NFieldsDescription
01.Routing OSPFSelect the OSPF option from the list
Network: Defines a Network IP address on which OSPF runs for that Network.
Router ID: This option is used to provide a unique identity to the OSPF Router. OSPF Router ID is assigned to each router running the OSPF protocol.
02.Network ID/AreaNeed to specify the Network IP and Wild card Mask
Network ID:
Network Area:
03.Enable/Disable ParametersRedistribute BGP Routes option can be Enabled or Disabled:
If Enabled the redistributes routes learned from another routing process into OSPF.
Table 2: Settings of Dynamic Routing

.

mBox supports three types of peering scenario/authentication,

– No authentication

– pre-shared clear text authentication (Type 1)

– pre-shared MD5 cryptographic passwords (Type 2)with other vendor network appliances.

!
hostname CMG1
!
interface bridge br0
 enable
 ip address 172.16.1.253/24
!
router ospf
 network 172.16.1.0/24 area 0
 redistribute connected route-map SDWAN_ADVERTISED_NET
 redistribute static route-map SDWAN_ADVERTISED_NET
!

hostname CMG2
!
interface eth0
 description "ISP1 connection"
 enable
 ip address dhcp
!
interface eth1
 enable
 ip address 10.10.10.10/24
!
ip route 2.2.2.0/24 nexthop eth1
ip route 3.3.3.3/24 nexthop eth0
!
router ospf
 network 172.16.1.0/24 area 0
 redistribute connected route-map SDWAN_ADVERTISED_NET
 redistribute static route-map SDWAN_ADVERTISED_NET
!

wpChatIcon