mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 05:22:09 +02:00
sshd: add page (#6610)
This commit is contained in:
parent
3af8bebd95
commit
8facf8e18a
1 changed files with 21 additions and 0 deletions
21
pages/common/sshd.md
Normal file
21
pages/common/sshd.md
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
# 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}}`
|
Loading…
Add table
Reference in a new issue