fbpx

首页 » Linux » 正文

Linux命令行设置代理

1.设置快捷命令

vi ~/.bashrc

按 i 键进入 input 模式,粘贴:

alias sss='export http_proxy=http://192.168.1.190:1080 && export https_proxy=https://192.168.1.190:1080'

alias ssd='unset http_proxy && unset https_proxy'

:wq 保存退出

2.启用快捷命令

source ~/.bashrc

3.启动代理

sss

4.关闭代理

ssd

5.查看已开启的代理

env | grep -i proxy

发表评论

Captcha Code