linux 命令和教程补充

This commit is contained in:
estomm
2021-12-24 11:16:28 +08:00
parent 40e916976b
commit b7c3653392
586 changed files with 46455 additions and 39 deletions

33
Linux/command/sshd.md Normal file
View File

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