在 Windows 中如何根据主机 ip 获取 mac 地址

在 Windows 中如何根据主机 ip 获取 mac 地址

当我运行 ipconfig 时,我得到了以太网(10.27.1.13)和无线(10.27.1.16)主机 ip 地址。

当我运行 arp -a 10.27.1.13 或 arp -a 10.27.1.16 时,我收到“未找到 Arp 条目”的信息。

当我运行 arp -a 时我得到

Interface: 10.27.1.16 --- 0xb
Internet Address      Physical Address      Type
  10.27.0.1             00-23-5e-56-82-7f     dynamic
  10.27.0.10            78-2b-cb-98-83-ce     dynamic


Interface: 10.27.1.13 --- 0xe
  Internet Address      Physical Address      Type
  10.27.0.1             00-23-5e-56-82-7f     dynamic
  10.27.0.10            78-2b-cb-98-83-ce     dynamic

我尝试运行 arp -a 10.27.1.16 并获取此接口的 mac 地址,但它显示“未找到 arp 条目”。您知道为什么会发生这种情况以及解决方案是什么吗?

答案1

arp -a -N 10.27.1.13
arp -a -N 10.27.1.16

阅读(免除)arp /?

ARP -a [inet_addr] [-N if_addr] [-v]

  -a            Displays current ARP entries by interrogating the current
                protocol data.  If inet_addr is specified, the IP and Physical
                addresses for only the specified computer are displayed.  If
                more than one network interface uses ARP, entries for each ARP
                table are displayed.
  -g            Same as -a.
  inet_addr     Specifies an internet address.
  -N if_addr    Displays the ARP entries for the network interface specified
                by if_addr.

相关内容