mirror of
https://github.com/eworm-de/routeros-scripts
synced 2024-05-14 08:04:19 +00:00
17 lines
691 B
Text
17 lines
691 B
Text
#!rsc
|
|
# RouterOS script: ip-addr-bridge
|
|
# Copyright (c) 2018-2020 Christian Hesse <mail@eworm.de>
|
|
#
|
|
# enable or disable ip addresses based on bridge port state
|
|
# https://git.eworm.de/cgit/routeros-scripts/about/doc/ip-addr-bridge.md
|
|
|
|
:foreach Bridge in=[ / interface bridge find ] do={
|
|
:local BrName [ / interface bridge get $Bridge name ];
|
|
:if ([ / interface bridge port print count-only where bridge=$BrName ] > 0) do={
|
|
:if ([ / interface bridge port print count-only where bridge=$BrName and inactive=no ] = 0) do={
|
|
/ ip address disable [ find where !dynamic interface=$BrName ];
|
|
} else={
|
|
/ ip address enable [ find where !dynamic interface=$BrName ];
|
|
}
|
|
}
|
|
}
|