How do I get a list of the active IP-addresses, MAC-addresses and NetBIOS names on the LAN?

前端 未结 5 1180
北恋
北恋 2021-01-06 09:42

How do I get a list of the active IP-addresses, MAC-addresses and NetBIOS names on the LAN?

I\'d like to get NetBIOS name, IP and MAC addresses for every host on the

5条回答
  •  既然无缘
    2021-01-06 10:04

    As Daren Thomas said, use nmap.

     nmap -sP 192.168.1.1/24
    

    to scan the network 192.168.1.*

     nmap -O 192.168.1.1/24
    

    to get the operating system of the user. For more information, read the manpage

     man nmap
    

    regards

提交回复
热议问题