aboutsummaryrefslogtreecommitdiffstats
path: root/learn-mac-based-vlan
blob: 8ebb16a2f0dd405fb99cfbf37a33fd764da47c37 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#!rsc
# RouterOS script: learn-mac-based-vlan
# Copyright (c) 2013-2019 Christian Hesse <mail@eworm.de>
#
# 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;
}