Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
Creating IP and MAC table
Name: Clark Date: June 29, 2000 at 09:55:30 Pacific
Comment:
How do i create a printable table listing the corresponding mac addresses with the computers IP addresses ? If possible, please reply to slice@cadvision.com
Name: Andrew Date: June 29, 2000 at 09:57:48 Pacific
Reply:
ipconfig /all command can be used to find IP and MAC from copmuter. But I suggest using the ARP command from the server.
0
Response Number 2
Name: Geoff Date: June 29, 2000 at 13:59:55 Pacific
Reply:
You could write a simple batch file that pings each IP (to cache for arp) then runs the arp command on that same IP and directs it to a file. For example:
ping 10.0.0.1 arp -a 10.0.0.1 >> trace.txt
Repeat for each IP you want and clean up the extraneous info in the trace file when its done.
Summary: Here we go: I have Site A that is a PDC NT 4.0 and Site B that has a BDC NT 4.0. Both sites have wins and mac services installed. Both sites is under the same domain. These sites are connected by Ci...
Summary: Use the ARP -a command in a DOS box. This will list IP and macs that are associated. You may need to 'touch' the MAC beforehand, maybe a ping sweep or even Network Neighborhood to get to the remote m...