ssh常用配置

/etc/ssh/sshd_config #on ubuntu
# 设置选项PermitRootLogin
# 选项设置为without-password,root用户就不能从没有密匙的计算机上登录
# 选项设置为no,将禁止root用户登录,只能用sudo命令从普通用户转成root
PermitRootLogin without-password
#不让root远程登入:
PermitRootLogin no
# 设置选项PasswordAuthentication
# 选项设置为no,只允许用户用基于密匙的方式登录
PasswordAuthentication no