mirror of
https://git.eworm.de/cgit/routeros-scripts
synced 2025-08-02 09:15:03 +02:00
drop 'learn-mac-based-vlan' and 'manage-umts'
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. 😜
This commit is contained in:
parent
bfe2cbf575
commit
10bf3c758f
3 changed files with 0 additions and 46 deletions
|
@ -206,10 +206,6 @@ Available scripts
|
|||
* [Update GRE configuration with dynamic addresses](doc/update-gre-address.md)
|
||||
* [Update tunnelbroker configuration](doc/update-tunnelbroker.md)
|
||||
|
||||
[comment]: # (TODO: currently undocumented)
|
||||
[comment]: # (* learn-mac-based-vlan)
|
||||
[comment]: # (* manage-umts)
|
||||
|
||||
Available modules
|
||||
-----------------
|
||||
|
||||
|
|
|
@ -1,13 +0,0 @@
|
|||
#!rsc by RouterOS
|
||||
# RouterOS script: learn-mac-based-vlan
|
||||
# Copyright (c) 2013-2022 Christian Hesse <mail@eworm.de>
|
||||
# https://git.eworm.de/cgit/routeros-scripts/about/COPYING.md
|
||||
#
|
||||
# learn MAC address for MAC-based-VLAN
|
||||
|
||||
:local NewVlanId 33;
|
||||
|
||||
:if ([ :len [ /interface/ethernet/switch/mac-based-vlan/find where src-mac-address=$leaseActMAC ] ] = 0 ) do={
|
||||
:log info ("MAC-based-VLAN: learning MAC address " . $leaseActMAC . " for VLAN " . $NewVlanId . ".");
|
||||
/interface/ethernet/switch/mac-based-vlan/add src-mac-address=$leaseActMAC new-customer-vid=$NewVlanId;
|
||||
}
|
29
manage-umts
29
manage-umts
|
@ -1,29 +0,0 @@
|
|||
#!rsc by RouterOS
|
||||
# RouterOS script: manage-umts
|
||||
# Copyright (c) 2013-2022 Christian Hesse <mail@eworm.de>
|
||||
# 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;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue