mirror of
https://github.com/eworm-de/routeros-scripts.git
synced 2024-05-11 05:55:19 +00:00
14 lines
559 B
Plaintext
14 lines
559 B
Plaintext
#!rsc
|
|||
# RouterOS script: learn-mac-based-vlan
|
|||
# Copyright (c) 2013-2020 Christian Hesse <[email protected]>
|
|||
# https://git.eworm.de/cgit/routeros-scripts/about/COPYING.md
|
|||
#
|
|||
|
|
# learn MAC address for MAC-based-VLAN
|
||
|
|
|
||
|
|
:local NewVlanId 33;
|
||
|
|
|
||
:if ( [ / interface ethernet switch mac-based-vlan print count-only 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;
|
|||
}
|