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