Raspbian disable ssh by defaultの新しいバージョンを思わ:
In the past, SSH was enabled by default, so people using their Pi headless could easily update their SD card to a new image. Switching SSH on or off has always required the use of raspi-config or the Raspberry Pi Configuration application, but to access those, you need a screen and keyboard connected to the Pi itself, which is not the case in headless applications. So we’ve provided a simple mechanism for enabling SSH before an image is booted.
The boot partition on a Pi should be accessible from any machine with an SD card reader, on Windows, Mac, or Linux. If you want to enable SSH, all you need to do is to put a file called ssh in the /boot/ directory. The contents of the file don’t matter: it can contain any text you like, or even nothing at all. When the Pi boots, it looks for this file; if it finds it, it enables SSH and then deletes the file. SSH can still be turned on or off from the Raspberry Pi Configuration application or raspi-config; this is simply an additional way to turn it on if you can’t easily run either of those applications.
だから、1つのブートtouch /mnt/raspi/boot/ssh
のsshd を有効にします。
次に、sshdを有効にするには、raspi-config
を実行してSSHdを起動することができます。手動でもそれを行う方法があるはずですが、私はまだそれを理解していません。
最初のSSH設定は、モニタとキーボードで行うか、画像にあらかじめ設定しておく必要があります(明らかにそうではありません)。 – Yaron
必ずしも!、私はSSHを開始するためにrc.localを使いました。そしてnmapを使ってSSHDの動作を見ることができ、ポート22は開いています。次のURLをご覧ください:https://www.youtube.com/watch?v=toWBmUsWD6M – Niroda
ポートがオープンしている可能性があるので、おそらくマシンに接続する別の方法を試して、なぜこれが起こっているのかを確認してください。このコマンドを使用すると、 'cat /var/log/auth.log | grep 'sshd。*無効です。もちろん、何らかのダイレクトターミナルセッションを確立する必要があります。 – Yaron