aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Christian Hesse <mail@eworm.de>2022-05-10 15:12:28 +0200
committerGravatar Christian Hesse <mail@eworm.de>2022-05-11 13:48:27 +0200
commit008046d569a995d393fc8be1cd8c1fbeb1d76641 (patch)
treed1fb8e71036ebd07406ea2755e455bc012e8aed5
parentc18821deb5b1a1128ae6b4bb16a53d11affaa356 (diff)
ospf-to-leds: RouterOS v7 path syntax
-rw-r--r--ospf-to-leds16
1 files changed, 8 insertions, 8 deletions
diff --git a/ospf-to-leds b/ospf-to-leds
index 39501c9..c4acb30 100644
--- a/ospf-to-leds
+++ b/ospf-to-leds
@@ -13,23 +13,23 @@
:global LogPrintExit2;
:global ParseKeyValueStore;
-:foreach Instance in=[ / routing ospf instance find where comment~"^ospf-to-leds," ] do={
- :local InstanceVal [ / routing ospf instance get $Instance ];
+: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 ];
+ :local LEDType [ /system/leds/get [ find where leds=$LED ] type ];
: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 ] ]);
+ :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 ($NeighborCount = 0 && $LEDType = "on") do={
$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 ];
}
}