mirror of
https://github.com/eworm-de/routeros-scripts.git
synced 2024-05-11 05:55:19 +00:00
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:
@@ -6,9 +6,11 @@
|
||||
|
||||
:foreach bridge in=[ / interface bridge find ] do={
|
||||
:local brname [ / interface bridge get $bridge name ];
|
||||
: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 ];
|
||||
: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 ];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user