mirror of
https://github.com/eworm-de/routeros-scripts
synced 2024-05-14 08:04:19 +00:00
update-tunnelbroker: move configuration to global-config...
... and get the external ip address from cloud. Signed-off-by: Michael Gisbers <michael@gisbers.de> Signed-off-by: Christian Hesse <mail@eworm.de>
This commit is contained in:
parent
69e76f5ecc
commit
ca16f286ef
2 changed files with 30 additions and 21 deletions
|
@ -95,6 +95,13 @@
|
|||
#:global "cert-renew-url" "https://example.com/certificates/";
|
||||
:global "cert-renew-pass" "v3ry-s3cr3t";
|
||||
|
||||
# Configuration for update-tunnelbroker
|
||||
#:global tunnelurl "ipv4.tunnelbroker.net";
|
||||
#:global tunneluser "user";
|
||||
#:global tunnelpass "v3ry-s3cr3t";
|
||||
#:global tunnelid "user-XXX.tunnel.tserv6.fra1.ipv6.he.net";
|
||||
#:global tunnelint "tunnelbroker";
|
||||
|
||||
# Do *NOT* change these!
|
||||
:global "sent-routeros-update-notification" "-";
|
||||
:global "sent-lte-firmware-update-notification" "-";
|
||||
|
|
|
@ -1,31 +1,33 @@
|
|||
#!rsc
|
||||
# RouterOS script: update-tunnelbroker
|
||||
# Copyright (c) 2013-2019 Christian Hesse <mail@eworm.de>
|
||||
# Michael Gisbers <michael@gisbers.de>
|
||||
|
||||
:local tunnelurl "ipv4.tunnelbroker.net";
|
||||
:local tunneluser "user";
|
||||
:local tunnelpass "v3ry-s3cr3t";
|
||||
:local tunnelid "user-XXX.tunnel.tserv6.fra1.ipv6.he.net";
|
||||
:global tunnelurl;
|
||||
:global tunneluser;
|
||||
:global tunnelpass;
|
||||
:global tunnelid;
|
||||
:global tunnelint;
|
||||
|
||||
# name of the local tunnel interface
|
||||
:local tunnelint "tunnelbroker";
|
||||
:if ([ / ip cloud get ddns-enabled ] != true) do={
|
||||
:error "IP cloud DDNS is not enabled.";
|
||||
}
|
||||
|
||||
# get the last ip address from tunnel interface
|
||||
:local tunnellastip [ / interface 6to4 get [ / interface 6to4 find where name=$tunnelint ] local-address ];
|
||||
|
||||
# Get the current ip address on interface with default route
|
||||
:local tunnelip [ / ip route get [ / ip route find where gateway=[ / ip route get [ / ip route find where dynamic=yes and dst-address="0.0.0.0/0" dynamic active=yes ] gateway ] dst-address!="0.0.0.0/0" ] pref-src ];
|
||||
|
||||
# Did we get an IP address to compare?
|
||||
:if ([ :typeof $tunnelip ] = nil) do={
|
||||
:log warning ("No default route? Could not get address, please check.");
|
||||
} else={
|
||||
:if ($tunnelip != $tunnellastip) do={
|
||||
:log info ("Local address changed, sending UPDATE to tunnelbroker! New address: " . $tunnelip);
|
||||
/ tool fetch mode=https address=$tunnelurl user=$tunneluser password=$tunnelpass \
|
||||
src-path=("/nic/update\?hostname=" . $tunnelid) keep-result=no;
|
||||
/ interface 6to4 set [ / interface 6to4 find where name=$tunnelint ] local-address=$tunnelip;
|
||||
} else={
|
||||
:log debug "All tunnelbroker configuration is up to date.";
|
||||
}
|
||||
# Get the current ip address from cloud
|
||||
/ ip cloud force-update;
|
||||
while ([ / ip cloud get status ] != "updated" ) do={
|
||||
:delay 1s;
|
||||
}
|
||||
:local tunnelip [ / ip cloud get public-address ];
|
||||
|
||||
:if ($tunnelip != $tunnellastip) do={
|
||||
:log info ("Local address changed, sending UPDATE to tunnelbroker! New address: " . $tunnelip);
|
||||
/ tool fetch mode=https address=$tunnelurl user=$tunneluser password=$tunnelpass \
|
||||
src-path=("/nic/update\?hostname=" . $tunnelid) keep-result=no;
|
||||
/ interface 6to4 set [ / interface 6to4 find where name=$tunnelint ] local-address=$tunnelip;
|
||||
} else={
|
||||
:log debug "All tunnelbroker configuration is up to date.";
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue