2020-09-18 09:00:27 +00:00
|
|
|
#!rsc by RouterOS
|
2019-10-14 19:24:35 +00:00
|
|
|
# RouterOS script: hotspot-to-wpa
|
2022-01-01 20:38:15 +00:00
|
|
|
# Copyright (c) 2019-2022 Christian Hesse <mail@eworm.de>
|
2020-06-19 20:17:42 +00:00
|
|
|
# https://git.eworm.de/cgit/routeros-scripts/about/COPYING.md
|
2019-10-14 19:24:35 +00:00
|
|
|
#
|
|
|
|
# add private WPA passphrase after hotspot login
|
2020-03-27 20:46:08 +00:00
|
|
|
# https://git.eworm.de/cgit/routeros-scripts/about/doc/hotspot-to-wpa.md
|
2019-10-14 19:24:35 +00:00
|
|
|
|
2021-02-22 14:14:10 +00:00
|
|
|
:local 0 "hotspot-to-wpa";
|
2021-02-18 13:52:47 +00:00
|
|
|
:global GlobalFunctionsReady;
|
|
|
|
:while ($GlobalFunctionsReady != true) do={ :delay 500ms; }
|
|
|
|
|
2021-12-21 12:15:35 +00:00
|
|
|
:global EitherOr;
|
2021-02-22 14:14:10 +00:00
|
|
|
:global LogPrintExit2;
|
2021-12-21 12:15:35 +00:00
|
|
|
:global ParseKeyValueStore;
|
2020-03-05 08:17:19 +00:00
|
|
|
|
2019-10-14 19:24:35 +00:00
|
|
|
:local MacAddress $"mac-address";
|
|
|
|
:local UserName $username;
|
|
|
|
:local Date [ / system clock get date ];
|
2021-12-21 12:15:35 +00:00
|
|
|
:local Hotspot [ / ip hotspot host get [ find where mac-address=$MacAddress authorized ] server ];
|
|
|
|
:local UserVal [ / ip hotspot user get [ find where name=$UserName ] ];
|
2019-10-14 19:24:35 +00:00
|
|
|
|
2020-08-26 07:23:56 +00:00
|
|
|
:if ([ :len [ / caps-man access-list find where comment="--- hotspot-to-wpa above ---" disabled ] ] = 0) do={
|
2020-03-09 12:46:06 +00:00
|
|
|
/ caps-man access-list add comment="--- hotspot-to-wpa above ---" disabled=yes;
|
2021-02-22 14:14:10 +00:00
|
|
|
$LogPrintExit2 warning $0 ("Added disabled access-list entry with comment '--- hotspot-to-wpa above ---'.") false;
|
2019-10-14 19:24:35 +00:00
|
|
|
}
|
2021-01-03 19:34:19 +00:00
|
|
|
:local PlaceBefore ([ / caps-man access-list find where comment="--- hotspot-to-wpa above ---" disabled ]->0);
|
2019-10-14 19:24:35 +00:00
|
|
|
|
2021-02-22 14:14:10 +00:00
|
|
|
$LogPrintExit2 info $0 ("Adding/updating accesslist entry for mac address " . $MacAddress . \
|
2020-03-05 08:17:19 +00:00
|
|
|
" (user " . $UserName . ").") false;
|
|
|
|
|
2019-10-14 19:24:35 +00:00
|
|
|
/ caps-man access-list remove [ find where mac-address=$MacAddress comment~"^hotspot-to-wpa: " ];
|
2021-11-03 14:21:01 +00:00
|
|
|
/ caps-man access-list add comment=("hotspot-to-wpa: " . $UserName . ", " . $MacAddress . ", " . $Date) \
|
2021-12-21 12:15:35 +00:00
|
|
|
mac-address=$MacAddress private-passphrase=($UserVal->"password") ssid-regexp="-wpa\$" place-before=$PlaceBefore;
|
|
|
|
|
|
|
|
:local Template [ / caps-man access-list get ([ find where comment=("hotspot-to-wpa template " . $Hotspot) disabled ]->0) ];
|
|
|
|
:local UserInfo [ $ParseKeyValueStore ($UserVal->"comment") ];
|
|
|
|
:local Entry [ / caps-man access-list find where mac-address=$MacAddress \
|
|
|
|
comment=("hotspot-to-wpa: " . $UserName . ", " . $MacAddress . ", " . $Date) ];
|
|
|
|
|
|
|
|
:local PrivatePassphrase [ $EitherOr ($UserInfo->"private-passphrase") ($Template->"private-passphrase") ];
|
|
|
|
:if ([ :len $PrivatePassphrase ] > 0) do={
|
|
|
|
:if ($PrivatePassphrase = "ignore") do={
|
|
|
|
/ caps-man access-list set $Entry !private-passphrase;
|
|
|
|
} else={
|
|
|
|
/ caps-man access-list set $Entry private-passphrase=$PrivatePassphrase;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
:local SsidRegexp [ $EitherOr ($UserInfo->"ssid-regexp") ($Template->"ssid-regexp") ];
|
|
|
|
:if ([ :len $SsidRegexp ] > 0) do={
|
|
|
|
/ caps-man access-list set $Entry ssid-regexp=$SsidRegexp;
|
|
|
|
}
|
|
|
|
:local VlanId [ $EitherOr ($UserInfo->"vlan-id") ($Template->"vlan-id") ];
|
|
|
|
:if ([ :len $VlanId ] > 0) do={
|
|
|
|
/ caps-man access-list set $Entry vlan-id=$VlanId;
|
|
|
|
}
|
|
|
|
:local VlanMode [ $EitherOr ($UserInfo->"vlan-mode") ($Template->"vlan-mode") ];
|
|
|
|
:if ([ :len $VlanMode] > 0) do={
|
|
|
|
/ caps-man access-list set $Entry vlan-mode=$VlanMode;
|
|
|
|
}
|