mirror of
https://git.eworm.de/cgit/routeros-scripts
synced 2025-07-10 10:04:28 +02:00
ip-addr-bridge: RouterOS v7 path syntax
This commit is contained in:
parent
3befc38d21
commit
0fec08c0cd
1 changed files with 6 additions and 6 deletions
|
@ -6,13 +6,13 @@
|
||||||
# enable or disable ip addresses based on bridge port state
|
# enable or disable ip addresses based on bridge port state
|
||||||
# https://git.eworm.de/cgit/routeros-scripts/about/doc/ip-addr-bridge.md
|
# https://git.eworm.de/cgit/routeros-scripts/about/doc/ip-addr-bridge.md
|
||||||
|
|
||||||
:foreach Bridge in=[ / interface bridge find ] do={
|
:foreach Bridge in=[ /interface/bridge/find ] do={
|
||||||
:local BrName [ / interface bridge get $Bridge name ];
|
:local BrName [ /interface/bridge/get $Bridge name ];
|
||||||
:if ([ :len [ / interface bridge port find where bridge=$BrName ] ] > 0) do={
|
:if ([ :len [ /interface/bridge/port/find where bridge=$BrName ] ] > 0) do={
|
||||||
:if ([ :len [ / interface bridge port find where bridge=$BrName and inactive=no ] ] = 0) do={
|
:if ([ :len [ /interface/bridge/port/find where bridge=$BrName and inactive=no ] ] = 0) do={
|
||||||
/ ip address disable [ find where !dynamic interface=$BrName ];
|
/ip/address/disable [ find where !dynamic interface=$BrName ];
|
||||||
} else={
|
} else={
|
||||||
/ ip address enable [ find where !dynamic interface=$BrName ];
|
/ip/address/enable [ find where !dynamic interface=$BrName ];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue