Nicu Stiurca
Nicu Stiurca

Reputation: 8697

Dropbear client configuration file?

Does anybody know where the Dropbear SSH client looks for a config file? I need to specify a certain identity file to be used by default. Eg, can I setup dropbear client such that I can use

$ dbclient user@host

instead of

$ dbclient -i my/rsa/key user@host

?

PS: I'm pretty much stuck with Dropbear rather than OpenSSH since I am on embedded linux running Angstrom.

EDIT: Alternatively, where does the dropbear client look for an identity file by default?

Upvotes: 2

Views: 11756

Answers (2)

georgk111
georgk111

Reputation: 56

New dropbear (v2017 ..) has a default id .ssh/id_dropbear see help: -i <identityfile> (multiple allowed, default .ssh/id_dropbear)

Upvotes: 4

m_majeres
m_majeres

Reputation: 261

you could create a shell alias... I added this line to my profile

alias ssh='ssh -i $HOME/.ssh/id_rsa'

Upvotes: 4

Related Questions