routeros-scripts/ppp-on-up.rsc

41 lines
1.2 KiB
Plaintext
Raw Normal View History

#!rsc by RouterOS
# RouterOS script: ppp-on-up
2024-01-01 14:25:25 +00:00
# Copyright (c) 2013-2024 Christian Hesse <mail@eworm.de>
# https://git.eworm.de/cgit/routeros-scripts/about/COPYING.md
#
# requires RouterOS, version=7.12
#
# run scripts on ppp up
# https://git.eworm.de/cgit/routeros-scripts/about/doc/ppp-on-up.md
:global GlobalFunctionsReady;
:while ($GlobalFunctionsReady != true) do={ :delay 500ms; }
:do {
:local ScriptName [ :jobname ];
2024-03-08 11:45:38 +00:00
:global LogPrint;
:local Interface $interface;
2024-03-04 12:48:01 +00:00
:if ([ :typeof $Interface ] = "nothing") do={
2024-03-08 11:45:38 +00:00
$LogPrint error $ScriptName ("This script is supposed to run from ppp on-up script hook.");
:error false;
2024-03-04 12:48:01 +00:00
}
2024-03-04 12:48:01 +00:00
:local IntName [ /interface/get $Interface name ];
2024-03-08 11:45:38 +00:00
$LogPrint info $ScriptName ("PPP interface " . $IntName . " is up.");
2024-03-04 12:48:01 +00:00
/ipv6/dhcp-client/release [ find where interface=$IntName !disabled ];
2024-03-04 12:48:01 +00:00
:foreach Script in=[ /system/script/find where source~("\n# provides: ppp-on-up\n") ] do={
:local ScriptName [ /system/script/get $Script name ];
:do {
2024-03-08 11:45:38 +00:00
$LogPrint debug $ScriptName ("Running script: " . $ScriptName);
2024-03-04 12:48:01 +00:00
/system/script/run $Script;
} on-error={
2024-03-08 11:45:38 +00:00
$LogPrint warning $ScriptName ("Running script '" . $ScriptName . "' failed!");
2024-03-04 12:48:01 +00:00
}
}
} on-error={ }