Ways to Identify Where Your Server is Hosted

0
5
Asked By TechieExplorer89 On

I'm trying to track down some undocumented servers and figure out where they're hosted. For example, I found out that one of my servers is on our Apache server, but I'm unsure how to identify the hosting for others that I didn't know about. What are the best methods to discover their hosting information?

5 Answers

Answered By PowershellPal08 On

If you can access the server remotely, running a Powershell script could be helpful! Just checking if you have the ability to do that. It's also worth mentioning that, back in the day, an old trick to identify servers was to eject the CD-ROM tray to see if it was an actual server with a drive. Seems silly now, but it worked!

Answered By DataDiver56 On

For an internal server, you should try running an IP/port scan or checking the ARP tables. Investigate any unknown IPs manually. If it’s external, without a DNS name, you'll probably need to check invoices for all services to identify the provider. If you have a public IP, doing a reverse DNS lookup may show you the hosting provider.

Answered By NetworkNinja77 On

First off, could you clarify if these servers are internal or external? If they’re internal, the simplest thing to do is look up the IP address. That’ll show you where any domain name is routed, if applicable. Just be cautious, sometimes what you think is a server might actually be a border router, so you'll need to trace the routing from there.

Answered By NetworkScout42 On

When dealing with internal servers, checking the IP or MAC address on your switches is key. If it's external, searching for IP WHOIS data can reveal who owns that IP range, which is usually the hosting company. That's a reliable way to find out who's hosting your server.

Answered By NmapFanatic99 On

Have you tried using nmap or any network monitoring tools? They can help you generate a list of hosts and their MAC addresses. You could then check the MAC addresses against your switch tables to find out what port connects to them. If you have a toner probe, it can also help trace the cable without disconnecting it from the network.

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.