2020-10-23 12:13:40 +00:00
|
|
|
#!rsc by RouterOS
|
|
|
|
# RouterOS script: ospf-to-leds
|
2021-01-01 20:33:52 +00:00
|
|
|
# Copyright (c) 2020-2021 Christian Hesse <mail@eworm.de>
|
2020-10-23 12:13:40 +00:00
|
|
|
# https://git.eworm.de/cgit/routeros-scripts/about/COPYING.md
|
|
|
|
#
|
|
|
|
# visualize ospf instance state via leds
|
|
|
|
# https://git.eworm.de/cgit/routeros-scripts/about/doc/ospf-to-leds.md
|
|
|
|
|
2021-02-22 14:14:10 +00:00
|
|
|
:local 0 "ospf-to-leds";
|
2021-02-18 13:52:47 +00:00
|
|
|
:global GlobalFunctionsReady;
|
|
|
|
:while ($GlobalFunctionsReady != true) do={ :delay 500ms; }
|
|
|
|
|
2021-02-22 14:14:10 +00:00
|
|
|
:global LogPrintExit2;
|
2020-10-23 12:13:40 +00:00
|
|
|
:global ParseKeyValueStore;
|
|
|
|
|
|
|
|
:foreach Instance in=[ / routing ospf instance find where comment~"^ospf-to-leds," ] do={
|
|
|
|
:local InstanceVal [ / routing ospf instance get $Instance ];
|
|
|
|
:local LED ([ $ParseKeyValueStore ($InstanceVal->"comment") ]->"leds");
|
|
|
|
:local LEDType [ / system leds get [ find where leds=$LED ] type ];
|
|
|
|
|
|
|
|
:if ($InstanceVal->"state" = "running" && $LEDType = "off") do={
|
2021-07-06 19:41:02 +00:00
|
|
|
$LogPrintExit2 info $0 ("OSPF instance " . $InstanceVal->"name" . " is running, led on!") false;
|
2020-10-23 12:13:40 +00:00
|
|
|
/ system leds set type=on [ find where leds=$LED ];
|
|
|
|
}
|
|
|
|
:if ($InstanceVal->"state" = "down" && $LEDType = "on") do={
|
2021-07-06 19:41:02 +00:00
|
|
|
$LogPrintExit2 info $0 ("OSPF instance " . $InstanceVal->"name" . " is down, led off!") false;
|
2020-10-23 12:13:40 +00:00
|
|
|
/ system leds set type=off [ find where leds=$LED ];
|
|
|
|
}
|
|
|
|
}
|