aboutsummaryrefslogtreecommitdiffstats
path: root/ospf-to-leds
diff options
context:
space:
mode:
authorGravatar Christian Hesse <mail@eworm.de>2020-10-23 14:13:40 +0200
committerGravatar Christian Hesse <mail@eworm.de>2020-10-23 14:17:33 +0200
commitae5570325b8509ad8c637e8e6ebc81f1d8528cd0 (patch)
tree354321e35705f11d40c75d14bc9ede50db6dd778 /ospf-to-leds
parentebbc40e3a090fb91e6107b7546abf4caf32e4989 (diff)
ospf-to-leds: introduce script to visualize ospf state via ledschange-34
Diffstat (limited to 'ospf-to-leds')
-rw-r--r--ospf-to-leds24
1 files changed, 24 insertions, 0 deletions
diff --git a/ospf-to-leds b/ospf-to-leds
new file mode 100644
index 0000000..61b90ce
--- /dev/null
+++ b/ospf-to-leds
@@ -0,0 +1,24 @@
+#!rsc by RouterOS
+# RouterOS script: ospf-to-leds
+# Copyright (c) 2020 Christian Hesse <mail@eworm.de>
+# 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
+
+:global LogPrintExit;
+: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 ];
+
+ $LogPrintExit debug ("OSPF instance " . $InstanceVal->"name" . " is " . $InstanceVal->"state" . ".") false;
+ :if ($InstanceVal->"state" = "running" && $LEDType = "off") do={
+ / system leds set type=on [ find where leds=$LED ];
+ }
+ :if ($InstanceVal->"state" = "down" && $LEDType = "on") do={
+ / system leds set type=off [ find where leds=$LED ];
+ }
+}