mirror of
https://github.com/Estom/notes.git
synced 2026-04-27 03:51:03 +08:00
linux 命令和教程补充
This commit is contained in:
33
Linux/command/sshd.md
Normal file
33
Linux/command/sshd.md
Normal file
@@ -0,0 +1,33 @@
|
||||
sshd
|
||||
===
|
||||
|
||||
openssh软件套件中的服务器守护进程
|
||||
|
||||
## 补充说明
|
||||
|
||||
**sshd命令** 是openssh软件套件中的服务器守护进程。
|
||||
|
||||
### 语法
|
||||
|
||||
```shell
|
||||
sshd(选项)
|
||||
```
|
||||
|
||||
### 选项
|
||||
|
||||
```shell
|
||||
-4:强制使用IPv4地址;
|
||||
-6:强制使用IPv6地址;
|
||||
-D:以后台守护进程方式运行服务器;
|
||||
-d:调试模式;
|
||||
-e:将错误发送到标准错误设备,而不是将其发送到系统日志;
|
||||
-f:指定服务器的配置文件;
|
||||
-g:指定客户端登录时的过期时间,如果在此期限内,用户没有正确认证,则服务器断开次客户端的连接;
|
||||
-h:指定读取主机key文件;
|
||||
-i:ssh以inetd方式运行;
|
||||
-o:指定ssh的配置选项;
|
||||
-p:静默模式,没有任何信息写入日志;
|
||||
-t:测试模式。
|
||||
```
|
||||
|
||||
|
||||
Reference in New Issue
Block a user