aboutsummaryrefslogtreecommitdiffstats
path: root/learn-mac-based-vlan
blob: f5c0ea575aa53285126f3f3c2100fad5d139d382 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#
# 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;
};