默认情况下freebsd下的ssh服务是未被开启的。
开启方法:
vi编辑/etc/inetd.conf,去掉ssh前的#,保存退出 (开启****ssh服务)
修改freebsd可以用sshd权限用户登录ssh 但不能用root用户登录的方法。
在/etc/ssh/sshd_config最后中加入
最后编辑/etc/rc.conf
最后加入:sshd_enable="YES"即可 //"YES"一定要记得大写
激活sshd服务:
到此配置基本完成。
查看ssh 22端口是否开启:
netstat -an |grep 22
或者:
ps -aux |grep ssh
出现
root 813 /usr/sbin/sshd
root 979 sshd: root@pts/0 (sshd)
配置成功可以远程连接了。