[SOLVED] Dropbear config file,where?


Kosmos

Member
Joined
Apr 10, 2012
Messages
228
Where is the dropbear config file? I would like to change the default ssh port for logging in.Obviously not at /etc/sshd_config...


I looked in /etc/dropbear - not there! just an RSA file.
 
Last edited by a moderator:
Have a look at /etc/init.d/dropbear


The deamon dont read a config file but follow what you ask with it's arguments when you start it.
 
It starts automatically on boot. How do I change its parameters for that? I want to change the default port.
 
/etc/init.d/dropbear is the script that start it at boot. There is DROPBEAR_PORT=22 line in this file. change that, then :


/etc/init.d/dropbear stop;/etc/init.d/dropbear start


and you're in business ;)
 
Back
Top