linux 终端 快速设置代理 2020-02-11 默认分类 暂无评论 1469 次阅读 1、 在~/.bash_profile 文件中,添加如下代码: ``` function proxy_off(){ unset http_proxy unset https_proxy unset ftp_proxy unset rsync_proxy echo -e "已关闭代理" } function proxy_on() { export no_proxy="localhost,127.0.0.1,localaddress,.localdomain.com" export http_proxy="http://127.0.0.1:1087"#注意,根据自己的配置设置有可能会是1080或1086 export https_proxy=$http_proxy export ftp_proxy=$http_proxy export rsync_proxy=$http_proxy export HTTP_PROXY=$http_proxy export HTTPS_PROXY=$http_proxy export FTP_PROXY=$http_proxy export RSYNC_PROXY=$http_proxy echo -e "已开启代理" } ``` 2.执行source ~/.bash_profile,使其立刻生效。 3.需要使用代理时开启ss全局模式,然后打开终端,输入proxy_on就会启动。如果需要关闭,只需要输入proxy_off。 4.如果出现 command not found: XX先执行source ~/.bash_profile,再执行XX 作者:sky_kYU 链接:https://www.jianshu.com/p/db3964292b1c 来源:简书 著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。 标签: linux 转载请注明文章来源 本作品采用 知识共享署名-相同方式共享 4.0 国际许可协议 进行许可。
评论已关闭