From 10bf3c758fb4f92e0b66719c98eba3d7be98ef81 Mon Sep 17 00:00:00 2001 From: Christian Hesse Date: Fri, 23 Sep 2022 20:04:19 +0200 Subject: drop 'learn-mac-based-vlan' and 'manage-umts' MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This was undocumented and scripts did never catch up with general quality expectations, for example global-config and global functions were not used. If you need the code get it from git history. 😜 --- manage-umts | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 manage-umts (limited to 'manage-umts') diff --git a/manage-umts b/manage-umts deleted file mode 100644 index 0cd3e8f..0000000 --- a/manage-umts +++ /dev/null @@ -1,29 +0,0 @@ -#!rsc by RouterOS -# RouterOS script: manage-umts -# Copyright (c) 2013-2022 Christian Hesse -# https://git.eworm.de/cgit/routeros-scripts/about/COPYING.md -# -# manage UMTS interface based on ethernet and wireless status - -:local EtherInt "en1"; -:local WlanInt "wl-station"; -:local UmtsInt "t-mobile"; - -:local EtherStatus [ /interface/ethernet/get $EtherInt running ]; -:local WlanStatus [ /interface/wireless/get $WlanInt running ]; - -:if ($EtherStatus = true || $WlanStatus = true) do={ - :if ([ /interface/get $UmtsInt disabled ] = false) do={ - :log info ("Ethernet (" . $EtherInt . " / " . $EtherStatus . ") or " . \ - "wireless (" . $WlanInt . " / " . $WlanStatus . ") is running, " . \ - "UMTS interface " . $UmtsInt . " is enabled. Disabling..."); - /interface/set disabled=yes $UmtsInt; - } -} else={ - :if ([ /interface/get $UmtsInt disabled ] = true) do={ - :log info ("Neither ethernet (" . $EtherInt . ") nor wireless (" . \ - $WlanInt . ") interface is running, UMTS interface " . $UmtsInt . \ - " is disabled. Enabling..."); - /interface/set disabled=no $UmtsInt; - } -} -- cgit v1.2.3-54-g00ecf