mirror of
https://github.com/eworm-de/routeros-scripts.git
synced 2024-05-11 05:55:19 +00:00
ospf-to-leds: get state from count of neighbors
The state property is gone in RouterOS v7...
This commit is contained in:
14
ospf-to-leds
14
ospf-to-leds
@ -18,12 +18,18 @@
|
|||||||
:local LED ([ $ParseKeyValueStore ($InstanceVal->"comment") ]->"leds");
|
:local LED ([ $ParseKeyValueStore ($InstanceVal->"comment") ]->"leds");
|
||||||
:local LEDType [ / system leds get [ find where leds=$LED ] type ];
|
:local LEDType [ / system leds get [ find where leds=$LED ] type ];
|
||||||
|
|
||||||
:if ($InstanceVal->"state" = "running" && $LEDType = "off") do={
|
:local NeighborCount 0;
|
||||||
$LogPrintExit2 info $0 ("OSPF instance " . $InstanceVal->"name" . " is running, led on!") false;
|
:foreach Area in=[ / routing ospf area find where instance=($InstanceVal->"name") ] do={
|
||||||
|
:local AreaName [ / routing ospf area get $Area name ];
|
||||||
|
:set NeighborCount ($NeighborCount + [ :len [ / routing ospf neighbor find where area=$AreaName ] ]);
|
||||||
|
}
|
||||||
|
|
||||||
|
:if ($NeighborCount > 0 && $LEDType = "off") do={
|
||||||
|
$LogPrintExit2 info $0 ("OSPF instance " . $InstanceVal->"name" . " has " . $NeighborCount . " neighbors, led on!") false;
|
||||||
/ system leds set type=on [ find where leds=$LED ];
|
/ system leds set type=on [ find where leds=$LED ];
|
||||||
}
|
}
|
||||||
:if ($InstanceVal->"state" = "down" && $LEDType = "on") do={
|
:if ($NeighborCount = 0 && $LEDType = "on") do={
|
||||||
$LogPrintExit2 info $0 ("OSPF instance " . $InstanceVal->"name" . " is down, led off!") false;
|
$LogPrintExit2 info $0 ("OSPF instance " . $InstanceVal->"name" . " has no neighbors, led off!") false;
|
||||||
/ system leds set type=off [ find where leds=$LED ];
|
/ system leds set type=off [ find where leds=$LED ];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user