公開鍵でログイン認証

Login 先のssh の規制を緩和(パスワードログインを一時的に許可)

vi /etc/ssh/sshd_config
PermitRootLogin yes
PasswordAuthentication yes

systemctl restart sshd

公開鍵を作成。リモートで登録する。

# Create pub key
~~ssh-keygen -t rsa -b 4096~~
ssh-keygen -t ed25519

# Install
ssh-copy-id -i ~/.ssh/id_ed25519.pub root@192.168.24.47

規制緩和を撤回する。

vi /etc/ssh/sshd_config
PermitRootLogin prohibit-password
PasswordAuthentication no

systemctl restart sshd

ログインできたらOK