how to get mac address of external IP in C# ? E.g I want to find mac address of \"204.13.153.34\" ?
Any ideas and code snippet is highly appreciated ? Thanks in Advance<
You should read about the Address Resolution Protocol.
You cannot determine the MAC address of a machine in a different network segment. With ARP you can figure out the MAC address for a given IP address if the machine happens to be in the same segment. Thats what the IP stack is doing. It asks the "net" via ARP who is resonsible for handing packets for an IP address, because the ethernet card does only know MAC addresses.