2020-09-18 09:00:27 +00:00
|
|
|
#!rsc by RouterOS
|
2018-07-05 13:29:26 +00:00
|
|
|
# RouterOS script: update-tunnelbroker
|
2022-01-01 20:38:15 +00:00
|
|
|
# Copyright (c) 2013-2022 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-05-10 13:18:51 +00:00
|
|
|
:if ([ /ip/cloud/get ddns-enabled ] != true) do={
|
2021-02-22 14:14:10 +00:00
|
|
|
$LogPrintExit2 error $0 ("IP cloud DDNS is not enabled.") true;
|
2019-01-02 10:25:45 +00:00
|
|
|
}
|
2018-07-05 13:29:26 +00:00
|
|
|
|
2019-01-02 10:25:45 +00:00
|
|
|
# Get the current ip address from cloud
|
2022-05-10 13:18:51 +00:00
|
|
|
/ip/cloud/force-update;
|
|
|
|
:while ([ /ip/cloud/get status ] != "updated") do={
|
2019-01-02 10:25:45 +00:00
|
|
|
:delay 1s;
|
|
|
|
}
|
2022-05-10 13:18:51 +00:00
|
|
|
:local PublicAddress [ /ip/cloud/get public-address ];
|
2019-01-04 19:20:20 +00:00
|
|
|
|
2022-05-10 13:18:51 +00:00
|
|
|
:foreach Interface in=[ /interface/6to4/find where comment~"^tunnelbroker" !disabled ] do={
|
|
|
|
:local InterfaceVal [ /interface/6to4/get $Interface ];
|
2019-01-04 19:20:20 +00:00
|
|
|
|
2019-07-25 11:25:12 +00:00
|
|
|
:if ($PublicAddress != $InterfaceVal->"local-address") do={
|
|
|
|
:local Comment [ $ParseKeyValueStore ($InterfaceVal->"comment") ];
|
2018-07-05 13:29:26 +00:00
|
|
|
|
2020-04-03 12:29:31 +00:00
|
|
|
:if ([ $CertificateAvailable "Starfield Secure Certificate Authority - G2" ] = false) do={
|
2021-02-22 14:14:10 +00:00
|
|
|
$LogPrintExit2 error $0 ("Downloading required certificate failed.") true;
|
2020-04-03 12:29:31 +00:00
|
|
|
}
|
2021-02-22 14:14:10 +00:00
|
|
|
$LogPrintExit2 info $0 ("Local address changed, sending UPDATE to tunnelbroker! New address: " . $PublicAddress) false;
|
2022-05-10 13:18:51 +00:00
|
|
|
/tool/fetch check-certificate=yes-without-crl \
|
2019-07-17 14:28:32 +00:00
|
|
|
("https://ipv4.tunnelbroker.net/nic/update\?hostname=" . $Comment->"id") \
|
2021-02-24 21:18:01 +00:00
|
|
|
user=($Comment->"user") password=($Comment->"pass") output=none as-value;
|
2022-05-10 13:18:51 +00:00
|
|
|
/interface/6to4/set $Interface local-address=$PublicAddress;
|
2019-01-04 19:20:20 +00:00
|
|
|
} else={
|
2021-02-22 14:14:10 +00:00
|
|
|
$LogPrintExit2 debug $0 ("All tunnelbroker configuration is up to date for interface " . $InterfaceVal->"name" . ".") false;
|
2019-01-04 19:20:20 +00:00
|
|
|
}
|
2018-07-05 13:29:26 +00:00
|
|
|
}
|