1. 程式人生 > >禁止root直接登陸linux系統

禁止root直接登陸linux系統

style syslog pass PC openssh ati tar red BE

直接修改文件

# vim /etc/ssh/sshd_config

SyslogFacility AUTHPRIV
PermitRootLogin no
RSAAuthentication yes
PubkeyAuthentication yes
AuthorizedKeysFile	.ssh/authorized_keys
PasswordAuthentication no
ChallengeResponseAuthentication no
GSSAPIAuthentication yes
GSSAPICleanupCredentials yes
UsePAM yes
X11Forwarding yes
Subsystem	sftp	/usr/libexec/openssh/sftp-server
/etc/init.d/sshd restart

  如何免密碼切換到root呢?

vim /etc/sudoers

【普通賬號】 ALL=(ALL) NOPASSWD: ALL

保存之後,回到普通用戶直接輸入sudo -s即可免密切換到root賬號

禁止root直接登陸linux系統