SSH経由でラズベリーファイに接続できません - 中断

SSH経由でラズベリーファイに接続できません - 中断

verboseを使って私のrpi(.7と呼びましょう)の1つにsshをしようとすると、次のような出力が表示されます。

ssh [email protected] -v
OpenSSH_8.9p1 Ubuntu-3ubuntu0.4, OpenSSL 3.0.2 15 Mar 2022
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 19: include /etc/ssh/ssh_config.d/*.conf matched no files
debug1: /etc/ssh/ssh_config line 21: Applying options for *
debug1: Connecting to 192.168.1.7 [192.168.1.7] port 22.

無限にぶら下がるだけです。

この特定のRaspberry Piを除いて、自宅の他のすべてのRaspberry Piに接続できます(理由は不明です)。私は別のrpi(例えば.62)にログインしようとしましたが、そのrpiから(.7)にsshすることができました。これはそれが何であるかはわかりませんが、ラップトップの構成問題であると疑われます。

アップデート1

ssh_configファイル

Include /etc/ssh/ssh_config.d/*.conf

Host *
    SendEnv LANG LC_*
    HashKnownHosts yes
    GSSAPIAuthentication yes

sshd_configファイル

Include /etc/ssh/sshd_config.d/*.conf
KbdInteractiveAuthentication no
UsePAM yes
X11Forwarding yes
PrintMotd no
AcceptEnv LANG LC_*
Subsystem   sftp    /usr/lib/openssh/sftp-server

2番目のファイルが存在しません

アップデート2

OpenSSH_8.9p1 Ubuntu-3ubuntu0.4, OpenSSL 3.0.2 15 Mar 2022
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 19: include /etc/ssh/ssh_config.d/*.conf matched no files
debug1: /etc/ssh/ssh_config line 21: Applying options for *
debug2: resolve_canonicalize: hostname 192.168.1.7 is address
debug3: expanded UserKnownHostsFile '~/.ssh/known_hosts' -> '/home/username/.ssh/known_hosts'
debug3: expanded UserKnownHostsFile '~/.ssh/known_hosts2' -> '/home/username/.ssh/known_hosts2'
debug3: ssh_connect_direct: entering
debug1: Connecting to 192.168.1.7 [192.168.1.7] port 22.
debug3: set_sock_tos: set socket 3 IP_TOS 0x10

アップデート3

tcpdumpの出力は次のとおりです。

sudo tcpdump  -i wlp0s20f3 -n 'port 22'
[sudo] password for myusername:            
tcpdump: verbose output suppressed, use -v[v]... for full protocol decode
listening on wlp0s20f3, link-type EN10MB (Ethernet), snapshot length 262144 bytes
10:11:10.086559 IP 192.168.1.5.50418 > 192.168.1.7.22: Flags [S], seq 441937362, win 64240, options [mss 1460,sackOK,TS val 2181705493 ecr 0,nop,wscale 7], length 0
10:11:11.087399 IP 192.168.1.5.50418 > 192.168.1.7.22: Flags [S], seq 441937362, win 64240, options [mss 1460,sackOK,TS val 2181706494 ecr 0,nop,wscale 7], length 0
10:11:13.103394 IP 192.168.1.5.50418 > 192.168.1.7.22: Flags [S], seq 441937362, win 64240, options [mss 1460,sackOK,TS val 2181708510 ecr 0,nop,wscale 7], length 0
10:11:17.199574 IP 192.168.1.5.50418 > 192.168.1.7.22: Flags [S], seq 441937362, win 64240, options [mss 1460,sackOK,TS val 2181712606 ecr 0,nop,wscale 7], length 0

私のラップトップは192.168.1.5で、私のワイヤレスカードインターフェイス(ifconfigから取得)はwlp0s20f3です。デフォルトではコマンドを実行し、別のターミナルウィンドウで(.7)としてSSHを試みます。

ベストアンサー1

助けてくださった皆さんに心から感謝します。根本的な原因が私の不快なルーター(Sky Hubの)で終わったという事実は驚くべきことではありません。私はパイに固定IPアドレスを提供するように設定されており、そのIPを変更すると再び機能し始めました。古いIPに関連するいくつかの誤った設定が維持されていたかもしれませんが、これは新しいIPを設定したときに消去されました。みんなありがとうございます。

おすすめ記事