diff options
author | Christian Hesse <mail@eworm.de> | 2020-03-27 21:46:44 +0100 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2020-03-27 22:12:49 +0100 |
commit | b20fcaa94d64da64412f44afcca7cd4dabaa6fc0 (patch) | |
tree | 6415ce0d91c49fcbd0c210dc8937de02e4fb640e | |
parent | 39857405d55c37542b3bc3b4dcef6d24c9a2ea62 (diff) |
add doc/ip-addr-bridge.md
-rw-r--r-- | doc/ip-addr-bridge.md | 32 | ||||
-rw-r--r-- | ip-addr-bridge | 1 |
2 files changed, 33 insertions, 0 deletions
diff --git a/doc/ip-addr-bridge.md b/doc/ip-addr-bridge.md new file mode 100644 index 0000000..44dac6a --- /dev/null +++ b/doc/ip-addr-bridge.md @@ -0,0 +1,32 @@ +Manage IP addresses with bridge status +====================================== + +[◀ Go back to main README](../README.md) + +Description +----------- + +With RouterOS an IP address is always active, even if an interface is down. +Other venders handle this differently - and sometimes this behavior is +expected. This script mimics this behavior. + +Requirements and installation +----------------------------- + +Just install the script: + + $ScriptInstallUpdate ip-addr-bridge; + +... and make it run from scheduler: + + / system scheduler add name=ip-addr-bridge on-event="/ system script run ip-addr-bridge;" start-time=startup; + +This will disable IP addresses on bridges without at lease one running port. +The IP address is enabled if at least one port is running. + +Note that IP addresses on bridges without a single port (acting as loopback +interface) are ignored. + +--- +[◀ Go back to main README](../README.md) +[▲ Go back to top](#top) diff --git a/ip-addr-bridge b/ip-addr-bridge index 947e7fe..02781cc 100644 --- a/ip-addr-bridge +++ b/ip-addr-bridge @@ -3,6 +3,7 @@ # Copyright (c) 2018-2020 Christian Hesse <mail@eworm.de> # # enable or disable ip addresses based on bridge port state +# https://git.eworm.de/cgit/routeros-scripts/about/doc/ip-addr-bridge.md :foreach Bridge in=[ / interface bridge find ] do={ :local BrName [ / interface bridge get $Bridge name ]; |