Debian Tutorials

Debian Tutorials


Step by step tutorials showing you how to install and configure various applications and services on Debian based Linux distros.

May 2024
M T W T F S S
 12345
6789101112
13141516171819
20212223242526
2728293031  

Categories


Replacing OpenSSH server with dropbear

Ástþór IPÁstþór IP

dropbear is a SSH 2 server and client designed to be small enough to be used in small memory environments, while still being functional and secure enough for general use.

It implements most required features of the SSH 2 protocol, and other features such as X11 and authentication agent forwarding.

1. Install dropbear

apt-get install dropbear

2. Stop OpenSSH server (you won’t loose your SSH connection)

/etc/init.d/ssh stop

2. Enable dropbear (pico /etc/default/dropbear)

NO_START=0

3. Start dropbear

/etc/init.d/dropbear start

4. Remove OpenSSH server

apt-get remove openssh-server

Comments 1
  • Chris
    Posted on

    Chris Chris

    Author

    You will notice so much free memory by using dropbear over openssh-server.