“域名被墙”通常指的是某个域名在中国大陆地区无法通过正常的网络访问。这可能是由于该域名被网络审查系统(如中国的防火长城)屏蔽,或者是由于域名解析服务提供商的问题。
以下是一个简单的Python脚本,用于检查某个域名是否可以访问:
import requests
def check_domain(domain):
try:
response = requests.get(f'http://{domain}', timeout=5)
if response.status_code == 200:
print(f'{domain} is accessible.')
else:
print(f'{domain} is not accessible. Status code: {response.status_code}')
except requests.RequestException as e:
print(f'{domain} is not accessible. Error: {e}')
# 示例使用
check_domain('example.com')
请注意,使用代理或VPN可能违反某些地区的网络使用规定,使用时请确保遵守当地法律法规。
领取专属 10元无门槛券
手把手带您无忧上云