routeros-scripts/learn-mac-based-vlan

14 lines
567 B
Plaintext
Raw Normal View History

#!rsc by RouterOS
2018-07-05 15:29:26 +02:00
# RouterOS script: learn-mac-based-vlan
2021-01-01 21:33:52 +01:00
# Copyright (c) 2013-2021 Christian Hesse <mail@eworm.de>
# https://git.eworm.de/cgit/routeros-scripts/about/COPYING.md
2018-07-05 15:29:26 +02:00
#
# 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 . ".");
2018-07-05 15:29:26 +02:00
/ interface ethernet switch mac-based-vlan add src-mac-address=$leaseActMAC new-customer-vid=$NewVlanId;
}