https://cherysunzhang.com/2020/05/deploy-clash-as-transparent-proxy-on-raspberry-pi/ 先附上我的链接占个坑
树莓派与clash
· One min read
以 VMware 为示范
首先配置桥接网络,然后配置静态网络
然后进行以下命令
export https_proxy=https://192.168.1.102:10809
export http_proxy=http://192.168.1.102:10809
对于 git
,配置命令如下
git config --global http.proxy http://192.168.1.102:10809
git config --global https.proxy https://192.168.1.102:10809
git config --global --unset http.proxy
git config --global --unset https.proxy