FreeBSD设置SSH
1. 步骤
-
在系统安装的时候,
Space
空格键 选择 SSH -
编辑
/etc/rc.conf
,添加一行:
sshd_enable="YES"
注意⚠️:这一项默认有。
- 编辑
/etc/ssh/sshd_config
,根据需要设置:
sudo vim /etc/ssh/sshd_config
# 不允许root登陆
PermitRootLogin no
# 使用密码登录
PasswordAuthentication yes
# 不允许空密码
PermitEmptyPasswords no
还有其他的一些设置,可参考:Ubuntu系统SSH设置小结。
- 启动或重启 SSHD 服务
service sshd start
service sshd restart
- 查看 ssh 服务是否启动
netstat -an | grep ssh