1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/sshd.md
Nguyễn Đức Chiến 8facf8e18a
sshd: add page (#6610)
2021-10-04 09:00:53 -03:00

21 lines
414 B
Markdown

# sshd
> Secure Shell Daemon - allows remote machines to securely log in to the current machine.
> Remote machines can execute commands as it is executed at this machine.
> More information: <https://man.openbsd.org/sshd>.
- Start daemon in the background:
`sshd`
- Run sshd in the foreground:
`sshd -D`
- Run with verbose output (for debugging):
`sshd -D -d`
- Run on a specific port:
`sshd -p {{port}}`