| 
									
										
										
										
											2018-09-27 00:18:43 +02:00
										 |  |  | #!rsc | 
					
						
							| 
									
										
										
										
											2018-07-10 14:01:41 +02:00
										 |  |  | # RouterOS script: collect-wireless-mac%TEMPL% | 
					
						
							| 
									
										
										
										
											2018-07-05 15:29:26 +02:00
										 |  |  | # Copyright (c) 2013-2018 Christian Hesse <mail@eworm.de> | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # collect wireless mac adresses in access list | 
					
						
							|  |  |  | # | 
					
						
							| 
									
										
										
										
											2018-07-10 14:01:41 +02:00
										 |  |  | # !! This is just a template! Replace '%PATH%' with 'caps-man' | 
					
						
							| 
									
										
										
										
											2018-07-09 16:44:44 +02:00
										 |  |  | # !! or 'interface wireless'! | 
					
						
							| 
									
										
										
										
											2018-07-05 15:29:26 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | :global "identity"; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-09 15:50:37 +02:00
										 |  |  | :global SendNotification; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-09 16:44:44 +02:00
										 |  |  | :local "place-before" [ / %PATH% access-list find where comment="--- collected above ---" disabled ]; | 
					
						
							| 
									
										
										
										
											2018-07-05 15:29:26 +02:00
										 |  |  | :if ([ :len $"place-before" ] = 0) do={ | 
					
						
							|  |  |  |   :error "Missing disabled access-list entry with comment '--- collected above ---'"; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-09 16:44:44 +02:00
										 |  |  | :foreach regtbl in=[ / %PATH% registration-table find ] do={ | 
					
						
							|  |  |  |   :local mac [ / %PATH% registration-table get $regtbl mac-address ]; | 
					
						
							|  |  |  |   :local acclst [ :pick [ / %PATH% access-list find where mac-address=$mac ] 0 ]; | 
					
						
							| 
									
										
										
										
											2018-07-05 15:29:26 +02:00
										 |  |  |   :if ( [ :len $acclst ] = 0 ) do={ | 
					
						
							|  |  |  |     :local hostname "no dhcp lease"; | 
					
						
							|  |  |  |     :local address "no dhcp lease"; | 
					
						
							|  |  |  |     :local lease [ / ip dhcp-server lease find where mac-address=$mac ]; | 
					
						
							|  |  |  |     :if ( [ :len $lease ] > 0 ) do={ | 
					
						
							|  |  |  |       :set hostname [ / ip dhcp-server lease get $lease host-name ]; | 
					
						
							|  |  |  |       :set address [ / ip dhcp-server lease get $lease address ]; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     :if ( [ :len $hostname ] = 0 ) do={ | 
					
						
							|  |  |  |       :set hostname "no hostname"; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     :if ( [ :len $address ] = 0 ) do={ | 
					
						
							|  |  |  |       :set address "no address"; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-07-09 16:44:44 +02:00
										 |  |  |     :local regentry [ / %PATH% registration-table find where mac-address=$mac ]; | 
					
						
							|  |  |  |     :local interface [ / %PATH% registration-table get $regentry interface ]; | 
					
						
							| 
									
										
										
										
											2018-07-10 14:01:41 +02:00
										 |  |  |     :local ssid [ / caps-man registration-table get $regentry ssid ]; | 
					
						
							|  |  |  |     :local ssid [ / interface wireless get [ find where name=$interface ] ssid ]; | 
					
						
							| 
									
										
										
										
											2018-07-05 15:29:26 +02:00
										 |  |  |     :local datetime ([ / system clock get date ] . " " . [ / system clock get time ]); | 
					
						
							|  |  |  |     :local message ("unknown MAC address " . $mac . " (" . $hostname . ") first seen on " . \ | 
					
						
							|  |  |  |       $datetime . " connected to SSID " . $ssid . ", interface " . $interface); | 
					
						
							|  |  |  |     / log info $message; | 
					
						
							| 
									
										
										
										
											2018-07-09 16:44:44 +02:00
										 |  |  |     / %PATH% access-list add place-before=$"place-before" comment=$message mac-address=$mac disabled=yes; | 
					
						
							| 
									
										
										
										
											2018-11-27 14:08:14 +01:00
										 |  |  |     $SendNotification ($mac . " connected to " . $ssid) \ | 
					
						
							| 
									
										
										
										
											2018-10-09 15:50:37 +02:00
										 |  |  |       ("A device with unknown MAC address connected to " . $ssid . " on " . $identity . ".\n\n" . \ | 
					
						
							| 
									
										
										
										
											2018-07-05 15:29:26 +02:00
										 |  |  |         "Controller: " . $identity . "\n" . \ | 
					
						
							|  |  |  |         "Interface:  " . $interface . "\n" . \ | 
					
						
							|  |  |  |         "SSID:       " . $ssid . "\n" . \ | 
					
						
							|  |  |  |         "MAC:        " . $mac . "\n" . \ | 
					
						
							|  |  |  |         "Hostname:   " . $hostname . "\n" . \ | 
					
						
							|  |  |  |         "Address:    " . $address . "\n" . \ | 
					
						
							|  |  |  |         "Date:       " . $datetime); | 
					
						
							|  |  |  |   } else={ | 
					
						
							| 
									
										
										
										
											2018-07-09 16:44:44 +02:00
										 |  |  |     :local comment [ / %PATH% access-list get $acclst comment ]; | 
					
						
							| 
									
										
										
										
											2018-07-05 15:29:26 +02:00
										 |  |  |     :log debug ("MAC address " . $mac . " already known: " . $comment); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | } |