2020-09-18 09:00:27 +00:00
|
|
|
#!rsc by RouterOS
|
2018-07-05 13:29:26 +00:00
|
|
|
# RouterOS script: update-tunnelbroker
|
2023-01-02 22:33:49 +00:00
|
|
|
# Copyright (c) 2013-2023 Christian Hesse <mail@eworm.de>
|
2019-01-02 10:25:45 +00:00
|
|
|
# Michael Gisbers <michael@gisbers.de>
|
2020-06-19 20:17:42 +00:00
|
|
|
# https://git.eworm.de/cgit/routeros-scripts/about/COPYING.md
|
2020-03-27 20:52:02 +00:00
|
|
|
#
|
2021-06-23 08:19:59 +00:00
|
|
|
# provides: ppp-on-up
|
|
|
|
#
|
2020-03-27 20:52:02 +00:00
|
|
|
# update local address of tunnelbroker interface
|
|
|
|
# https://git.eworm.de/cgit/routeros-scripts/about/doc/update-tunnelbroker.md
|
2018-07-05 13:29:26 +00:00
|
|
|
|
2021-02-22 14:14:10 +00:00
|
|
|
:local 0 "update-tunnelbroker";
|
2021-02-18 13:52:47 +00:00
|
|
|
:global GlobalFunctionsReady;
|
|
|
|
:while ($GlobalFunctionsReady != true) do={ :delay 500ms; }
|
|
|
|
|
2019-01-02 12:16:23 +00:00
|
|
|
:global CertificateAvailable;
|
2021-02-22 14:14:10 +00:00
|
|
|
:global LogPrintExit2;
|
2020-02-28 14:26:26 +00:00
|
|
|
:global ParseKeyValueStore;
|
2019-01-02 12:16:23 +00:00
|
|
|
|
2022-10-09 21:15:06 +00:00
|
|
|
:if ([ $CertificateAvailable "Starfield Secure Certificate Authority - G2" ] = false) do={
|
2022-10-09 17:45:18 +00:00
|
|
|
$LogPrintExit2 error $0 ("Downloading required certificate failed.") true;
|
2019-01-02 10:25:45 +00:00
|
|
|
}
|
2018-07-05 13:29:26 +00:00
|
|
|
|
2022-05-10 13:18:51 +00:00
|
|
|
:foreach Interface in=[ /interface/6to4/find where comment~"^tunnelbroker" !disabled ] do={
|
2022-10-09 21:15:06 +00:00
|
|
|
:local I 0;
|
|
|
|
:local Response "";
|
2022-05-10 13:18:51 +00:00
|
|
|
:local InterfaceVal [ /interface/6to4/get $Interface ];
|
2022-10-09 21:15:06 +00:00
|
|
|
:local Comment [ $ParseKeyValueStore ($InterfaceVal->"comment") ];
|
|
|
|
|
|
|
|
:while ($I < 3 && $Response = "") do={
|
|
|
|
:do {
|
|
|
|
:set Response ([ /tool/fetch check-certificate=yes-without-crl \
|
|
|
|
("https://ipv4.tunnelbroker.net/nic/update\?hostname=" . $Comment->"id") \
|
|
|
|
user=($Comment->"user") password=($Comment->"pass") output=user as-value ]->"data");
|
|
|
|
} on-error={
|
|
|
|
:delay 10s;
|
|
|
|
:set I ($I + 1);
|
|
|
|
}
|
|
|
|
}
|
2019-01-04 19:20:20 +00:00
|
|
|
|
2022-10-09 21:15:06 +00:00
|
|
|
:if (!($Response~"^(good|nochg) ")) do={
|
|
|
|
$LogPrintExit2 error $0 ("Failed sending the local address to tunnelbroker or unexpected response!") true;
|
|
|
|
}
|
2018-07-05 13:29:26 +00:00
|
|
|
|
2022-10-09 21:15:06 +00:00
|
|
|
:local PublicAddress [ :pick $Response ([ :find $Response " " ] + 1) [ :find $Response "\n" ] ];
|
|
|
|
|
|
|
|
:if ($PublicAddress != $InterfaceVal->"local-address") do={
|
|
|
|
:if ([ :len [ /ip/address find where address~("^" . $PublicAddress . "/") ] ] < 1) do={
|
|
|
|
$LogPrintExit2 warning $0 ("The address " . $PublicAddress . " is not configured on your device. NAT by ISP?") false;
|
2022-10-08 20:38:31 +00:00
|
|
|
}
|
2022-10-09 21:15:06 +00:00
|
|
|
|
|
|
|
$LogPrintExit2 info $0 ("Local address changed, updating tunnel configuration with address: " . $PublicAddress) false;
|
2022-05-10 13:18:51 +00:00
|
|
|
/interface/6to4/set $Interface local-address=$PublicAddress;
|
2019-01-04 19:20:20 +00:00
|
|
|
}
|
2018-07-05 13:29:26 +00:00
|
|
|
}
|