LinuxCommandLibrary

dbclient

TLDR

Connect to a remote host

$ dbclient [user]@[host]
copy
Connect on specific port
$ dbclient [user]@[host] -p 2222
copy
Connect using identity key
$ dbclient -i [path/to/key_file] [user]@[host]
copy
Run a command with TTY allocation
$ dbclient [user]@[host] -t [command] [arguments]
copy
Forward agent connections
$ dbclient -A [user]@[host]
copy

SYNOPSIS

dbclient [options] [user@]host [command]

DESCRIPTION

dbclient is the SSH client from the Dropbear suite, a lightweight SSH implementation designed for embedded systems and environments with limited resources.
It provides standard SSH functionality with a smaller footprint than OpenSSH.

PARAMETERS

-p port

Connect to specified port
-i keyfile
Identity key file (Dropbear format)
-t
Allocate a TTY
-A
Forward authentication agent
-L port:host:port
Local port forwarding
-R port:host:port
Remote port forwarding
-N
Don't request a shell

CAVEATS

Uses Dropbear key format, not OpenSSH format. Use dropbearconvert to convert keys. Part of the Dropbear SSH suite, commonly used in embedded Linux systems.

SEE ALSO

Copied to clipboard