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 /doc/ip-addr-bridge.md | |
parent | 39857405d55c37542b3bc3b4dcef6d24c9a2ea62 (diff) |
add doc/ip-addr-bridge.md
Diffstat (limited to 'doc/ip-addr-bridge.md')
-rw-r--r-- | doc/ip-addr-bridge.md | 32 |
1 files changed, 32 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) |