如何在`centos`中用命令行设置`代理`
首先我们需要用到代理ip及端口
打开网站`https://ip.jiangxianli.com/?page=1`
然后选一个ip及端口号
比如`18.162.45.214:80`
我们可以用`telnet`来测试代理服务器是否可用
>telnet 18.162.45.214 80
Trying 18.162.45.214...
Connected to 18.162.45.214.
Escape character is '^]'.
在设置代理之前,我们先来看下当前的`ip`
root@pve /root# `curl myip.ipip.net`
当前 IP:117.143.127.236 来自于:中国 上海 上海 移动
接着我们来设置代理
>root@pve /root# export https_proxy="https://18.162.45.214:80"
root@pve /root# export http_proxy="http://18.162.45.214:80"
再来看下`ip`是否发生变化
root@pve /root# `curl myip.ipip.net`
当前 IP:18.162.45.214 来自于:中国 香港 amazon.com
说明代理设置成功