Screenshot below shows how we do it. Basic idea is not to send "node up" notification if timer for "node down" notification was not fired yet. Note that rule order is important in this setup.
Best regards,
Victor
Best regards,
Victor
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menuif ($node)
{
for(iface : $node.interfaces)
{
for(a : iface.ipAddressList)
{
if (a == "0.1.134.160" or a == "192.168.1.1")
{
iface.setExcludeFromTopology(true);
break;
}
}
}
}