当前位置: > Linux服务器 > SSH >

ssh 安全配置一例

时间:2014-09-18 01:12来源:linux.it.net.cn 作者:it

ssh 安全配置一例,禁止root用户登录及使用密钥登录服务器。


禁止root用户登录

为增强安全,
先增加一个普通权限的用户:
#useradd *****
#passwd ******
//设置密码

生产机器禁止ROOT远程SSH登录:
#vim /etc/ssh/sshd_config


PermitRootLogin yes
改为
PermitRootLogin no
重启sshd服务
#service sshd restart

远程管理用普通用户*******登录,然后用 su - root 转换到root用户拿到最高权限。

禁止某个用户登录

vim /etc/passwd

修改:lynn:x:500:500::/home/lynn:/bin/bash
 为: lynn:x:500:500::/home/lynn:/sbin/nologin

修改 : #Port 22
为 :   Port *****

使用密钥认证登录服务器

1、以root用户登录服务器
2、 vim /etc/ssh/sshd_config
Port 12345
StrictModes no

RSAAuthentication yes
PubkeyAuthentication yes

PermitEmptyPasswords no
PasswordAuthentication no

3、ssh-keygen -t rsa -b 1024
a、回车
b、键入密码

4、ls -a /root/.ssh   可以查看到生成两个文件

5、cat id_rsa.pub > authorized_keys

6、chmod 644 authorized_keys

7、rm -rf id_rsa.pub

8、ls -a /root/.ssh   现在就剩下两个文件,authorized_keys是公钥 id_rsa是密钥。

9、现在把id_rsa密钥手拷贝出来。

10、/etc/init.d/ssh restart

 
(责任编辑:IT)
------分隔线----------------------------