码迷,mamicode.com
首页 > 其他好文 > 详细

ssh 配置

时间:2017-08-05 10:58:37      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:conf   mod   rest   logs   use   cat   class   bsp   设置   

/bin/cp -f /etc/ssh/sshd_config /etc/ssh/sshd_config.bak
sed -i ‘s/#Port.*/Port 62920/g‘ /etc/ssh/sshd_config                                    # 设置ssh监听端口
sed -i ‘s/#PermitRootLogin.*/PermitRootLogin no/g‘ /etc/ssh/sshd_config                 # 禁止root用户登录
sed -i ‘s/#LoginGraceTime.*/LoginGraceTime 10m/g‘ /etc/ssh/sshd_config                  # 当用户连接ssh时多久没登录进来就断开
sed -i ‘s/PasswordAuthentication.*/PasswordAuthentication no/g‘ /etc/ssh/sshd_config    # 不允许使用密码登录,而是使用密钥登录
sed -i ‘s/GSSAPIAuthentication.*/GSSAPIAuthentication no/g‘ /etc/ssh/sshd_config        # 设置是否允许基于GSSAPI的用户认证
sed -i ‘s/#UseDNS.*/UseDNS no/g‘ /etc/ssh/sshd_config                # 设置是否使用dns反向解析,这是用来优化登陆速度的 
sed -i ‘s/#MaxStartups.*/MaxStartups 1000/g‘ /etc/ssh/sshd_config    # 设置同时允许几个尚未登入的联机,当用户连上ssh但并未输入密码即为所谓的联机 
chmod 600 /etc/ssh/sshd_config    
/etc/init.d/sshd restart

 

 

 

 

    

ssh 配置

标签:conf   mod   rest   logs   use   cat   class   bsp   设置   

原文地址:http://www.cnblogs.com/pzk7788/p/7289278.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!