首先编辑 /etc/inetd.conf
去掉 #ssh stream tcp nowait root /usr/sbin/sshd sshd -i -4 该行前面的#号
保存该文档

开机启动ssh服务

编辑 /etc/rc.conf 在末端增加一行
sshd_enable="yes"
保存该文档

允许root直接远程登录
编辑 /etc/ssh/sshd_config
搜索 PermitRootLogin 将该行注释的#去掉 并把no改成 yes

启动服务即可使用ssh客户端登录
/etc/rc.d/sshd start

标签: FreeBSD, openssh, ssh

仅有一条评论

  1. Haowu Ge Haowu Ge

    去掉 #ssh stream tcp nowait root /usr/sbin/sshd sshd -i -4 该行前面的#号

    这个有啥特殊用途?

添加新评论