Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How can I find out what machine has what MAC address?? 5

Status
Not open for further replies.
Feb 20, 2002
265
0
0
GB
Hi

How can I find out (without walking around every machine) the MAC addresses of its NIC??

Simon
 
FREEWARE -
Angry IP scanner:
a very fast and small IP scanner. It pings each IP address to check if it's alive, then optionally it is resolving hostname and tries to connect at specified in Options dialog box TCP port. The program uses separate threads for each scanned address to reduce scanning speed. It can also display NetBIOS information: computer name, workgroup, currently logged user and MAC address.

...search it out on the web
 
just create a .bat file with next script
will ping all computers
and at the end will do an `arp -a'
the time out is set to 30ms (enough for a LAN)


### START SCRIPT
@echo off
set MY_NET=192.168.101.
echo Just wait....

FOR /L %%i IN (1,1,254) DO echo . && ping -n 1 -w 30 %MY_NET%%%i > tmp.out
arp -a
### END __
___
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top