Bug #9760
closedFRR: "Log Adjacency Changes" Option in "OSPF Settings" not working.
100%
Description
When the option "Log Adjacency Changes" is selected in the GUI in "OSPF Settings" tab, no changes are made in frr config. (I checked with vtysh / show running-config).
Normally, this option should add "log-adjacency-changes detail" in the config.
In the file frr_ospf.inc, I found this: if ($ospfd_conf['logging'] && $ospfd_conf['adjacencylog']) {
$conffile .= " log-adjacency-changes detail\n";
}
I don't know exactly, but it seems to me we should have something like: if ($frr_conf['logging'] && $ospfd_conf['adjacencylog']) {
$conffile .= " log-adjacency-changes detail\n";
}
Could you please take a look at this?
Updated by Jim Pingle over 5 years ago
- Status changed from New to Feedback
- % Done changed from 0 to 100
You are correct, that test was wrong. I pushed a fix. Thanks!
Updated by Bruno Solal over 5 years ago
I tested the fix and it works well.
Thank you very much!