diff options
author | Christian Hesse <mail@eworm.de> | 2022-09-23 20:04:19 +0200 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2022-09-25 22:18:44 +0200 |
commit | 10bf3c758fb4f92e0b66719c98eba3d7be98ef81 (patch) | |
tree | 86b3a339845cee9991cbaca67b4cafbd900068cc /learn-mac-based-vlan | |
parent | bfe2cbf575e4682db86c04044e90f7f997f7de04 (diff) |
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. 😜
Diffstat (limited to 'learn-mac-based-vlan')
-rw-r--r-- | learn-mac-based-vlan | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/learn-mac-based-vlan b/learn-mac-based-vlan deleted file mode 100644 index ce8957d..0000000 --- a/learn-mac-based-vlan +++ /dev/null @@ -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; -} |