封闭脑袋

零落残魂何处断

Linux代理终端

# 查看终端ip
curl ipinfo.io
curl cip.cc #国内地址?
curl ip.gs
  1. 方法一仅在当前终端有效
    • export http_proxy=http://proxyAddress:port
    • 如:export http_proxy=http://127.0.0.1:7890
    • 和:export https_proxy=http://127.0.0.1:7890
    • 或:export http_proxy=http://192.168.167.204:3067
    • 和:export https_proxy=http://192.168.167.204:3067
  2. 方法二,永久保存把代理服务器地址写入shell配置文件.bashrc或者.zshrc
    • 如:
    export http_proxy="http://localhost:port" export https_proxy="http://localhost:port"export http_proxy="socks5://127.0.0.1:1080" export https_proxy="socks5://127.0.0.1:1080"
    • 或者干脆直接设置ALL_PROXY
    export ALL_PROXY=socks5://127.0.0.1:1080
    • 最后 source ~/.bashrc

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注