青鸟衔书 (@qiangxinglin) 在 Tailscale 和 阿里云DNS 水土不服的解法 中发帖
最近新购了一台ECS服务器,遇到了这个问题,参考网上的帖子做个问题分析。
问题复现
curl -fsSL https://tailscale.com/install.sh | sh
tailscale up
nslookup baidu.com卡住无响应
追根溯源
> cat /etc/resolv.conf
nameserver 100.100.2.136
nameserver 100.100.2.138
> iptables -S | grep ts
-N ts-input
-N ts-forward
-A INPUT -j ts-input
-A FORWARD -j ts-forward
-A ts-input -s 100.64.0.0/10 ! -i tailscale0 -j DROP
-A ts-input -i tailscale0 -j ACCEPT
-A ts...