FreeBSD12.1开启sshd服务
1、打开网络相关配置
vi /etc/inetd.conf
去掉ssh前的#,保存退出.
2、sshd服务开机自启动
vi /etc/rc.conf
最后加入 sshd_enable="YES" 即可
3、启动sshd服务
/etc/rc.d/sshd start
4、检查服务是否启动,22端口有无sshd服务监听。
netstat -an
5、修改sshd服务配置
vi /etc/ssh/sshd_config
编辑 ,修改如下内容
PermitRootLogin yes #允许root通过sshd登陆
PermitEmptyPasswords no #不允许空密码
PasswordAuthentication yes
重新启动sshd服务:/etc/rc.d/sshd restart。
以上是 FreeBSD12.1开启sshd服务 的全部内容, 来源链接: utcz.com/z/510613.html