嗨,
如何找到我的共享主机解决方案所在的服务器IP?
发布于 2009-07-15 17:17:22
在命令行中使用:
nslookup www.mydomain.com发布于 2009-07-15 17:23:00
nslookup或ping (假设窗口):
C:\>ping -n 1 stackoverflow.com
Pinging stackoverflow.com [69.59.196.211] with 32 bytes of data:
Reply from 69.59.196.211: bytes=32 time=102ms TTL=106
Ping statistics for 69.59.196.211:
Packets: Sent = 1, Received = 1, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 102ms, Maximum = 102ms, Average = 102ms
C:\>nslookup stackoverflow.com
Server: someserver.com
Address: 192.168.2.1
Non-authoritative answer:
Name: stackoverflow.com
Address: 69.59.196.211用服务器的名称替换stackoverflow.com。如您所见,ip地址为69.59.196.211
发布于 2009-07-15 17:14:52
使用ping查找IP。
请注意,当通过浏览器等直接访问时,IP不一定要工作。
https://serverfault.com/questions/41146
复制相似问题