Need help with IP and MAC addresses


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Need help with IP and MAC addresses
# 1  
Old 01-30-2009
Need help with IP and MAC addresses

Hi,
i am working on a project where i have to write a script to find out MAC addresses of the systems with given IP address.
Can anybody tell me which command i can use to find MAC address if you know IP address of the machine.
Thanks

Last edited by manmeet; 01-30-2009 at 05:49 PM..
# 2  
Old 01-30-2009
User with root privileges:

ifconfig -a

Should give you ip address and mac address for all interfaces in your system.
# 3  
Old 01-30-2009
Yes, i tried this one. but it gives me information (including MAC address) of ethernet interfaces only. but there are number of systems connected to it having ip address for e.g. 192.147.0.1 - 192.147.0.20 , 20 systems altogether. and i need to find MAC address for them individually...any help would be appreciated..
Thanks
# 4  
Old 01-30-2009
Probably worth having a look here
# 5  
Old 01-30-2009
Try 'arp -a'.
# 6  
Old 01-30-2009
i checked arp -a it worked but fetching only systems present in my subnet. how to fetch info about everything?? is there a different command for it??
Login or Register to Ask a Question

Previous Thread | Next Thread

5 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Script getting IP's and MAC addresses

Hy over there, Lets make it simple :) Using a bash script, how to grep only the ip address and the mac address and put them in a file:. for example from the dhcp.conf file we got such things: The script will end up with two columns IP's and MAC adresses as it is showed below: ... (9 Replies)
Discussion started by: hermouche
9 Replies

2. Shell Programming and Scripting

Don't see my mac addresses of my devices

I have a problem with a script , i want to see my devices there are up in my network. I want as output the ip addresses of the devices and also the mac address but I only had the ip addresses #!/bin/bash while ] do -mac) Extension=5 shift mac=$1 shift ;; esac... (1 Reply)
Discussion started by: Roggy
1 Replies

3. UNIX for Dummies Questions & Answers

Difference between Mac and IP addresses

If a web search is done on this topic there are many links but no information included in the documents. So my questions are; Why does a NIC card have it's own permanent ID. Why can't it share the host name? An ID is an ID. Why does a computer need two ways to ID it. If the network... (3 Replies)
Discussion started by: theKbStockpiler
3 Replies

4. UNIX for Dummies Questions & Answers

Help extracting MAC addresses from List

Hello all. I have a large number of text files outputted from various Netstumbler Wireless Scans; from which I need to extract the MAC addresses of the various Access Points. The Text files look like this: # $Creator: Network Stumbler Version 0.4.0 # $Format: wi-scan summary with... (9 Replies)
Discussion started by: dhs23
9 Replies

5. UNIX for Dummies Questions & Answers

Mac addresses of NICs (why are they the same)

I am training to be support on our solaris based network and was wondering why solaris seems to assign the same mac address to all NICs placed in the machine regardless of how many NICs are in there, when i do a ifconfig -a all nics have same MAC. Presumably this is a feature and there is... (1 Reply)
Discussion started by: hcclnoodles
1 Replies
Login or Register to Ask a Question