Selasa, 12 September 2017

Filled Under:

How to Change and Add Port Dropbear to Debian 7

Hello reader kallongers On this occasion we will discuss about how to replace & add the dropbear port in debian 7. Previously let us discuss what exactly the dropbear is. Dropbear is open source software, distributed under an MIT style license. Dropbear serves as an SSH server like openSSH. Dropbear is particularly useful for Linux operating system types (or other Unix systems), such as wireless routers. Dropbear serverSSH is relatively light for clients and can run on various platforms based on POSIX. By default, our autoscript installer dropbear is installed on ports 443, 110, and 109. If you want to dropbear running on other ports, or ports 443, 110 and 109 that you want to use for other purposes, then you should replace the dropbear port. . Let's see how to change the dropbear port in debian 7

Cara Mengganti dan menambah Port Dropbear Debian 7



  1. Login to each server using bitvise / putty. Make sure the nano text editor is installed. If nano text editor has not been installed, type
    apt-get -y install nano

  2. Go to step 2 by typing
    nano /etc/default/dropbear

  3. You will find more or less like this:
    # 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=443# any additional arguments for Dropbear
    DROPBEAR_EXTRA_ARGS="-p 109 -p 110"

    # specify an optional banner file containing a message to be
    # sent to clients before they connect, such as "/etc/issue.net"
    DROPBEAR_BANNER="/etc/issue.net"

    # 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"

    # Receive window size - this is a tradeoff between memory and
    # network performance
    DROPBEAR_RECEIVE_WINDOW=65536


  4. Notice the text DROPBEAR_PORT = 443. The port indicates that the main port dropbear is running on port 443. If you want to change the port dropbear to another port, you just need to change the number 443 to the number you want. (Suppose you want dropbear to run on port 80, then you should change the text DROPBEAR_PORT = 443 to DROPBEAR_PORT = 80.

  5. Take note of DROPBEAR_EXTRA_ARGS = "- p 109 -p 110". The text shows that the dropbear also runs on ports 109 and 110 in addition to running on the main port.
    If you do not want dropbear to run on that port, just delete the post inside quotation marks. Example: you just want the dropbear to run only on port 80 that has been set in the main port, then you should replace the DROPBEAR_EXTRA_ARGS = "- p 109 -p 110" to DROPBEAR_EXTRA_ARGS = "".

    If you want dropbear to run on ports other than 109, and 110, then you have to add the -p [port-number] argument. Example: you just want dropbear to run on port 80 (main port), port 109, port 110, port 443, port 22507. then you should replace DROPBEAR_EXTRA_ARGS = "- p 109 -p 110" to DROPBEAR_EXTRA_ARGS = "- p 109 - p 110 -p 443

  6. When done, press CTRL + X and then type Y and then press enter.

  7. Do not forget to restart the dropbear server by typing
    /etc/init.d/dropbear restart

  8. Check whether the dropbear has been running in the desired port by typing
    netstat -ntulp | grep dropbear .
    You will see on what port the dropbear is running.


So how to replace and add the dropbear port in debian 7. Hope this tutorial can help meet your needs. If you have any questions about how to change the dropbear port in debian 7, please ask in the comment field below ...



Send regards for Success
~ Team kallongnet

1 komentar:

  1. […] dropbear. solusinya anda harus hapus/ganti port 443 yang ada di dropbear, silahkan bisa di baca di artikel ini Akan tetapi jika setelah perintah itu dimasukkan, tidak keluar tulisan apapun, berarti port […]

    BalasHapus