push
代码到GitHub
出现报错,但是ping google
和github
都是正常的。push
报错如下:git push origin main
kex_exchange_identification: Connection closed by remote host
Connection closed by 198.18.0.21 port 22
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
git push origin main
上传代码。就是正常的。git push origin main
Everything up-to-date
ping google
和github
就是会超时,无法连接。ping google
和github
都是正常。那么为什么无法 push 到 GitHub 呢?好迷惑。Shadowrocket 会和 iOS 上面的一样,只要规则内的网站都会走代理流量。 1
tonytonychopper 339 天前
是不是你之前本地的代理端口号没有改?
|
2
sky96111 339 天前
ping 是 ICMP 流量,不会被代理转发,198.18.0.0/21 是 TUN/增强模式的 fake-ip 的地址段,是本机的地址,能 ping 通这个地址并不代表你能正常通过代理访问外网。
问题 2 同理,代理没有工作在 fake-ip 模式下,所以 ping 不通是正常的。 |
3
lostberryzz 339 天前 1
猜测你的机场屏蔽了落地机到 22 端口的连接,这是很多机场的一贯作坊,防止你通过机场的 IP 去扫描爆破。而小火箭接管了所有流量导致 git push 用不了,而用 CFW 终端走的是直连自然可以用。
另外 tun 模式下,ping google 和 github 都返回的是 fake ip ,并不代表真的能 ping 通。 开小火箭不能 git push ,解决办法是修改 git config ,让 github 走 443 端口,https://docs.github.com/en/authentication/troubleshooting-ssh/using-ssh-over-the-https-port |