From 8facf8e18af6fe7fdff340541fc4c26bda53b0a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nguy=E1=BB=85n=20=C4=90=E1=BB=A9c=20Chi=E1=BA=BFn?= Date: Mon, 4 Oct 2021 19:00:53 +0700 Subject: [PATCH] sshd: add page (#6610) --- pages/common/sshd.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 pages/common/sshd.md diff --git a/pages/common/sshd.md b/pages/common/sshd.md new file mode 100644 index 000000000..035078fbf --- /dev/null +++ b/pages/common/sshd.md @@ -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: . + +- 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}}`