mirror of
https://github.com/eworm-de/routeros-scripts
synced 2024-05-14 08:04:19 +00:00
add script 'ip-addr-bridge'
This commit is contained in:
parent
0b121705b2
commit
7843574cd6
1 changed files with 14 additions and 0 deletions
14
ip-addr-bridge
Normal file
14
ip-addr-bridge
Normal file
|
@ -0,0 +1,14 @@
|
|||
#!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 and inactive=no ] = 0) do={
|
||||
/ ip address disable [ find where !dynamic interface=$brname ];
|
||||
} else={
|
||||
/ ip address enable [ find where !dynamic interface=$brname ];
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue