0
Got a weird one here.
I've got an IP address in my subnet that is alive and responds to ping
requests, but I can't figure out what device actually live at that address. I've tried a couple of IP scanners that usually list hostnames and open ports / services, I've tried connecting to that address via http, https, telnet, SSH, but nothing responds and I don't have anything in DNS at that address.
We have no records or documentation of any device existing at this address and I'm at a bit of a loss because I need to expand my DHCP range, and this address is in the way.
Anyone know of a better way to interrogate that address to figure out what it is?
Thanks!
EDIT: I don't really see how this is a duplicate since that other question is from a completely different case [He has data from Advanced IP Scanner and I don't, he's using VMs, and I'm not] and that thread also has no answer. But it doesn't really matter because I found the offending device due to some great advice and good utilities in this thread. Thanks everyone!
Find out the port it's connected to and follow the cable. – Seth – 2017-05-05T12:33:35.553
I'd be okay with that, but my network has like 25 different switches and poor documentation. Any suggestions on how I might go about figuring out where it's plugged in? – Catatonic27 – 2017-05-05T12:34:51.567
What is the result if you do
ping -a [ip address]
? It will attempt to resolve the ip address to a hostname. – LPChip – 2017-05-05T12:42:09.423If they're really just dumb switches there isn't much you can do. If they're managed switches you might be able to use some script to ask them for information. – Seth – 2017-05-05T12:46:36.363
1Ping the device by IP address, then do an
arp -a
from a command line to find out the MAC address. Put the first three octets of the MAC address in Google or an OUI search site and it will tell you the manufacturer of the NIC. It's possible to spoof this info but it may give you a clue. – LawrenceC – 2017-05-05T13:02:00.147In the marked duplicate there is a potential option of ping flooding the device and seeing which led is brightest to trace the network port, this will only work if your switch/hub has link activity indicators but is a tidy solution – Mokubai – 2017-05-05T15:11:13.893