美文网首页
git ssh代理设置

git ssh代理设置

作者: realguan | 来源:发表于2019-11-24 11:43 被阅读0次

终端代理设置

export {http,https,ftp}_proxy="http://user:pass@proxy:port/"
export https_proxy=$http_proxy HTTP_PROXY=$http_proxy HTTPS_PROXY=$http_proxy NO_PROXY=$no_proxy

wget设置代理

# wget代理配置
# 修改/etc/wgetrc或者~/.wgetrc
# 临时代理
wget -Y on -e "http_proxy=http://proxy:port" "www.wo.com.cn"

curl 设置代理

curl -x proxy:port www.wo.com.cn
 
# curl 使用sock5代理
# https://blog.emacsos.com/use-socks5-proxy-in-curl.html
curl --socks5-hostname 127.0.0.1:1086 www.google.com
curl --proxy socks5h://127.0.0.1:1086 www.google.com

git 设置代理

git config --global http.proxy 'socks5://127.0.0.1:1080'
git config --global https.proxy 'socks5://127.0.0.1:1080'
 
#只对github.com
git config --global http.https://github.com.proxy socks5://127.0.0.1:1080
#取消代理
git config --global --unset http.https://github.com.proxy)
 
git config --global --unset http.proxy
git config --global --unset https.proxy

ssh 代理

ssh -o ProxyCommand="nc -X 5 -x proxy.net:1080 %h %p" user@server.net
 
 
# ssh 代理配置
~/.ssh/config
Host *
    ProxyCommand nc -X 5 -x proxy.net:1080 %h %p
    
    
    
#使用SSH端口转发之后,TCP 端口 A 与 B 之间现在并不直接通讯,而是转发到了 SSH 客户端及服务端来通讯,从而自动实现了数据加密并同时绕过了防火墙的限制
ssh -g -f -N -L forwardingPort:targetIP:targetPort user@sshServerIP
ssh -f -N -R forwardingPort:targetIP:targetPort user@sshServerIP
 
ssh -NTL 9001:localhost:80 workspace
ssh -NTR 9001:localhost:8080 workspace



# 本地安装ss 实现workspace请求代理
# 本地执行
ssh -NTR 9001:localhost:1086 workspace
# ws上执行
curl --socks5-hostname 127.0.0.1:9001 www.google.com

nc命令

# https://linux.cn/article-9190-1.html
# nc连接
nc -v 127.0.0.1 8080
# nc监听
nc -l 8080
# nc做代理
nc -l 8080 | nc 192.168.1.200 80
# 代理  双向管道接受返回
mkfifo 2way
nc -l 8080 0<2way | nc 192.168.1.200 80 1>2way
nc -l 9001 0<2way | tee cap.log | nc 127.0.0.1 8888 1>2way

# 发送文件
nc -l  8080 > file.txt
nc 192.168.1.100 8080 --send-only < data.txt
# 端口转发
nc -u -l  80 -c  'nc -u -l 8080'
# 客户端关闭,服务端继续
nc -l -k 8080

printf "GET / HTTP/1.0\r\n\r\n" | nc 127.0.0.1 8080
printf "GET / HTTP/1.1\r\nHost: z\r\n\r\n" | nc 127.0.0.1 8080

网络工具
dig
nslookup

抓包工具
charles

Example
http代理端口5000,转发至5100
export http_proxy=127.0.0.1:5000
mkfifo 2way
nc -k -l 5000 0<2way | tee -a cap.log | nc 127.0.0.1 5100 1>2way
golang反向代理转发请求至5200
package main

import (
"log"
"net/http"
"net/http/httputil"
"net/url"
)

func init() {
log.SetFlags(log.LstdFlags | log.Lshortfile)
}

type Proxy struct {
p *httputil.ReverseProxy
}

func (p *Proxy) revert(w http.ResponseWriter, r *http.Request) {
p.p.ServeHTTP(w, r)
}

func newReverseProxy(target *url.URL) *httputil.ReverseProxy {
director := func(req *http.Request) {
req.URL.Scheme = target.Scheme
req.URL.Path = req.RequestURI
req.URL.Host = target.Host
}
return &httputil.ReverseProxy{Director: director}
}

func main() {
remote, _ := url.Parse("http://127.0.0.1:5200")
proxy := newReverseProxy(remote)

p := &Proxy{
    p: proxy,
}
http.HandleFunc("/", p.revert)

err := http.ListenAndServe(":5100", nil)
if err != nil {
    log.Println(err)
}

}

5200转发请求至8888
mkfifo 2wayB
nc -k -l 5200 0<2wayB | tee -a cap.log | nc 127.0.0.1 8888 1>2wayB
charles抓包工具监听8888,负责最后的代理请求

相关文章

  • 代理设置

    终端代理设置 wget设置代理 curl 设置代理 git 设置代理 ssh 代理 nc命令 网络工具 digns...

  • git ssh代理设置

    终端代理设置 wget设置代理 curl 设置代理 git 设置代理 ssh 代理 nc命令 网络工具dignsl...

  • gomod使用ssh地址的私库

    设置git配置http转ssh 设置go mod代理 设置不走代理的私库地址

  • git中设置代理强制转换协议

    设置git@走代理 修改~/.ssh/ssh_config 添加ProxyCommand nc -x 127.0....

  • Git 全局设置

    GIt指定公钥ssh-add ~/.ssh/id_rsa Git 全局设置git config --global ...

  • git设置及取消代理

    git设置及取消代理//首先,设置默认代理,也可以理解为清除代理 //设置代理

  • 2021-09-22

    Windows cmd 设置代理设置 HTTP 代理: socks5代理设置: 取消代理: Windows git...

  • Git 常用命令

    Git设置代理 Git分支操作 Git合并 Git 配置

  • GitHub设置网络代理

    查看git配置 设置代理 取消代理

  • git设置代理

    配置git 设置git代理(VPN复制代理命令里面有相关http://127.0.0.1:7890) 设置完之后下...

网友评论

      本文标题:git ssh代理设置

      本文链接:https://www.haomeiwen.com/subject/stlhwctx.html