You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As described by Matej Gregr on the nav-users list:
Hello,
I noticed, that NAV does not close arp entries after monitored node
become unavailable. For example: There is an active mac address
11:22:33:44:55:66 with end_time set to infinity. When the monitored node
goes down, the mac address remains in active state, so you can find it
using machinetracker as a still active address, which apparently is not
true.
I suggest, that there should be another rule in database, enssuring that
arp entries will be closed.
Something like:
CREATE OR REPLACE RULE netbox_status_close_arp AS ON UPDATE TO netbox
WHERE NEW.up='n'
DO UPDATE arp SET end_time=NOW()
WHERE netboxid=OLD.netboxid AND end_time='infinity';
As described by Matej Gregr on the nav-users list:
Imported from Launchpad using lp2gh.
The text was updated successfully, but these errors were encountered: