V2EX = way to explore
V2EX 是一个关于分享和探索的地方
Sign Up Now
For Existing Member  Sign In
kbm1422
V2EX  ›  macOS

请教一个 MAC OS X 下大家都是怎么设置 Terminal 代理的

  •  
  •   kbm1422 · Jan 7, 2016 · 13009 views
    This topic created in 3764 days ago, the information mentioned may be changed or developed.

    例如我想用 Python 自动发邮件,,但是 STMP 是 Gmail 。

    我已经有 Shdowsocks 代理并且设置了全局代理,,还是不行。

    11 replies    2016-01-08 12:45:25 +08:00
    hrzhm
        1
    hrzhm  
       Jan 7, 2016
    #!/bin/sh

    cat <<EOF >> ~/.bash_profile
    #
    function start_tuproxy {
    export http_proxy=''
    export HTTPS_PROXY=''
    }

    function stop_tuproxy {
    export http_proxy=
    export HTTPS_PROXY=
    }
    EOF
    halfcrazy
        2
    halfcrazy  
       Jan 7, 2016
    proxychains4
    Starduster
        3
    Starduster  
       Jan 7, 2016
    proxychains4+sslocal
    publicAdmin
        4
    publicAdmin  
       Jan 7, 2016
    proxychains4+sslocal +1
    RqPS6rhmP3Nyn3Tm
        5
    RqPS6rhmP3Nyn3Tm  
       Jan 7, 2016 via Android
    @halfcrazy El Capitan 有不关 SIP 也可以使用的方法吗?
    kifile
        7
    kifile  
       Jan 7, 2016   ❤️ 1
    export all_proxy=socks5://127.0.0.1:1080
    xpol
        8
    xpol  
       Jan 8, 2016
    function proxy {
    case $1 in
    [1-9]*)
    export http_proxy=socks5://127.0.0.1:$1
    export https_proxy=$http_proxy
    git config --global http.proxy $http_proxy
    git config --global https.proxy $https_proxy
    ;;

    off)
    unset http_proxy
    unset https_proxy
    git config --global --unset http.proxy
    git config --global --unset https.proxy
    ;;

    la|lantern)
    export http_proxy=http://127.0.0.1:8787
    export https_proxy=$http_proxy
    git config --global http.proxy $http_proxy
    git config --global https.proxy $https_proxy
    ;;

    ss|shadowsocks)
    export http_proxy=socks5://127.0.0.1:1080
    export https_proxy=$http_proxy
    git config --global http.proxy $http_proxy
    git config --global https.proxy $https_proxy
    ;;

    pr|privoxy)
    export http_proxy=http://127.0.0.1:8118
    export https_proxy=$http_proxy
    git config --global http.proxy $http_proxy
    git config --global https.proxy $https_proxy
    ;;

    "")
    echo usage: proxy [port\|ss\|shadowsocks\|la\|lantern\|off]
    ;;
    esac

    echo http_proxy=$http_proxy
    echo https_proxy=$https_proxy
    }
    orcusfox
        9
    orcusfox  
       Jan 8, 2016
    其实只要
    http_proxy=socks5://host:port 命令
    就可以让这条命令走代理了 http 代理也行
    RqPS6rhmP3Nyn3Tm
        10
    RqPS6rhmP3Nyn3Tm  
       Jan 8, 2016
    @187j3x1 谢谢,发现不是 SIP 的锅,其他程序代理都正常,就是 brew 特别慢, update 至少十分钟
    RqPS6rhmP3Nyn3Tm
        11
    RqPS6rhmP3Nyn3Tm  
       Jan 8, 2016
    Yosemite 正常,升级 El Capitan 之后 brew 基本属于不能用的状态
    About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   1091 Online   Highest 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 48ms · UTC 22:44 · PVG 06:44 · LAX 15:44 · JFK 18:44
    ♥ Do have faith in what you're doing.