mirror of
https://git.eworm.de/cgit/routeros-scripts
synced 2025-08-03 01:34:32 +02:00
add scripts
This commit is contained in:
parent
1d99dc38ff
commit
e1f134ead5
28 changed files with 842 additions and 0 deletions
12
learn-mac-based-vlan
Normal file
12
learn-mac-based-vlan
Normal file
|
@ -0,0 +1,12 @@
|
|||
# RouterOS script: learn-mac-based-vlan
|
||||
# Copyright (c) 2013-2018 Christian Hesse <mail@eworm.de>
|
||||
#
|
||||
# learn MAC address for MAC-based-VLAN
|
||||
|
||||
:local NewVlanId 33;
|
||||
|
||||
/ log info ("MAC-based-VLAN: learning MAC address " . $leaseActMAC . " for VLAN " . $NewVlanId . ".");
|
||||
|
||||
:if ( [ :len [ / interface ethernet switch mac-based-vlan find where src-mac-address=$leaseActMAC ] ] = 0 ) do={
|
||||
/ interface ethernet switch mac-based-vlan add src-mac-address=$leaseActMAC new-customer-vid=$NewVlanId;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue