From 5a93c34dadc84eac0578b1afcb9406f319c0d02e Mon Sep 17 00:00:00 2001 From: Johan Degn <54548365+johandegn@users.noreply.github.com> Date: Tue, 14 Mar 2023 15:05:24 +0100 Subject: [PATCH] dbclient: add page (#9944) * dbclient: add page --------- Co-authored-by: K.B.Dharun Krishna Co-authored-by: Muhammad Falak R Wani --- pages/linux/dbclient.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pages/linux/dbclient.md diff --git a/pages/linux/dbclient.md b/pages/linux/dbclient.md new file mode 100644 index 000000000..07b3714a8 --- /dev/null +++ b/pages/linux/dbclient.md @@ -0,0 +1,24 @@ +# dbclient + +> Lightweight Dropbear Secure Shell client. +> More information: . + +- Connect to a remote host: + +`dbclient {{user}}@{{host}}` + +- Connect to a remote host on [p]ort 2222: + +`dbclient {{user}}@{{host}} -p 2222` + +- Connect to a remote host using a specific [i]dentity key in dropbear format: + +`dbclient -i {{path/to/key_file}} {{user}}@{{host}}` + +- Run a command on the remote host with a [t]ty allocation allowing interaction with the remote command: + +`dbclient {{user}}@{{host}} -t {{command}} {{argument1 argument2 ...}}` + +- Connect and forward [A]gent connections to remote host: + +`dbclient -A {{user}}@{{host}}`