Como obter o endereço MAC dado um host ip no windows

0

Quando executo o ipconfig, recebo um endereço IP do host ethernet (10.27.1.13) e wireless (10.27.1.16).

Quando eu executo arp -a 10.27.1.13 ou arp -a 10.27.1.16 eu recebo 'No Arp entries found'.

Quando eu corro arp -a eu recebo

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

Estou tentando executar o arp -a 10.27.1.16 e obter um endereço mac para essa interface, mas ele diz 'no arp entries found'. Você sabe por que isso está acontecendo e qual é a solução?

    
por Mike 12.10.2016 / 23:54

1 resposta

0

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

Ler (isento de) 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.
    
por 13.10.2016 / 00:52