Windows

如何獲取 LAN 上所有 IP 地址(以及理想的設備名稱)的列表?

  • July 19, 2018

我們的網路出現 IP 地址衝突的錯誤,我想找出所有設備的 IP 地址是什麼。(我以前也需要那個)。(更新/澄清:我也在尋找基於 Windows 的。)

有什麼建議?

我已經閱讀了各種工具的建議(Look@Lan、Angry IP Scanner),我正在尋找使用過這些工具或其他工具的人的建議。

使用nmap掃描子網是我以前使用過的一種快速簡單的方法,各種選項也可以讓您進行更詳細的檢查。

如果網路上有 unix 機器,您可以嘗試 arp-scan:

ARP 掃描器 | Linux 手冊頁

$ arp-scan --interface=eth0 192.168.0.0/24
Interface: eth0, datalink type: EN10MB (Ethernet)
Starting arp-scan 1.4 with 256 hosts (http://www.nta-monitor.com/tools/arp-scan/)
192.168.0.1     00:c0:9f:09:b8:db       QUANTA COMPUTER, INC.
192.168.0.3     00:02:b3:bb:66:98       Intel Corporation
192.168.0.5     00:02:a5:90:c3:e6       Compaq Computer Corporation
192.168.0.6     00:c0:9f:0b:91:d1       QUANTA COMPUTER, INC.
192.168.0.12    00:02:b3:46:0d:4c       Intel Corporation
192.168.0.13    00:02:a5:de:c2:17       Compaq Computer Corporation
192.168.0.87    00:0b:db:b2:fa:60       Dell ESG PCBA Test
192.168.0.90    00:02:b3:06:d7:9b       Intel Corporation
192.168.0.105   00:13:72:09:ad:76       Dell Inc.
192.168.0.153   00:10:db:26:4d:52       Juniper Networks, Inc.
192.168.0.191   00:01:e6:57:8b:68       Hewlett-Packard Company
192.168.0.251   00:04:27:6a:5d:a1       Cisco Systems, Inc.
192.168.0.196   00:30:c1:5e:58:7d       HEWLETT-PACKARD
13 packets received by filter, 0 packets dropped by kernel
Ending arp-scan: 256 hosts scanned in 3.386 seconds (75.61 hosts/sec).  13
responded

引用自:https://serverfault.com/questions/10590