blob: 947e7fee9b8e99a51803f16d07f15ac2c467f7ff (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!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
: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 ];
}
}
}
|