1.配置sshd
sysinstall--configure--networking--
2.编辑配置文件:
vi /etc/inetd.conf 去掉ssh前面的#
vi /etc/ssh/sshd_config
PermitRootLogin no 为了安全关闭root远程连接
PasswordAuthentication yes 认证类型设置为密码认证
PermitEmptyPasswords no 关闭空密码
/etc/rc.d/sshd restart 重启sshd服务
2.切换用户
FreeBSD 用户需要使用su权限需要将用户添加到wheel组
vi /etc/group
wheel:x:root,test
3.添加用户命令为adduser