- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Getting IP address from Mac address?
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-19-2002 09:21 PM
тАО12-19-2002 09:21 PM
Getting IP address from Mac address?
I have an ethernet H/W address of a server.
How can I find out the IP address of the same,
without loging into the server?
Will 'rarpc' help?
Thanks
R.Mahendran.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-19-2002 09:42 PM
тАО12-19-2002 09:42 PM
Re: Getting IP address from Mac address?
#arp -a |grep
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-19-2002 09:42 PM
тАО12-19-2002 09:42 PM
Re: Getting IP address from Mac address?
# arp -a | grep
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-19-2002 09:51 PM
тАО12-19-2002 09:51 PM
Re: Getting IP address from Mac address?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-19-2002 10:06 PM
тАО12-19-2002 10:06 PM
Re: Getting IP address from Mac address?
As Michael says, machine has to be in same subnet, otherwise i haven't seen any method to find IP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-19-2002 10:10 PM
тАО12-19-2002 10:10 PM
Re: Getting IP address from Mac address?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-19-2002 10:15 PM
тАО12-19-2002 10:15 PM
Re: Getting IP address from Mac address?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-19-2002 10:17 PM
тАО12-19-2002 10:17 PM
Re: Getting IP address from Mac address?
Say you are in a windows 98 machine with IP address 90.0.0.1 and your server IP address is 90.0.0.50. Then to find out etherne H/W address.
c:\>ping 90.0.0.50
Then
c:\>arp -a | find "90.0.0.50"
IF you are in a windows machine in 100.0.0.0 network with IP address 100.0.0.1 and your network and server's network is connected by a router.
1) you will have to login to the router and execute the command.
Cisco router>ping 90.0.0.50
Cisco router>show arp | include 90.0.0.50
or
2)you will have to login in another unix server in 90.0.0.0 network. say 90.0.0.25
server2#ping 90.0.0.50
server2#arp -a | grep "90.0.0.50"
regards,
U.SivaKumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-19-2002 10:34 PM
тАО12-19-2002 10:34 PM
Re: Getting IP address from Mac address?
Try this, but make sure that you are in the same subnet.
ping 10.0.1.0
You should get replies from all hosts!!
then go your arp -a|grep "hw address"
Again, some host may not respond to ping!
Quite difficult to find out in that case.
Hope this helps!
Best Regards
Yogeeraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-19-2002 10:38 PM
тАО12-19-2002 10:38 PM
Re: Getting IP address from Mac address?
Try this, but make sure that you are in the same subnet.
ping 10.0.1.0
You should get replies from all hosts!!
then go your arp -a|grep "hw address"
Again, some host may not respond to ping!
Quite difficult to find out in that case.
Hope this helps!
Best Regards
Yogeeraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-20-2002 07:32 AM
тАО12-20-2002 07:32 AM
Re: Getting IP address from Mac address?
A sniffer on the network will also find it fairly quickly if it ever does any talking.
A DHCP server if used on the network might know the ip address.
Another cruder way is to ask the switch what port the device is on and follow the cable back to desktop then do ipconfig, winipcfg or whatever is appropriate for the OS.
Ron