Linux下常用开发工具启用socks5代理

1 git + socks5

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
# ~/.ssh/config
# 在需要的host下设定
ProxyCommand connect-proxy -5 -R remote -S ip:port %h %p
# ~/.ssh/config # 在需要的host下设定 ProxyCommand connect-proxy -5 -R remote -S ip:port %h %p
# ~/.ssh/config
# 在需要的host下设定
ProxyCommand connect-proxy -5 -R remote -S ip:port %h %p

2 Maven + http

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
# ~/.m2/settings.xml
<proxies>
<proxy>
<id>nexus</id>
<active>true</active>
<protocol>http</protocol>
<username></username>
<password></password>
<host>ip</host>
<port>port</port>
<nonProxyHosts>127.0.0.1</nonProxyHosts>
</proxy>
</proxies>
# ~/.m2/settings.xml <proxies> <proxy> <id>nexus</id> <active>true</active> <protocol>http</protocol> <username></username> <password></password> <host>ip</host> <port>port</port> <nonProxyHosts>127.0.0.1</nonProxyHosts> </proxy> </proxies>
# ~/.m2/settings.xml
 <proxies>
        <proxy>
              <id>nexus</id>
              <active>true</active>
              <protocol>http</protocol>
              <username></username>
              <password></password>
              <host>ip</host>
              <port>port</port>
              <nonProxyHosts>127.0.0.1</nonProxyHosts>
         </proxy>
    </proxies>

3 terminal设置代理

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
alias setproxy='export ALL_PROXY=socks5://ip:port'
alias unsetproxy='unset ALL_PROXY'
alias setproxy='export ALL_PROXY=socks5://ip:port' alias unsetproxy='unset ALL_PROXY'
alias setproxy='export ALL_PROXY=socks5://ip:port'
alias unsetproxy='unset ALL_PROXY'

 

 

 

Leave a Reply

Your email address will not be published. Required fields are marked *