Proxy 代理服务
条评论开启代理
ssh 开启 socks 代理
1 | nohup ssh -N -D 127.0.0.1:65500 node1 &>> /dev/null & |
GoProxy 代理工具
1 | curl -L https://mirrors.host900.com/https://raw.githubusercontent.com/snail007/goproxy/master/install_auto.sh | bash |
设置代理
1 | export http_proxy=http://your_ip_proxy:port/ |
wget 代理
设置 wget
的配置文件
For all users of the system via the /etc/wgetrc or for the user only with the ~/.wgetrc file:
use_proxy=on
http_proxy=127.0.0.1:8080
https_proxy=127.0.0.1:8080
or via -e options placed after the URL:wget … -e use_proxy=on -e http_proxy=127.0.0.1:8080 …
- 本文链接:https://blog.charjin.top/2022/08/21/linux/linux-proxy/
- 版权声明:本博客所有文章除特别声明外,均采用 CC BY-NC-SA 3.0 CN 许可协议。转载请注明出处!
分享