diff options
author | Christian Hesse <mail@eworm.de> | 2022-05-10 15:05:56 +0200 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2022-05-11 13:48:27 +0200 |
commit | 2ab87f5143191915c27b8d4fe2bb50a032c2d2a6 (patch) | |
tree | 0305ced2d01733ad4ec19337a32b7009ec342cb4 /learn-mac-based-vlan | |
parent | 0fec08c0cdd17667ea2eb8fbdf64ca73169272ed (diff) |
learn-mac-based-vlan: RouterOS v7 path syntax
Diffstat (limited to 'learn-mac-based-vlan')
-rw-r--r-- | learn-mac-based-vlan | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/learn-mac-based-vlan b/learn-mac-based-vlan index e05fb7e..ce8957d 100644 --- a/learn-mac-based-vlan +++ b/learn-mac-based-vlan @@ -7,7 +7,7 @@ :local NewVlanId 33; -:if ([ :len [ / interface ethernet switch mac-based-vlan find where src-mac-address=$leaseActMAC ] ] = 0 ) do={ +: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 . "."); - / interface ethernet switch mac-based-vlan add src-mac-address=$leaseActMAC new-customer-vid=$NewVlanId; + /interface/ethernet/switch/mac-based-vlan/add src-mac-address=$leaseActMAC new-customer-vid=$NewVlanId; } |