| 
									
										
										
										
											2019-10-14 21:24:35 +02:00
										 |  |  | #!rsc | 
					
						
							|  |  |  | # RouterOS script: hotspot-to-wpa | 
					
						
							| 
									
										
										
										
											2020-01-01 17:00:39 +01:00
										 |  |  | # Copyright (c) 2019-2020 Christian Hesse <mail@eworm.de> | 
					
						
							| 
									
										
										
										
											2019-10-14 21:24:35 +02:00
										 |  |  | # | 
					
						
							|  |  |  | # add private WPA passphrase after hotspot login | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | :local MacAddress $"mac-address"; | 
					
						
							|  |  |  | :local UserName $username; | 
					
						
							|  |  |  | :local Date [ / system clock get date ]; | 
					
						
							|  |  |  | :local PassWord [ / ip hotspot user get [ find where name=$UserName ] password ]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | :local PlaceBefore [ / caps-man access-list find where comment="--- hotspot-to-wpa above ---" disabled ]; | 
					
						
							|  |  |  | :if ([ :len $PlaceBefore ] = 0) do={ | 
					
						
							|  |  |  |   :log error "Missing disabled access-list entry with comment '--- hotspot-to-wpa above ---'"; | 
					
						
							|  |  |  |   :error "Error: See log for details."; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | / caps-man access-list remove [ find where mac-address=$MacAddress comment~"^hotspot-to-wpa: " ]; | 
					
						
							| 
									
										
										
										
											2019-12-03 11:41:18 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | :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; | 
					
						
							|  |  |  | } |