将所有代理指向目的代理地址:

在终端执行
export all_proxy=socks5://127.0.0.1:1086
或者
export http_proxy=socks5://127.0.0.1:1086
export https_proxy=socks5://127.0.0.1:1086

将其设置在环境中,使用bash命令开启

  1. 编辑配置文件

在终端执行 vi ~/.bash_profile

  1. 在配置文件中添加如下代码
  1. function proxy_on(){
  2. export http_proxy=http://127.0.0.1:1086
  3. export https_proxy=http://127.0.0.1:1086
  4. echo -e "已开启代理"
  5. }
  6. function proxy_off(){
  7. unset http_proxy
  8. unset https_proxy
  9. echo -e "已关闭代理"
  10. }
  1. 启动代理在终端执行proxy_on;关闭代理在终端执行proxy_off

检查代理是否成功

curl cip.cc