09-29-2010, 01:11 PM
If you suspect someone to be using your WiFi, run a quick nmap scan to see who's on your network.
Linux:
Windows:
You can download a program called "Zenmap" it's an nmap GUI or just install nmap CLI under windows and run:
-sP = Ping scan, it'll just tell you who's online.
192.168.2.1 = Your routers IP
/24 = Your whole class C network
| grep = Just filters the 192 address' (IPs) so you don't have to read a load of crap.
Any probs, post or PM me.
Linux:
Code:
nmap -sP 192.168.2.1/24 | grep 192
Windows:
You can download a program called "Zenmap" it's an nmap GUI or just install nmap CLI under windows and run:
Code:
nmap -sP 192.168.2.1/24
-sP = Ping scan, it'll just tell you who's online.
192.168.2.1 = Your routers IP
/24 = Your whole class C network
| grep = Just filters the 192 address' (IPs) so you don't have to read a load of crap.
Any probs, post or PM me.