Debian 11.2にSSH サーバーをインストールする
環境情報
# cat /etc/debian_version
11.2
インストールの方法
1.opensshサーバーをインストールします
# apt -y install openssh-server
2.配置ファイルを修正します
# nano /etc/ssh/sshd_config
15行目
修正前
# Port 22
修正後
Port 22
34行目
修正前
#PermitRootLogin prohibit-password
修正後
PermitRootLogin yes
3.SSHを再起動します
# systemctl restart ssh