[split-upload 2/6] f2fd4fa backup via proxy

This commit is contained in:
Simon
2026-08-11 14:16:24 +08:00
parent 268bf914ce
commit e54529d307
74 changed files with 5450 additions and 65 deletions
+10
View File
@@ -0,0 +1,10 @@
#!/usr/bin/env python3
"""测试 Dify DNS 解析"""
import socket
host = "yw-dify.dc.servyou-it.com"
try:
ip = socket.gethostbyname(host)
print(f"{host} -> {ip}")
except Exception as e:
print(f"DNS lookup failed: {e}")