routeros-scripts/ipv6-update.rsc

88 lines
3.7 KiB
Plaintext
Raw Normal View History

#!rsc by RouterOS
# RouterOS script: ipv6-update
2024-01-01 15:25:25 +01: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
#
# update firewall and dns settings on IPv6 prefix change
# https://git.eworm.de/cgit/routeros-scripts/about/doc/ipv6-update.md
:global GlobalFunctionsReady;
:while ($GlobalFunctionsReady != true) do={ :delay 500ms; }
:do {
:local ScriptName [ :jobname ];
2024-03-08 12:45:38 +01:00
:global LogPrint;
2024-03-04 13:48:01 +01:00
:global ParseKeyValueStore;
:global ScriptLock;
2023-06-13 09:03:10 +02:00
:local PdPrefix $"pd-prefix";
:if ([ $ScriptLock $ScriptName ] = false) do={
:error false;
}
2024-03-04 13:48:01 +01:00
:if ([ :typeof $PdPrefix ] = "nothing") do={
2024-03-08 12:45:38 +01:00
$LogPrint error $ScriptName ("This script is supposed to run from ipv6 dhcp-client.");
:error false;
2024-03-04 13:48:01 +01:00
}
2024-03-04 13:48:01 +01:00
:local Pool [ /ipv6/pool/get [ find where prefix=$PdPrefix ] name ];
:if ([ :len [ /ipv6/firewall/address-list/find where comment=("ipv6-pool-" . $Pool) ] ] = 0) do={
/ipv6/firewall/address-list/add list=("ipv6-pool-" . $Pool) address=:: comment=("ipv6-pool-" . $Pool);
2024-03-08 12:45:38 +01:00
$LogPrint warning $ScriptName ("Added ipv6 address list entry for ipv6-pool-" . $Pool);
2024-03-04 13:48:01 +01:00
}
:local AddrList [ /ipv6/firewall/address-list/find where comment=("ipv6-pool-" . $Pool) ];
:local OldPrefix [ /ipv6/firewall/address-list/get ($AddrList->0) address ];
2024-03-04 13:48:01 +01:00
:if ($OldPrefix != $PdPrefix) do={
2024-03-08 12:45:38 +01:00
$LogPrint info $ScriptName ("Updating IPv6 address list with new IPv6 prefix " . $PdPrefix);
2024-03-04 13:48:01 +01:00
/ipv6/firewall/address-list/set address=$PdPrefix $AddrList;
2024-03-04 13:48:01 +01:00
# give the interfaces a moment to receive their addresses
:delay 2s;
2024-03-04 13:48:01 +01:00
:foreach ListEntry in=[ /ipv6/firewall/address-list/find where comment~("^ipv6-pool-" . $Pool . ",") ] do={
:local ListEntryVal [ /ipv6/firewall/address-list/get $ListEntry ];
:local Comment [ $ParseKeyValueStore ($ListEntryVal->"comment") ];
2024-03-04 13:48:01 +01:00
:local Prefix [ /ipv6/address/find where from-pool=$Pool interface=($Comment->"interface") global ];
:if ([ :len $Prefix ] = 1) do={
:set Prefix [ /ipv6/address/get $Prefix address ];
2024-03-04 13:48:01 +01:00
:if ([ :typeof [ :find ($ListEntryVal->"address") "/128" ] ] = "num" ) do={
:set Prefix ([ :toip6 [ :pick $Prefix 0 [ :find $Prefix "/64" ] ] ] & ffff:ffff:ffff:ffff::);
:local Address ($ListEntryVal->"address");
:local Address ($Prefix | ([ :toip6 [ :pick $Address 0 [ :find $Address "/128" ] ] ] & ::ffff:ffff:ffff:ffff));
2024-03-08 12:45:38 +01:00
$LogPrint info $ScriptName ("Updating IPv6 address list with new IPv6 host address " . $Address . \
" from interface " . ($Comment->"interface"));
2024-03-04 13:48:01 +01:00
/ipv6/firewall/address-list/set address=$Address $ListEntry;
} else={
2024-03-08 12:45:38 +01:00
$LogPrint info $ScriptName ("Updating IPv6 address list with new IPv6 prefix " . $Prefix . \
" from interface " . ($Comment->"interface"));
2024-03-04 13:48:01 +01:00
/ipv6/firewall/address-list/set address=$Prefix $ListEntry;
}
}
}
2024-03-04 13:48:01 +01:00
:foreach Record in=[ /ip/dns/static/find where comment~("^ipv6-pool-" . $Pool . ",") ] do={
:local RecordVal [ /ip/dns/static/get $Record ];
:local Comment [ $ParseKeyValueStore ($RecordVal->"comment") ];
2024-03-04 13:48:01 +01:00
:local Prefix [ /ipv6/address/find where from-pool=$Pool interface=($Comment->"interface") global ];
:if ([ :len $Prefix ] = 1) do={
:set Prefix [ /ipv6/address/get $Prefix address ];
:set Prefix ([ :toip6 [ :pick $Prefix 0 [ :find $Prefix "/64" ] ] ] & ffff:ffff:ffff:ffff::);
:local Address ($Prefix | ([ :toip6 ($RecordVal->"address") ] & ::ffff:ffff:ffff:ffff));
2024-03-08 12:45:38 +01:00
$LogPrint info $ScriptName ("Updating DNS record for " . ($RecordVal->"name") . \
($RecordVal->"regexp") . " to " . $Address);
2024-03-04 13:48:01 +01:00
/ip/dns/static/set address=$Address $Record;
}
}
}
} on-error={ }