仅仅通过本地改 hosts, 或者切换 443 ssh.github.com, 很多时候已经无能为力了。
有什么好的简便的方法 使用海外主机作为跳板机,端口转发之类的技术, 让本地提交 github 代码更加顺畅?
已经可以通过 ssh 端口转发,让浏览器走海外服务器出去。
比如:
ssh -N -f -L LOCAL_PORT:REMOTE_HOST:PORT -o TCPKeepAlive=yes
然后本地走 local 的 LOCAL_POST ,数据就可以从 REMOTE_HOST 出去?
不过不知道本地的 git 如何配置才行,shell 设置 proxy 不管用。
1
devliu1 2023-09-03 14:13:36 +08:00
搜索 ssh proxycommand
|
2
coolcoffee 2023-09-03 15:31:49 +08:00
vim ~/.ssh/config:
Host github.com IdentityFile ~/.ssh/id_rsa ProxyCommand nc -X 5 -x 127.0.0.1:7890 %h %p 127.0.0.1:7890 是本地的 socks5 proxy 。IdentityFile 和 ProxyCommand 是有缩进的。 |
3
coolcoffee 2023-09-03 15:34:15 +08:00
楼主可以在远程 server 用 gost 启动一个 socks5 server ,然后 ssh forward 到本地。但是 ssh forward 容易断,并且流量大了也容易限流。
|
4
hxy100 2023-09-03 15:58:03 +08:00
楼上两位正解
|
5
ncepuzs 2023-09-03 16:06:52 +08:00
|
6
yagamil OP @coolcoffee @devliu1 ,谢谢,用上了。给大佬点赞。
|