mirror of
				https://github.com/eworm-de/routeros-scripts.git
				synced 2024-05-11 05:55:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| #!rsc by RouterOS
 | |
| # RouterOS script: ospf-to-leds
 | |
| # Copyright (c) 2020-2021 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
 | |
| 
 | |
| :local 0 "ospf-to-leds";
 | |
| :global GlobalFunctionsReady;
 | |
| :while ($GlobalFunctionsReady != true) do={ :delay 500ms; }
 | |
| 
 | |
| :global LogPrintExit2;
 | |
| :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 ];
 | |
| 
 | |
|   $LogPrintExit2 debug $0 ("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 ];
 | |
|   }
 | |
| }
 |