国产 无码 综合区,色欲AV无码国产永久播放,无码天堂亚洲国产AV,国产日韩欧美女同一区二区

【github】Connection reset by 20.205.243.160 port 443

這篇具有很好參考價值的文章主要介紹了【github】Connection reset by 20.205.243.160 port 443。希望對大家有所幫助。如果存在錯誤或未考慮完全的地方,請大家不吝賜教,您也可以點擊"舉報違法"按鈕提交疑問。

被github正確的ip和443端口拒絕

  • 經(jīng)常出現(xiàn):
zhangbin@LAPTOP-DFV9CMRA MINGW64 /g/CDN/net/libuv-dev/net_uv_new-kcp-imui-gl (main)
$ git push origin main
Connection reset by 20.205.243.160 port 443
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

檢查: ssh -vT git@github.com

zhangbin@LAPTOP-DFV9CMRA MINGW64 /g/CDN/net/libuv-dev/net_uv_new-kcp-imui-gl (main)
$ git push origin main
Connection reset by 20.205.243.160 port 443
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

zhangbin@LAPTOP-DFV9CMRA MINGW64 /g/CDN/net/libuv-dev/net_uv_new-kcp-imui-gl (main)
$ ssh -vT git@github.com
OpenSSH_9.1p1, OpenSSL 1.1.1s  1 Nov 2022
debug1: Reading configuration data /c/Users/zhangbin/.ssh/config
debug1: /c/Users/zhangbin/.ssh/config line 3: Applying options for github.com
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: Connecting to ssh.github.com [20.205.243.160] port 443.
debug1: Connection established.
debug1: identity file /c/Users/zhangbin/.ssh/id_rsa type 0
debug1: identity file /c/Users/zhangbin/.ssh/id_rsa-cert type -1
debug1: identity file /c/Users/zhangbin/.ssh/id_ecdsa type -1
debug1: identity file /c/Users/zhangbin/.ssh/id_ecdsa-cert type -1
debug1: identity file /c/Users/zhangbin/.ssh/id_ecdsa_sk type -1
debug1: identity file /c/Users/zhangbin/.ssh/id_ecdsa_sk-cert type -1
debug1: identity file /c/Users/zhangbin/.ssh/id_ed25519 type -1
debug1: identity file /c/Users/zhangbin/.ssh/id_ed25519-cert type -1
debug1: identity file /c/Users/zhangbin/.ssh/id_ed25519_sk type -1
debug1: identity file /c/Users/zhangbin/.ssh/id_ed25519_sk-cert type -1
debug1: identity file /c/Users/zhangbin/.ssh/id_xmss type -1
debug1: identity file /c/Users/zhangbin/.ssh/id_xmss-cert type -1
debug1: identity file /c/Users/zhangbin/.ssh/id_dsa type -1
debug1: identity file /c/Users/zhangbin/.ssh/id_dsa-cert type -1
debug1: Local version string SSH-2.0-OpenSSH_9.1
debug1: Remote protocol version 2.0, remote software version babeld-4b034cc8
debug1: compat_banner: no match: babeld-4b034cc8
debug1: Authenticating to ssh.github.com:443 as 'git'
debug1: load_hostkeys: fopen /c/Users/zhangbin/.ssh/known_hosts2: No such file or directory
debug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts: No such file or directory
debug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts2: No such file or directory
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: algorithm: curve25519-sha256
debug1: kex: host key algorithm: ssh-ed25519
debug1: kex: server->client cipher: chacha20-poly1305@openssh.com MAC: <implicit> compression: none
debug1: kex: client->server cipher: chacha20-poly1305@openssh.com MAC: <implicit> compression: none
debug1: expecting SSH2_MSG_KEX_ECDH_REPLY
Connection reset by 20.205.243.160 port 443

看起來dns是對的

zhangbin@LAPTOP-DFV9CMRA MINGW64 /g/CDN/net/libuv-dev/net_uv_new-kcp-imui-gl (main)
$  nslookup github.com 8.8.8.8
Non-authoritative answer:
Server:  dns.google
Address:  8.8.8.8

Name:    github.com
Address:  20.205.243.166


zhangbin@LAPTOP-DFV9CMRA MINGW64 /g/CDN/net/libuv-dev/net_uv_new-kcp-imui-gl (main)
$ nslookup ssh.github.com 8.8.8.8
Non-authoritative answer:
Server:  dns.google
Address:  8.8.8.8

Name:    ssh.github.com
Address:  20.205.243.160


全局proxy不行

zhangbin@LAPTOP-DFV9CMRA MINGW64 /g/CDN/net/libuv-dev/net_uv_new-kcp-imui-gl (main)
$ export https_proxy=http://127.0.0.1:7890
export http_proxy=http://127.0.0.1:7890
export all_proxy=socks5://127.0.0.1:7891


zhangbin@LAPTOP-DFV9CMRA MINGW64 /g/CDN/net/libuv-dev/net_uv_new-kcp-imui-gl (main)
$

zhangbin@LAPTOP-DFV9CMRA MINGW64 /g/CDN/net/libuv-dev/net_uv_new-kcp-imui-gl (main)
$ git push -u origin main
Connection reset by 20.205.243.160 port 443
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

加了git的proxy 不行

$ git config --global http.proxy "socks5://127.0.0.1:7891"
git config --global https.proxy "socks5://127.0.0.1:7891"

加了nc 的沒權(quán)限

  • nc sock5
$ cat ~/.ssh/config
HostkeyAlgorithms +ssh-rsa
PubkeyAcceptedAlgorithms +ssh-rsa
Host github.com
Hostname ssh.github.com
Port 443
User git
#socks5
#ProxyCommand nc -X 5 -x 127.0.0.1:7891 %h %p

zhangbin@LAPTOP-DFV9CMRA MINGW64 /g/CDN/net/libuv-dev/net_uv_new-kcp-imui-gl (main)
$ git push origin main
/usr/bin/bash: line 1: /g/ISOFT/netcat-win32-1.12/nc: Permission denied
/usr/bin/bash: line 1: /g/ISOFT/netcat-win32-1.12/nc: No error
kex_exchange_identification: Connection closed by remote host
Connection closed by UNKNOWN port 65535
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

實測,這個可以

  • connect proxy
Host github.com
    User git
    ProxyCommand connect -H 127.0.0.1:7890 %h %p

文章來源地址http://www.zghlxwxcb.cn/news/detail-777781.html

到了這里,關(guān)于【github】Connection reset by 20.205.243.160 port 443的文章就介紹完了。如果您還想了解更多內(nèi)容,請在右上角搜索TOY模板網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章,希望大家以后多多支持TOY模板網(wǎng)!

本文來自互聯(lián)網(wǎng)用戶投稿,該文觀點僅代表作者本人,不代表本站立場。本站僅提供信息存儲空間服務(wù),不擁有所有權(quán),不承擔(dān)相關(guān)法律責(zé)任。如若轉(zhuǎn)載,請注明出處: 如若內(nèi)容造成侵權(quán)/違法違規(guī)/事實不符,請點擊違法舉報進行投訴反饋,一經(jīng)查實,立即刪除!

領(lǐng)支付寶紅包贊助服務(wù)器費用

相關(guān)文章

  • 使用npm或yarn安裝東西時報錯connect ETIMEDOUT 20.205.243.166:443如何解決

    由于github國內(nèi)網(wǎng)絡(luò)連接被限制,所以最好使用鏡像解決,修改npm和yarn的源地址可以更快 修改npm源地址解決問題 以下兩種都可以 1.修改為淘寶鏡像 2.修改為npmmirror 修改yarn源地址可以更快下載 淘寶鏡像安裝 如果安裝失敗,使用npm cache clean清除緩存,再重新安裝,使用cnpm -v查

    2024年02月20日
    瀏覽(20)
  • fatal: unable to connect to github.com: github.com[0: 20.205.243.166]: errno=???

    fatal: unable to connect to github.com: github.com[0: 20.205.243.166]: errno=???

    錯誤 fatal: unable to connect to github.com: github.com[0: 20.205.243.166]: errno=連接超時 處理 :執(zhí)行以下命令 然后再重新輸入你的克隆命令就完美解決。嘿嘿嘿

    2024年02月03日
    瀏覽(21)
  • fatal: unable to connect to github.com: github.com[0: 20.205.243.166]: errno=Unknown error

    fatal: unable to connect to github.com: github.com[0: 20.205.243.166]: errno=Unknown error 引發(fā)上述錯誤是因為 git 棄用了 git: 協(xié)議,所以只需要將 git 中的 git: 協(xié)議改成 https: 即可,命令如下:

    2024年02月04日
    瀏覽(19)
  • fatal: unable to connect to github.com:github.com[0:20.205.243.166]: errno=Unknown error

    fatal: unable to connect to github.com:github.com[0:20.205.243.166]: errno=Unknown error

    在 bash 執(zhí)行命令 git clone 時 報 : fatal: unable to connect to github.com:github.com[0: 20.205.243.166]: errno=Unknown error 發(fā)生此錯誤是因為 git 端口受限 ,可以使用以下命令修復(fù) git config --global url.https://github.com/.insteadOf git://github.com/ 修復(fù)后,再次執(zhí)行 git clone

    2024年02月11日
    瀏覽(18)
  • fatal: unable to connect to github.com:github.com[0: 20.205.243.166]: errno=Unknown error

    fatal: unable to connect to github.com:github.com[0: 20.205.243.166]: errno=Unknown error

    查看全局配置: ? http.sslverify=false :這個配置意味著禁用了對HTTPS連接進行SSL證書驗證。這可能會導(dǎo)致不安全的連接,可以設(shè)置為true url.git://github.com/.insteadof=https://github.com/ 和 url.git://github.com.insteadof=https://github.com :這兩個配置用于將Git協(xié)議(git://)的URL轉(zhuǎn)換為HTTPS協(xié)議(h

    2024年02月15日
    瀏覽(28)
  • 【已解決】OpenSSL SSL_connect: Connection was reset in connection to github.com:443

    【已解決】OpenSSL SSL_connect: Connection was reset in connection to github.com:443

    OpenSSL SSL_connect: Connection was reset in connection to github.com:443錯誤解決 git push origin main:main fatal: unable to access ‘https://github.com/Allen9012/OJ.git/’: OpenSSL SSL_connect: Connection was reset in connection to github.com:443 首先多試幾次,發(fā)現(xiàn)始終出現(xiàn)類似問題,可能就是如下原因 試試看重啟+下面的方式

    2024年02月12日
    瀏覽(44)
  • Git報錯fatal unable to connect to github.com: github.com[0: 20.205.243.166]: errno=unknown error的解決方法

    今天創(chuàng)建了新的GitHub項目,進行g(shù)it clone時報錯 fatal: unable to connect to github.com: github.com[0: 20.205.243.166]: errno=unknown error 經(jīng)查,這個問題是由于Git 協(xié)議通常使用端口 9418,但是有些網(wǎng)絡(luò)環(huán)境可能會限制對此端口的訪問,或者直接阻止使用 Git 協(xié)議。因此,我們需要將git://github.com/替

    2024年02月08日
    瀏覽(25)
  • 解決Failed to connect to github.com port 443:Connection refused

    解決Failed to connect to github.com port 443:Connection refused

    如題,在終端執(zhí)行g(shù)it clone時提示Failed to connect to github.com port 443:Connection regused錯誤 解決方案如下: 本地有連接vpn,通過在終端輸入以下命令解決: git config --global http.proxy http://127.0.0.1:7890 說明:7890為本地混合配置的端口號

    2024年02月13日
    瀏覽(40)
  • Failed to connect to github.com port 443: Connection timed out

    使用git clone出現(xiàn)的這個問題,這個問題一般是使用翻墻代理軟件引起的 一:取消代理(一般取消后 也不能正常使用git clone,因為沒翻墻。。。,網(wǎng)速特好時偶爾也可以) 二:設(shè)置正確的代理端口號 隨后設(shè)置正確的代理端口,如: 然后就可以正常使用了

    2024年01月23日
    瀏覽(26)
  • 解決 github 報錯 Failed to connect to github.com port 443:connection timed out

    你在使用github的時候,是不是會經(jīng)常出現(xiàn)Failed to connect to github.com port 443:connection timed out報錯,這是什么原因造成的呢?我們應(yīng)該如何解決呢?請繼續(xù)往下看 這是由于電腦里開啟了代理,例如開啟了翻墻軟件等,就會造成這個原因 執(zhí)行命令:

    2024年02月11日
    瀏覽(27)

覺得文章有用就打賞一下文章作者

支付寶掃一掃打賞

博客贊助

微信掃一掃打賞

請作者喝杯咖啡吧~博客贊助

支付寶掃一掃領(lǐng)取紅包,優(yōu)惠每天領(lǐng)

二維碼1

領(lǐng)取紅包

二維碼2

領(lǐng)紅包