123456789101112131415161718192021222324252627 |
- #!/bin/bash
- clear
- if [[ "$EUID" -ne 0 ]]; then
- echo -e "\033[1;31mScript need to be run as root!\033[0m"; exit 1
- fi
- apt-get -qq update
- DEBIAN_FRONTEND=noninteractive apt-get -y -qq install dropbear
- echo 'NO_START=0
- DROPBEAR_PORT=339
- DROPBEAR_EXTRA_ARGS="-p 440 -p 441 -p 442"
- DROPBEAR_BANNER="/etc/issue.net"
- DROPBEAR_RSAKEY="/etc/dropbear/dropbear_rsa_host_key"
- DROPBEAR_DSSKEY="/etc/dropbear/dropbear_dss_host_key"
- DROPBEAR_ECDSAKEY="/etc/dropbear/dropbear_ecdsa_host_key"
- DROPBEAR_RECEIVE_WINDOW=65536' > /etc/default/dropbear
- systemctl restart dropbear
- echo
- echo -e "\033[1;32mTahniah, Kami telah selesai dengan pemasangan dropbear.\033[0m"
- echo
- echo 'Use my referral link https://m.do.co/c/a28a40414d6a'
- echo 'to gets $100 credit into your DigitalOcean account.'
- echo
- echo 'Hak Cipta 2021 Doctype, Dikuasakan oleh Cybertize.'
- sleep 5
|