snippetbashTip
sshd — Secure Shell Daemon - allows remote machines to securely log in to the current machine. Remote machi
Viewed 0 times
shellcommandsshdsecuredaemoncliallowsremote
Problem
How to use the
sshd command: 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>.Solution
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:
sshdRun sshd in the foreground:
sshd -DRun with verbose output (for debugging):
sshd -D -dRun on a specific port:
sshd -p {{port}}Code Snippets
Start daemon in the background
sshdRun sshd in the foreground
sshd -DRun with verbose output (for debugging)
sshd -D -dRun on a specific port
sshd -p {{port}}Context
tldr-pages: common/sshd
Revisions (0)
No revisions yet.