2023-03-07 10:57:42 +01:00
|
|
|
#!rsc by RouterOS
|
|
|
|
# RouterOS script: ospf-to-leds
|
2025-01-02 00:04:06 +01:00
|
|
|
# Copyright (c) 2020-2025 Christian Hesse <mail@eworm.de>
|
2025-01-24 20:46:12 +01:00
|
|
|
# https://rsc.eworm.de/COPYING.md
|
2023-03-07 10:57:42 +01:00
|
|
|
#
|
2025-02-07 17:39:48 +01:00
|
|
|
# requires RouterOS, version=7.15
|
2023-11-15 21:31:19 +01:00
|
|
|
#
|
2023-03-07 10:57:42 +01:00
|
|
|
# visualize ospf instance state via leds
|
2025-01-24 20:46:12 +01:00
|
|
|
# https://rsc.eworm.de/doc/ospf-to-leds.md
|
2023-03-07 10:57:42 +01:00
|
|
|
|
2024-12-06 10:31:52 +01:00
|
|
|
:local ExitOK false;
|
2025-05-06 09:44:23 +02:00
|
|
|
:onerror Err {
|
2025-05-06 14:08:37 +02:00
|
|
|
:global GlobalConfigReady; :global GlobalFunctionsReady;
|
|
|
|
:retry { :if ($GlobalConfigReady != true || $GlobalFunctionsReady != true) \
|
|
|
|
do={ :error ("Global config and/or functions not ready."); }; } delay=500ms max=50;
|
2024-03-06 15:28:55 +01:00
|
|
|
:local ScriptName [ :jobname ];
|
2023-06-13 09:04:14 +02:00
|
|
|
|
2024-03-08 12:45:38 +01:00
|
|
|
:global LogPrint;
|
2024-03-04 13:48:01 +01:00
|
|
|
:global ParseKeyValueStore;
|
|
|
|
:global ScriptLock;
|
2023-03-07 10:57:42 +01:00
|
|
|
|
2024-03-05 16:12:36 +01:00
|
|
|
:if ([ $ScriptLock $ScriptName ] = false) do={
|
2024-12-06 10:31:52 +01:00
|
|
|
:set ExitOK true;
|
2024-03-06 15:28:55 +01:00
|
|
|
:error false;
|
2024-03-05 16:12:36 +01:00
|
|
|
}
|
2023-03-07 10:57:42 +01:00
|
|
|
|
2024-03-04 13:48:01 +01:00
|
|
|
: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 ];
|
2023-03-07 10:57:42 +01:00
|
|
|
|
2024-03-04 13:48:01 +01:00
|
|
|
:local NeighborCount 0;
|
|
|
|
: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={
|
2024-03-08 12:45:38 +01:00
|
|
|
$LogPrint info $ScriptName ("OSPF instance " . $InstanceVal->"name" . " has " . $NeighborCount . " neighbors, led on!");
|
2024-03-04 13:48:01 +01:00
|
|
|
/system/leds/set type=on [ find where leds=$LED ];
|
|
|
|
}
|
|
|
|
:if ($NeighborCount = 0 && $LEDType = "on") do={
|
2024-03-08 12:45:38 +01:00
|
|
|
$LogPrint info $ScriptName ("OSPF instance " . $InstanceVal->"name" . " has no neighbors, led off!");
|
2024-03-04 13:48:01 +01:00
|
|
|
/system/leds/set type=off [ find where leds=$LED ];
|
|
|
|
}
|
2023-03-07 10:57:42 +01:00
|
|
|
}
|
2025-05-06 09:44:23 +02:00
|
|
|
} do={
|
|
|
|
:global ExitError; $ExitError $ExitOK [ :jobname ] $Err;
|
2024-12-06 10:31:52 +01:00
|
|
|
}
|