centos服务器设置全局http代理.md

centos 设置全局http代理

  • 打开配置文件
vi /etc/profile
  • 添加
# Proxy
export http_proxy="http://192.168.56.1:7890/"
export https_proxy=$http_proxy
export ftp_proxy=$http_proxy
  • 执行生效
source /etc/profile
  • 查看ip变化
curl ifconfig.io