I am having trouble changing the ipv4 address of a loopback interface. Please take a look at Step23 in OSPF examples in here:
https://github.com/ManiAm/inet/blob/INETex/examples_INETex/routing_protocol_ospf/omnetpp.ini
Apparently changing the loopback address has no effect. Going through the configurator code, I noticed that the configurator iterates over topology.linkInfos and since there is no links attached to the loopback interface, it misses it.
|
// configure address/netmask constraints on matching interfaces |
I am having trouble changing the ipv4 address of a loopback interface. Please take a look at Step23 in OSPF examples in here:
https://github.com/ManiAm/inet/blob/INETex/examples_INETex/routing_protocol_ospf/omnetpp.ini
Apparently changing the loopback address has no effect. Going through the configurator code, I noticed that the configurator iterates over
topology.linkInfosand since there is no links attached to the loopback interface, it misses it.inet/src/inet/networklayer/configurator/ipv4/Ipv4NetworkConfigurator.cc
Line 623 in b02af33