2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

raspberry pi4b ssh設定メモ

Last updated at Posted at 2020-03-06

元々opensshはインストールされてる。

sudo vim /etc/ssh/sshd_config
#port 22
の#を取って数字を変える

sudo apt install ufw
↑ufwをaptでインストールする。
sudo ufw enable
↑ファイアーウォールを有効にする。
sudo ufw allow sshd_configで指定したport番号
↑portを開ける。
sudo ufw status
↑portが開いてることを確認する。

sudo systemctl enable ssh.service
↑raspberry piが起動した時にsshサーバーが有効になるようにする。
sudo systemctl start ssh.service
↑sshサーバーを有効にする。

puttyなどでクライアントからログインする

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?