]>
git.puffer.fish Git - matthieu/frr.git/commit
ospfd: Drop `interfaceIp` from `show ip ospf neigh json`
Deprecated. Now it's under interface field directly:
```
{
"interfaces":{
"enp3s0":{
"ifUp":true,
"ifIndex":2,
"mtuBytes":1500,
"bandwidthMbit":100,
"ifFlags":"<UP,LOWER_UP,BROADCAST,RUNNING,MULTICAST>",
"ospfEnabled":true,
"ipAddress":"192.168.10.19",
"ipAddressPrefixlen":24,
"ospfIfType":"Broadcast",
"localIfUsed":"192.168.10.255",
"area":"0.0.0.0",
"routerId":"100.100.100.100",
"networkType":"POINTOPOINT",
"cost":1000,
"transmitDelaySecs":1,
"state":"Point-To-Point",
"priority":1,
"opaqueCapable":true,
"mcastMemberOspfAllRouters":true,
"timerMsecs":10000,
"timerDeadSecs":40,
"timerWaitSecs":40,
"timerRetransmitSecs":5,
"timerHelloInMsecs":2924,
"nbrCount":0,
"nbrAdjacentCount":0,
"grHelloDelaySecs":10,
"prefixSuppression":false,
"nbrFilterPrefixList":"N\/A"
}
}
}
```
Signed-off-by: Donatas Abraitis <donatas@opensourcerouting.org>