linux ubuntu下使用ss设置全局代理,命令行也走代理

通过proxychains实现

  • 安装 
    sudo apt-get install proxychains

  • 配置

编辑~/.proxychains/proxychains.conf

strict_chain
proxy_dns 
remote_dns_subnet 224
tcp_read_time_out 15000
tcp_connect_time_out 8000
localnet 127.0.0.0/255.0.0.0
quiet_mode

[ProxyList]
socks5  127.0.0.1 1080

最后的这个socks里的值写代理的ip,不一定是本机

  • 使用方法 
    命令前加上proxychains:
proxychains4 curl https://www.google.com/
proxychains4 git push origin master

 

你可能感兴趣的:(Linux)