user484457
user484457

Reputation: 4811

how to find the mac address of DNS server?

how can i find the mac address of DNS server?

Upvotes: 1

Views: 8969

Answers (3)

Khokhar
Khokhar

Reputation: 685

if you know the IP address of the server then write arp -a <server_IP_address> in command prompt to get MAC address of the Server.

Otherwise follow the steps below.

1. Opens the DOS command prompt (write cmd in Run window) 

2. Enter "ping <server_name>" into the command prompt. It will return your server's IP address. 

3. Type "arp -a <server_IP_address>" into the command prompt. This will return server's MAC/Physical address.

Cheers,

Upvotes: 2

Eugene Yarmash
Eugene Yarmash

Reputation: 149796

You can use arp (available in most OS) or arping utilities.

Upvotes: 0

Richard Fawcett
Richard Fawcett

Reputation: 2809

If you're on Windows, try typing arp -a which lists the IP addresses and MAC addresses that your PC knows about.

Upvotes: 2

Related Questions