mirror of
https://github.com/eworm-de/routeros-scripts
synced 2024-05-14 08:04:19 +00:00
bridge-port-to-default: use $LogPrintExit
This commit is contained in:
parent
001e7eeb39
commit
4ccdec602e
1 changed files with 5 additions and 3 deletions
|
@ -6,6 +6,8 @@
|
|||
|
||||
:global BridgePortTo;
|
||||
|
||||
:global LogPrintExit;
|
||||
|
||||
:foreach BridgePort in=[ / interface bridge port find where comment!="" ] do={
|
||||
:local BridgePortVal [ / interface bridge port get $BridgePort ];
|
||||
:foreach Comment in=[ :toarray ($BridgePortVal->"comment") ] do={
|
||||
|
@ -13,18 +15,18 @@
|
|||
:local BridgeDefault [ :pick $Comment $Len [ :len $Comment ] ];
|
||||
:if ($BridgeDefault = "dhcp-client") do={
|
||||
:if ($BridgePortVal->"disabled" = false) do={
|
||||
:log info ("Disabling bridge port for interface " . $BridgePortVal->"interface" . ", enabling dhcp client.");
|
||||
$LogPrintExit info ("Disabling bridge port for interface " . $BridgePortVal->"interface" . ", enabling dhcp client.") false;
|
||||
/ interface bridge port disable $BridgePort;
|
||||
/ ip dhcp-client enable [ find where interface=$BridgePortVal->"interface" comment="toggle with bridge port" disabled=yes ];
|
||||
}
|
||||
} else={
|
||||
:if ($BridgePortVal->"disabled" = true) do={
|
||||
:log info ("Enabling bridge port for interface " . $BridgePortVal->"interface" . ", disabling dhcp client.");
|
||||
$LogPrintExit info ("Enabling bridge port for interface " . $BridgePortVal->"interface" . ", disabling dhcp client.") false;
|
||||
/ ip dhcp-client disable [ find where interface=$BridgePortVal->"interface" comment="toggle with bridge port" disabled=no ];
|
||||
/ interface bridge port enable $BridgePort;
|
||||
}
|
||||
:if ($BridgeDefault != $BridgePortVal->"bridge") do={
|
||||
:log info ("Changing interface " . $BridgePortVal->"interface" . " to " . $BridgePortTo . " bridge " . $BridgeDefault);
|
||||
$LogPrintExit info ("Changing interface " . $BridgePortVal->"interface" . " to " . $BridgePortTo . " bridge " . $BridgeDefault) false;
|
||||
/ interface bridge port set bridge=$BridgeDefault $BridgePort;
|
||||
} else={
|
||||
:log debug ("Interface " . $BridgePortVal->"interface" . " already connected to " . $BridgePortTo . " bridge " . $BridgeDefault);
|
||||
|
|
Loading…
Reference in a new issue