routeros-scripts/ip-addr-bridge
Christian Hesse cdb85460bd ip-addr-bridge: ignore bridges without ports
Bridges are used for loopback... Assume we do not want to disable
addresses if the bridge has no ports.
2018-11-26 11:12:24 +01:00

17 lines
613 B
Plaintext

#!rsc
# RouterOS script: ip-addr-bridge
# Copyright (c) 2018 Christian Hesse <mail@eworm.de>
#
# enable or disable ip addresses based on bridge port state
: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 ];
}
}
}