You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
768 B

7 years ago
sshd
===
6 years ago
7 years ago
openssh软件套件中的服务器守护进程
## 补充说明
**sshd命令** 是openssh软件套件中的服务器守护进程。
### 语法
```
sshd(选项)
```
6 years ago
7 years ago
```
-4强制使用IPv4地址
-6强制使用IPv6地址
-D以后台守护进程方式运行服务器
-d调试模式
-e将错误发送到标准错误设备而不是将其发送到系统日志
-f指定服务器的配置文件
-g指定客户端登录时的过期时间如果在此期限内用户没有正确认证则服务器断开次客户端的连接
-h指定读取主机key文件
-issh以inetd方式运行
-o指定ssh的配置选项
-p静默模式没有任何信息写入日志
-t测试模式。
```