mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-03-11 01:58:28 +00:00
Update cheatsheets
This commit is contained in:
26
sshd
Normal file
26
sshd
Normal file
@@ -0,0 +1,26 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, common]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# 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}}`
|
||||
Reference in New Issue
Block a user