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

fedora27安装ssh

时间:2018-03-24 14:55:52      阅读:838      评论:0      收藏:0      [点我收藏+]

标签:tor   log   apr   root   roo   最大   protocol   admin   chap   

Fedora安装sshd

先确认是否已安装ssh服务:

[root@localhost ~]# rpm -qa | grep openssh-server

 openssh-server-5.3p1-19.fc12.i686 (这行表示已安装)

若未安装ssh服务,可输入:

#yum install openssh-server

进行安装

2、修改配置文件

#vi /etc/ssh/sshd_config

 Port 22 监听的端口号,默认是22,可以自定义。

  Protocol 2 支持的协议,默认就好,不用修改

  PermitRootLogin yes 是否允许root直接登录,最好设置为no

MMaxAuthTries 6 最大登录数,默认是6,建议设置为3,防止别人密码穷举。

To start the sshd daemon, type the following at a shell prompt:

systemctl start sshd.service

To stop the running sshd daemon, use the following command:

systemctl stop sshd.service

If you want the daemon to start automatically at the boot time, type:

systemctl enable sshd.service

Refer to Chapter?7,?Services and Daemons for more information on how to configure services in Fedora.

 

fedora27安装ssh

标签:tor   log   apr   root   roo   最大   protocol   admin   chap   

原文地址:https://www.cnblogs.com/guiyishanren/p/8638894.html

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