0

How to check Active Linux machines in LAN.In ubuntu 12.04. Anyone knows please suggest me.

1 Answers1

2
  1. You can use Zenmap:

    sudo apt-get install zenmap
    

Zenmap contains the possibility to filter by operating system.

  1. You can also use nmap

    sudo 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.
  • 92,125