1.目前因为用户数量的原因,Windows 上的客户端比 Linux 好用得多,所以建议在 Windows 上安装 Clash 。
Widows Clash 客户端发布地址:
https://github.com/Fndroid/clash_for_windows_pkg/releases在上面的 URL 里,选择最新版的 [Clash.for.Windows.Setup.版本号.exe] 就行。
2.安装后,在主界面 General 里,打开 [Allow LAN] ,这样其他设备,比如 Windows 、Linux 、安卓等等,都可以通过 Socks 主动连接进来。
3.可以通过对 [clash-win64.exe] 设置防火墙,来建立白名单机制,只允许自己的设备的 IP 使用。寻找 [clash-win64.exe] 的路径,建议使用 Everything 。
4.Linux 如何使用搭建在 Windows 上的 Clash 的方式,假设 Windows 的 IP 为 1.2.3.4 ,端口为默认的 7890:
yum:
vim /etc/yum.conf
在[main]下面,添加:
proxy=http://1.2.3.4:7890
proxy_username=
proxy_password=
git:
git config --global http.proxy 'socks5://1.2.3.4:7890'
curl:
curl http://some.url --output some.file --proxy socks5://1.2.3.4:7890
pip:
建议先走阿里源:
pip install something -i
https://mirrors.aliyun.com/pypi/simple/不行的话,再走代理:
pip install something --proxy=http://1.2.3.4:7890
apt-get
如果没配置过代理,那么 [/etc/apt/apt.conf.d/proxy.conf] 这个文件是不存在的,然后进行新增:
vim /etc/apt/apt.conf.d/proxy.conf
Acquire::http::Proxy "http://1.2.3.4:7890/";
Acquire::https::Proxy "http://1.2.3.4:7890/";