查看本机外网域名通常指的是获取本机在互联网上的公共IP地址,并尝试解析该IP地址对应的域名。这通常用于确认本机在网络上的位置,或者用于某些需要公网IP的场景。
https://www.whatismyip.com/
。nslookup
或 dig
)查询该IP地址对应的域名。原因:
解决方法:
原因:
解决方法:
8.8.8.8
(Google DNS)。以下是一个使用Python获取外网IP地址并查询对应域名的示例代码:
import requests
import socket
def get_public_ip():
response = requests.get('https://api.ipify.org')
return response.text
def get_domain_from_ip(ip):
try:
return socket.gethostbyaddr(ip)[0]
except socket.herror:
return "No domain found"
public_ip = get_public_ip()
domain = get_domain_from_ip(public_ip)
print(f"Public IP: {public_ip}")
print(f"Domain: {domain}")
希望这些信息对你有所帮助!
领取专属 10元无门槛券
手把手带您无忧上云