How To Install Dropbear On Centos 7

Today I will discuss how to install Dropbear ssh on CentOS 7.
 # yum update 
  •  Then Install The EPL package
 # rpm -Uvh http://ftp-stud.hs-esslingen.de/pub/epel/7/x86_64/e/epel-release-7-6.noarch.rpm
  • Install

# yum -y install dropbear
  •  Open the configuration file
# vi /etc/sysconfig/dropbear
  • And enter the command as below
 KEYGEN=/usr/bin/dropbearkey
DROPBEAR=/usr/sbin/dropbear
RSA_KEY=/etc/dropbear/dropbear_rsa_host_key
DSS_KEY=/etc/dropbear/dropbear_dss_host_key
PID_FILE=/var/run/dropbear.pid
OPTIONS="-p 22"
  • Run The dropbear
# systemctl start dropbear
  • Make Dropbear As Service
    # chkconfig dropbear on