Files
tldr/pages.zh/common/sshd.md

21 lines
405 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# sshd
> 安全外壳守护进程 - 允许远程机器安全地登录到当前机器。
> 远程机器可以执行与在此机器上执行的命令相同的操作。
> 更多信息:<https://man.openbsd.org/sshd>。
- 在后台启动守护进程:
`sshd`
- 在前台运行 sshd
`sshd -D`
- 以详细输出运行(用于调试):
`sshd -D -d`
- 在特定端口运行:
`sshd -p {{port}}`