Kali ini saya akan share tentang cara install dropbear dan cara mengatur port untuk tunneling ssh di VPS linux debian, agar bisa install dropbear dan setting port nya, kita membutuhkan program putty agar bisa login ke vps linux kita, jika belum punya silahkan download programnya :
Download Putty
baik langsung saja, perhatikan step by step :
# apt-get update (tunggu proses)
# apt-get install dropbear (tunggu proses)
# apt-get install nano (tunggu proses)
# nano /etc/default /dropbear
before
“ # disabled because OpenSSH is installed
# change to NO_START=0 to enable Dropbear
NO_START=1
# the TCP port that Dropbear listens on
DROPBEAR_PORT=22
# any additional arguments for Dropbear
DROPBEAR_EXTRA_ARGS=
# specify an optional banner file containing a message to be
# sent to clients before they connect, such as "/etc/issue.net"
DROPBEAR_BANNER=""
# RSA hostkey file (default: /etc/dropbear/dropbear_rsa_host_key)
#DROPBEAR_RSAKEY="/etc/dropbear/dropbear_rsa_host_key"
# DSS hostkey file (default: /etc/dropbear/dropbear_dss_host_key)
#DROPBEAR_DSSKEY="/etc/dropbear/dropbear_dss_host_key" "
Jika sudah terbuka seperti contoh di atas, kita akan mulai setting untuk alih fungsikan dari openssh ke dropbear,. perhatikan perubahan nya, yang di ubah hanya :
1. "NO_START=1" ke "NO_START=0"
2. "DROPBEAR_EXTRA_ARGS=" ke "DROPBEAR_EXTRA_ARGS=”-p 443”
After
“ # disabled because OpenSSH is installed
# change to NO_START=0 to enable Dropbear
NO_START=0
# the TCP port that Dropbear listens on
DROPBEAR_PORT=22
# any additional arguments for Dropbear
DROPBEAR_EXTRA_ARGS=”-p 443”
# specify an optional banner file containing a message to be
# sent to clients before they connect, such as "/etc/issue.net"
DROPBEAR_BANNER=""
# RSA hostkey file (default: /etc/dropbear/dropbear_rsa_host_key)
#DROPBEAR_RSAKEY="/etc/dropbear/dropbear_rsa_host_key"
# DSS hostkey file (default: /etc/dropbear/dropbear_dss_host_key)
#DROPBEAR_DSSKEY="/etc/dropbear/dropbear_dss_host_key" “
Jika sudah, selanjutnya
ctrl+O enter
ctrl+x pilih Y/yes
jangan lupa untuk restart dropbear nya dengan cara:
# service dropbear restart
# exit
Selesai,, sekarang silahkan coba login ke ssh masing-masing dengan menggunakan port yang sudah di setting..,
0 comments:
Post a Comment