SSHの設定

619 ワード

#パスワード認証方式
#サーバ側
vi /etc/ssh/sshd_config
PermitRootLogin yes
PermitEmptyPasswords no
PasswordAuthentication yes
systemctl restart sshd

#クライアント
ssh [email protected]
ssh [email protected] "cat /etc/passwd"

#鍵認証方式
#サーバ側
ssh-keygen -t rsa
cd ~/.ssh/
chmod 600 id_rsa.pub
mv id_rsa.pub authorized_keys
chmod 600 authorized_keys
scp id_rsa [email protected]:~/.ssh/id_rsa_$HOSTNAME

#クライアント
ssh -i ~/.ssh/id_rsa_lin03.example.local [email protected] "shutdown -P"