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.
This commit is contained in:
Christian Hesse 2018-11-26 11:12:24 +01:00
parent 015f8e01b5
commit cdb85460bd

View file

@ -6,9 +6,11 @@
: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 ([ / 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={ :if ([ / interface bridge port print count-only 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 ];
} }
}
} }