前言#
我在 Windows 環境下的 Tailscale 一直有一個問題,如果 Clash Meta 以系統代理啟動的時候 Tailscale 會一直卡登入,在終端模式下也會報錯
fetching latest tailscale version: Get "https://pkgs.tailscale.com/stable/?mode=json&os=windows": read tcp 192.168.3.5:9594->199.38.181.239:443: wsarecv: An existing connection was forcibly closed by the remote host.
但是在 TUN 模式下是正常使用的。
解決方案#
查找了一下 Tailscale 的文檔,文檔中指出可以自定義 Environment variables,方法很簡單
- 在 Tailscale 的程序目錄(C:\ProgramData\Tailscale)中創建 tailscaled-env.txt 文件。
- 在 tailscaled-env.txt 文件中,您可以設置環境變量。例如,更改默認的 UDP 監聽端口)。
https_proxy=http://127.0.0.1:7897
http_proxy=http://127.0.0.1:7897
all_proxy=socks5://127.0.0.1:7897
- 保存文件並運行
net stop Tailscale
、net start Tailscale
以應用更改。
其他問題#
不知道會不會影響打洞,但是我目前用下來是可以的,如果您有更好的辦法,歡迎指出