How to check Active Linux machines in LAN.In ubuntu 12.04. Anyone knows please suggest me.
Asked
Active
Viewed 261 times
0
-
i want with OS info filter only LINUX machines.... – khanthegeek Apr 14 '15 at 13:52
-
possible duplicate of [How to find all the used IP addresses on a network](http://askubuntu.com/questions/224559/how-to-find-all-the-used-ip-addresses-on-a-network) – Eric Carvalho Apr 14 '15 at 21:19
1 Answers
2
You can use
Zenmap:sudo apt-get install zenmap
Zenmap contains the possibility to filter by operating system.
You can also use
nmapsudo apt-get install nmap sudo nmap -O --osscan-limit --max-os-tries 1 <your_ip_range>
using nmap you have to look for Linux.
A.B.
- 89,123
- 21
- 245
- 323
-
does it will give only linux machines,nmap -O --osscan-limit --max-os-tries 1
– khanthegeek Apr 15 '15 at 04:44 -
That's what I already wrote in my reply. `... There is the possibility to filter by operating system. ...` and `... There you have still looking for Linux. ...` – A.B. Apr 15 '15 at 08:26
-
@khanthegeek Were you satisfied with my answer? Then give me a upvote (∧). If I could solve your problem, then it would be nice if you'd mark my answer (✓). ;) – A.B. Apr 18 '15 at 14:52