mirror of
https://github.com/eworm-de/routeros-scripts
synced 2024-05-14 08:04:19 +00:00
16 lines
403 B
Text
16 lines
403 B
Text
#!rsc
|
|
# RouterOS script: bridge-port-toggle
|
|
# Copyright (c) 2013-2020 Christian Hesse <mail@eworm.de>
|
|
#
|
|
# toggle bridge ports between default and alt bridge
|
|
# https://git.eworm.de/cgit/routeros-scripts/about/doc/bridge-port.md
|
|
|
|
:global BridgePortTo;
|
|
|
|
:if ($BridgePortTo != "default") do={
|
|
:set BridgePortTo "default";
|
|
} else={
|
|
:set BridgePortTo "alt";
|
|
}
|
|
|
|
/ system script run bridge-port-to-default;
|