| How to Find Server Name From An URL |
|
If your boss or colleague ask you to find out the server name from an URL how would you do it? For example you will need to find the Server name that host the site test.example.org so that someone else could do some work on it. Here's how: 1. First Click on Start -> Run -> Type in CMD to open Command Prompt. 2. Next ping the URL to the get the IP of the server that host the query site. ------------------------------------------------------------------ Pinging test.example.org [192.172.41.65] with 32 bytes of data: Reply from 192.172.41.65: bytes=32 time=40ms TTL=116 Ping statistics for 192.172.41.65: 3. Now use nbtstat -A command to find out the server name. H:\>nbtstat -A 192.172.41.65 Local Area Connection: NetBIOS Remote Machine Name Table Name Type Status MAC Address = 00-0C-29-6C-0E-5A
|