去od morning
How do i go about setting up a loopback interface in the board for use of the OSPF
/interface bridge add name=loopback0
Why do you need OSPF loopback and what MT OS version are you running on the board.去od morning
How do i go about setting up a loopback interface in the board for use of the OSPF
Just create a bridge interface with zero member ports. The interface will always be active and thus will function as a regular loopback interface. This is the only way to emulate a loopback using RouterOS.
Code:Select all/interface bridge add name=loopback0
in a cisco router when you setup ospf you put the RID on o loopback int, other wise when the int goes down so does the ospf.Why do you need OSPF loopback and what MT OS version are you running on the board.去od morning
How do i go about setting up a loopback interface in the board for use of the OSPF
Does this still apply to MT OS 5.X series as well?Yes, the same issue is indeed present in RouterOS, and the method with the bridge is the way to solve it.
Quoted fromhttp://wiki.nil.com/OSPF_Router_ID_selection_algorithmOSPF router ID should not be changed after the OSPF process has been started. OSPF router ID change resets all OSPF adjacencies, resulting in temporary router outage. The router also has to originate new copies of all its LSAs with the new router ID. Stale copies of the LSAs originated by the “old” OSPF process remain in the OSPF topology databases of all routers until they expire (their age increases beyond max-age).
While I cannot answer for the specific OSPF implementation of RouterOS, best practice networking dictates that every device should have an ip-address that is not bound to a physical interface. In most OSPF implementations, the moment the OSPF service is started it binds to an interface, thus if you do not have a non-physical ip interface for it to bind to, any physical link event, e.g. loss of link, will impact the OSPF service.Does this still apply to MT OS 5.X series as well?Yes, the same issue is indeed present in RouterOS, and the method with the bridge is the way to solve it.