mirror of
https://github.com/fofolee/uTools-Manuals.git
synced 2025-06-08 15:04:05 +08:00
21 lines
1.0 KiB
HTML
21 lines
1.0 KiB
HTML
<h1 id="sshd">sshd</h1>
|
||
<p>openssh软件套件中的服务器守护进程</p>
|
||
<h2 id="补充说明">补充说明</h2>
|
||
<p><strong>sshd命令</strong> 是openssh软件套件中的服务器守护进程。</p>
|
||
<h3 id="语法">语法</h3>
|
||
<pre><code class="language-bash">sshd(选项)</code></pre>
|
||
<h3 id="选项">选项</h3>
|
||
<pre><code class="language-bash">-4:强制使用IPv4地址;
|
||
-6:强制使用IPv6地址;
|
||
-D:以后台守护进程方式运行服务器;
|
||
-d:调试模式;
|
||
-e:将错误发送到标准错误设备,而不是将其发送到系统日志;
|
||
-f:指定服务器的配置文件;
|
||
-g:指定客户端登录时的过期时间,如果在此期限内,用户没有正确认证,则服务器断开次客户端的连接;
|
||
-h:指定读取主机key文件;
|
||
-i:ssh以inetd方式运行;
|
||
-o:指定ssh的配置选项;
|
||
-p:静默模式,没有任何信息写入日志;
|
||
-t:测试模式。</code></pre>
|
||
<!-- Linux命令行搜索引擎:https://jaywcjlove.github.io/linux-command/ -->
|