mirror of
				https://github.com/eworm-de/routeros-scripts.git
				synced 2024-05-11 05:55:19 +00:00 
			
		
		
		
	Copyright (C) 2013-2020 Christian Hesse <mail@eworm.de> This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. https://www.gnu.org/licenses/#GPL https://www.gnu.org/licenses/gpl.html https://www.gnu.org/licenses/gpl.md
		
			
				
	
	
		
			37 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
#!rsc
 | 
						|
# RouterOS script: hotspot-to-wpa
 | 
						|
# Copyright (c) 2019-2020 Christian Hesse <mail@eworm.de>
 | 
						|
# https://git.eworm.de/cgit/routeros-scripts/about/COPYING.md
 | 
						|
#
 | 
						|
# add private WPA passphrase after hotspot login
 | 
						|
# https://git.eworm.de/cgit/routeros-scripts/about/doc/hotspot-to-wpa.md
 | 
						|
 | 
						|
:global LogPrintExit;
 | 
						|
 | 
						|
:local MacAddress $"mac-address";
 | 
						|
:local UserName $username;
 | 
						|
:local Date [ / system clock get date ];
 | 
						|
:local PassWord [ / ip hotspot user get [ find where name=$UserName ] password ];
 | 
						|
 | 
						|
:if ([ / caps-man access-list print count-only where comment="--- hotspot-to-wpa above ---" disabled ] = 0) do={
 | 
						|
  / caps-man access-list add comment="--- hotspot-to-wpa above ---" disabled=yes;
 | 
						|
  $LogPrintExit warning "Added disabled access-list entry with comment '--- hotspot-to-wpa above ---'." false;
 | 
						|
}
 | 
						|
:local PlaceBefore [ / caps-man access-list find where comment="--- hotspot-to-wpa above ---" disabled ];
 | 
						|
 | 
						|
$LogPrintExit info ("Adding/updating accesslist entry for mac address " . $MacAddress . \
 | 
						|
  " (user " . $UserName . ").") false;
 | 
						|
 | 
						|
/ caps-man access-list remove [ find where mac-address=$MacAddress comment~"^hotspot-to-wpa: " ];
 | 
						|
 | 
						|
:local Limits [ / caps-man access-list get $PlaceBefore ];
 | 
						|
:if (($Limits->"ap-tx-limit") > 0 && ($Limits->"client-tx-limit") > 0) do={
 | 
						|
  / caps-man access-list add comment=("hotspot-to-wpa: " . $UserName . ", " . $MacAddress . ", " . $Date) \
 | 
						|
      mac-address=$MacAddress private-passphrase=$PassWord ssid-regexp="-wpa\$" \
 | 
						|
      ap-tx-limit=($Limits->"ap-tx-limit") client-tx-limit=($Limits->"client-tx-limit") \
 | 
						|
      place-before=$PlaceBefore;
 | 
						|
} else={
 | 
						|
  / caps-man access-list add comment=("hotspot-to-wpa: " . $UserName . ", " . $MacAddress . ", " . $Date) \
 | 
						|
      mac-address=$MacAddress private-passphrase=$PassWord ssid-regexp="-wpa\$" place-before=$PlaceBefore;
 | 
						|
}
 |