deb9 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455
  1. #!/bin/bash
  2. # Created by https://t.me/badboy897
  3. # Script by Badboy
  4. # requirement
  5. apt-get -y update && apt-get -y upgrade
  6. apt-get -y install curl wget
  7. # initializing IP
  8. export DEBIAN_FRONTEND=noninteractive
  9. OS=`uname -m`;
  10. MYIP=$(wget -qO- ipv4.icanhazip.com);
  11. MYIP2="s/xxxxxxxxx/$MYIP/g";
  12. # configure rc.local
  13. cat <<EOF >/etc/rc.local
  14. #!/bin/sh -e
  15. exit 0
  16. EOF
  17. chmod +x /etc/rc.local
  18. systemctl daemon-reload
  19. systemctl start rc-local
  20. # disable ipv6
  21. echo 1 > /proc/sys/net/ipv6/conf/all/disable_ipv6
  22. sed -i '$ i\echo 1 > /proc/sys/net/ipv6/conf/all/disable_ipv6' /etc/rc.local
  23. # add DNS server ipv4
  24. echo "nameserver 1.1.1.1" > /etc/resolv.conf
  25. echo "nameserver 1.0.0.1" >> /etc/resolv.conf
  26. sed -i '$ i\echo "nameserver 1.1.1.1" > /etc/resolv.conf' /etc/rc.local
  27. sed -i '$ i\echo "nameserver 1.0.0.1" >> /etc/resolv.conf' /etc/rc.local
  28. # remove unused
  29. apt-get -y --purge remove samba*;
  30. apt-get -y --purge remove apache2*;
  31. apt-get -y --purge remove sendmail*;
  32. apt-get -y --purge remove bind9*;
  33. # set repo
  34. echo 'deb http://download.webmin.com/download/repository sarge contrib' >> /etc/apt/sources.list.d/webmin.list
  35. wget "http://www.dotdeb.org/dotdeb.gpg"
  36. cat dotdeb.gpg | apt-key add -;rm dotdeb.gpg
  37. wget -qO - http://www.webmin.com/jcameron-key.asc | apt-key add -
  38. # set time GMT +2
  39. ln -fs /usr/share/zoneinfo/Asia/Kuala_Lumpur /etc/localtime
  40. # set locale
  41. sed -i 's/AcceptEnv/#AcceptEnv/g' /etc/ssh/sshd_config
  42. # update
  43. apt-get update; apt-get -y upgrade;
  44. # install webserver extensions
  45. apt-get -y install nginx
  46. apt-get -y install php7.0-fpm php7.0-cli libssh2-1 php-ssh2 php7.0
  47. # install essential package
  48. apt-get -y install nano iptables-persistent dnsutils screen whois ngrep unzip unrar tar unzip zip certbot
  49. apt-get -y install build-essential
  50. apt-get -y install libio-pty-perl libauthen-pam-perl apt-show-versions libnet-ssleay-perl
  51. # install screenfetch
  52. cd
  53. wget -O /usr/bin/screenfetch "https://raw.githubusercontent.com/lanundarat87/xxx/main/Res/Screenfetch/screenfetch"
  54. chmod +x /usr/bin/screenfetch
  55. echo "clear" >> .profile
  56. echo "screenfetch" >> .profile
  57. # install webserver
  58. cd
  59. rm /etc/nginx/sites-enabled/default
  60. rm /etc/nginx/sites-available/default
  61. wget -O /etc/nginx/nginx.conf "https://raw.githubusercontent.com/lanundarat87/xxx/main/Res/Other/nginx.conf"
  62. wget -O /etc/nginx/conf.d/vps.conf "https://raw.githubusercontent.com/lanundarat87/xxx/main/Res/Other/vps.conf"
  63. wget -O /etc/nginx/conf.d/monitoring.conf "https://raw.githubusercontent.com/lanundarat87/xxx/main/Res/Other/monitoring.conf"
  64. mkdir -p /home/vps/public_html
  65. wget -O /home/vps/public_html/index.php "https://raw.githubusercontent.com/lanundarat87/xxx/main/Res/Panel/index.php"
  66. sed -i 's/listen = \/run\/php\/php7.3-fpm.sock/listen = 127.0.0.1:9000/g' /etc/php/7.3/fpm/pool.d/www.conf
  67. sed -i $MYIP2 /home/vps/public_html/index.php;
  68. service php7.3-fpm restart
  69. service nginx restart
  70. # install openvpn
  71. apt-get -y install openvpn
  72. wget -O /etc/openvpn/openvpn.tar "https://raw.githubusercontent.com/lanundarat87/xxx/main/Res/OpenVPN/openvpn-debian.tar"
  73. cd /etc/openvpn/
  74. tar xf openvpn.tar
  75. sed -i $MYIP2 /etc/openvpn/server.conf
  76. # openvpn config
  77. cat > /home/vps/public_html/black.ovpn <<-END
  78. # OpenVPN Configuration By Black
  79. client
  80. dev tun
  81. proto tcp
  82. setenv FRIENDLY_NAME "BlackVPN"
  83. remote $MYIP 443
  84. http-proxy $MYIP 8080
  85. remote-cert-tls server
  86. resolv-retry infinite
  87. nobind
  88. tun-mtu 1500
  89. mssfix 1500
  90. persist-key
  91. persist-tun
  92. ping-restart 0
  93. ping-timer-rem
  94. reneg-sec 0
  95. comp-lzo
  96. auth SHA512
  97. auth-user-pass
  98. auth-nocache
  99. cipher AES-128-CBC
  100. verb 3
  101. pull
  102. END
  103. echo '<ca>' >> /home/vps/public_html/black.ovpn
  104. cat /etc/openvpn/keys/ca.crt >> /home/vps/public_html/black.ovpn
  105. echo '</ca>' >> /home/vps/public_html/black.ovpn
  106. cd /home/vps/public_html/
  107. tar -czf /home/vps/public_html/blackVPN.tar.gz black.ovpn
  108. tar -czf /home/vps/public_html/black.tar.gz black.ovpn
  109. cd
  110. # Deb9 OVPN Bug Workaround
  111. mkdir -p /dev/net
  112. mknod /dev/net/tun c 10 200
  113. chmod 600 /dev/net/tun
  114. # Deb9 OVPN Bug2 Workaround
  115. sed -i 's@LimitNPROC=10@@g' /lib/systemd/system/openvpn@.service
  116. # Restart openvpn
  117. systemctl daemon-reload
  118. systemctl start openvpn@server
  119. systemctl enable openvpn@server
  120. systemctl status --no-pager openvpn@server
  121. # Setting UFW
  122. apt-get install ufw
  123. ufw allow ssh
  124. ufw allow 443/tcp
  125. sed -i 's|DEFAULT_INPUT_POLICY="DROP"|DEFAULT_INPUT_POLICY="ACCEPT"|' /etc/default/ufw
  126. sed -i 's|DEFAULT_FORWARD_POLICY="DROP"|DEFAULT_FORWARD_POLICY="ACCEPT"|' /etc/default/ufw
  127. cat > /etc/ufw/before.rules <<-END
  128. # START OPENVPN RULES
  129. # NAT table rules
  130. *nat
  131. :POSTROUTING ACCEPT [0:0]
  132. # Allow traffic from OpenVPN client to eth0
  133. -A POSTROUTING -s 10.8.0.0/8 -o eth0 -j MASQUERADE
  134. COMMIT
  135. # END OPENVPN RULES
  136. END
  137. ufw status
  138. ufw disable
  139. # set ipv4 forward
  140. echo 1 > /proc/sys/net/ipv4/ip_forward
  141. sed -i 's|#net.ipv4.ip_forward=1|net.ipv4.ip_forward=1|' /etc/sysctl.conf
  142. # OpenVPN monitoring
  143. apt -y install git gcc nginx uwsgi uwsgi-plugin-python3 virtualenv python3-dev libgeoip-dev geoip-database geoip-database-extra
  144. wget -O /srv/openvpn-monitor.tar "https://raw.githubusercontent.com/lanundarat87/xxx/main/Res/Panel/openvpn-monitor.tar"
  145. cd /srv
  146. tar xf openvpn-monitor.tar
  147. cd openvpn-monitor
  148. virtualenv -p python3 .
  149. . bin/activate
  150. pip install -r requirements.txt
  151. wget -O /etc/uwsgi/apps-available/openvpn-monitor.ini "https://raw.githubusercontent.com/dopekid30/AutoScriptDebian9/main/Res/Panel/openvpn-monitor.ini"
  152. ln -s /etc/uwsgi/apps-available/openvpn-monitor.ini /etc/uwsgi/apps-enabled/
  153. # GeoIP For OpenVPN Monitor
  154. mkdir -p /var/lib/GeoIP
  155. wget -O /var/lib/GeoIP/GeoLite2-City.mmdb.gz "https://raw.githubusercontent.com/lanundarat87/xxx/main/Res/Panel/GeoLite2-City.mmdb.gz"
  156. gzip -d /var/lib/GeoIP/GeoLite2-City.mmdb.gz
  157. # install badvpn
  158. cd
  159. wget -O /usr/bin/badvpn-udpgw "https://raw.githubusercontent.com/lanundarat87/xxx/main/Res/BadVPN/badvpn-udpgw64"
  160. sed -i '$ i\screen -AmdS badvpn badvpn-udpgw --listen-addr 127.0.0.1:7300 --max-clients 1000 --max-connections-for-client 10' /etc/rc.local
  161. chmod +x /usr/bin/badvpn-udpgw
  162. screen -AmdS badvpn badvpn-udpgw --listen-addr 127.0.0.1:7300 --max-clients 1000 --max-connections-for-client 10
  163. # setting port ssh
  164. sed -i '/#Port 22/a Port 143' /etc/ssh/sshd_config
  165. sed -i '/#Port 22/a Port 90' /etc/ssh/sshd_config
  166. sed -i 's/#Port 22/Port 22/g' /etc/ssh/sshd_config
  167. /etc/init.d/ssh restart
  168. # install dropbear
  169. apt-get -y install dropbear
  170. sed -i 's/NO_START=1/NO_START=0/g' /etc/default/dropbear
  171. sed -i 's/DROPBEAR_PORT=22/DROPBEAR_PORT=442/g' /etc/default/dropbear
  172. sed -i 's/DROPBEAR_EXTRA_ARGS=/DROPBEAR_EXTRA_ARGS="-p 109 -p 110"/g' /etc/default/dropbear
  173. echo "/bin/false" >> /etc/shells
  174. /etc/init.d/dropbear restart
  175. # install squid
  176. apt-get -y install squid
  177. cat > /etc/squid/squid.conf <<-END
  178. acl server dst xxxxxxxxx/32 localhost
  179. #acl checker src 188.93.95.137
  180. acl ports_ port 14 22 53 21 8080 8000 1193 1194 440 441 442 443 80
  181. http_port 8000
  182. http_port 8080
  183. access_log none
  184. cache_log /dev/null
  185. logfile_rotate 0
  186. http_access allow server
  187. #http_access allow checker
  188. http_access deny all
  189. forwarded_for off
  190. via off
  191. request_header_access Host allow all
  192. request_header_access Content-Length allow all
  193. request_header_access Content-Type allow all
  194. request_header_access All deny all
  195. hierarchy_stoplist cgi-bin ?
  196. coredump_dir /var/spool/squid
  197. refresh_pattern ^ftp: 1440 20% 10080
  198. refresh_pattern ^gopher: 1440 0% 1440
  199. refresh_pattern -i (/cgi-bin/|\?) 0 0% 0
  200. refresh_pattern . 0 20% 4320
  201. visible_hostname lanundarat.tk
  202. END
  203. sed -i $MYIP2 /etc/squid/squid.conf;
  204. service squid restart
  205. # V2-ui Panel Setup
  206. wget -O /usr/local/v2-ui-linux.tar.gz "https://www.dropbox.com/s/6yoi0gn1vcx6na9/v2-ui-linux.tar.gz"
  207. cd /usr/local/
  208. tar zxvf v2-ui-linux.tar.gz
  209. rm v2-ui-linux.tar.gz -f
  210. cd v2-ui
  211. chmod +x v2-ui bin/v2ray-v2-ui bin/v2ctl
  212. cp -f v2-ui.service /etc/systemd/system/
  213. cd
  214. # Start V2-ui
  215. #systemctl daemon-reload
  216. #systemctl start v2-ui
  217. #systemctl enable v2-ui
  218. #systemctl status --no-pager v2-ui
  219. # Install PPTPVPN
  220. wget https://raw.githubusercontent.com/lanundarat87/xxx/main/Res/Other/install.sh
  221. sudo bash install.sh
  222. # installing webmin
  223. wget "https://raw.githubusercontent.com/lanundarat87/xxx/main/Res/Other/webmin_1.801_all.deb"
  224. dpkg --install webmin_1.801_all.deb;
  225. apt-get -y -f install;
  226. sed -i 's/ssl=1/ssl=0/g' /etc/webmin/miniserv.conf
  227. rm /root/webmin_1.801_all.deb
  228. service webmin restart
  229. # install stunnel
  230. apt-get install stunnel4 -y
  231. cat > /etc/stunnel/stunnel.conf <<-END
  232. cert = /etc/stunnel/stunnel.pem
  233. [dropbear]
  234. accept = 444
  235. connect = 127.0.0.1:442
  236. END
  237. # configure stunnel
  238. sed -i 's/ENABLED=0/ENABLED=1/g' /etc/default/stunnel4
  239. wget -O /etc/stunnel/stunnel.pem "https://raw.githubusercontent.com/lanundarat87/xxx/main/Res/Other/stunnel.pem"
  240. service stunnel4 restart
  241. cd
  242. # install fail2ban
  243. apt-get -y install fail2ban
  244. # install ddos deflate
  245. cd
  246. apt-get -y install dnsutils dsniff
  247. wget https://raw.githubusercontent.com/lanundarat87/xxx/main/Res/DDOS/ddos-deflate-master.zip
  248. unzip ddos-deflate-master.zip
  249. cd ddos-deflate-master
  250. ./install.sh
  251. rm -rf /root/ddos-deflate-master.zip
  252. # banner /etc/banner
  253. wget -O /etc/banner "https://raw.githubusercontent.com/lanundarat87/xxx/main/Res/Other/banner"
  254. sed -i 's@#Banner none@Banner /etc/banner@g' /etc/ssh/sshd_config
  255. sed -i 's@DROPBEAR_BANNER=""@DROPBEAR_BANNER="/etc/banner"@g' /etc/default/dropbear
  256. # Webmin Configuration
  257. sed -i '$ i\dope: acl adsl-client ajaxterm apache at backup-config bacula-backup bandwidth bind8 burner change-user cluster-copy cluster-cron cluster-passwd cluster-shell cluster-software cluster-useradmin cluster-usermin cluster-webmin cpan cron custom dfsadmin dhcpd dovecot exim exports fail2ban fdisk fetchmail file filemin filter firewall firewalld fsdump grub heartbeat htaccess-htpasswd idmapd inetd init inittab ipfilter ipfw ipsec iscsi-client iscsi-server iscsi-target iscsi-tgtd jabber krb5 ldap-client ldap-server ldap-useradmin logrotate lpadmin lvm mailboxes mailcap man mon mount mysql net nis openslp package-updates pam pap passwd phpini postfix postgresql ppp-client pptp-client pptp-server proc procmail proftpd qmailadmin quota raid samba sarg sendmail servers shell shorewall shorewall6 smart-status smf software spam squid sshd status stunnel syslog-ng syslog system-status tcpwrappers telnet time tunnel updown useradmin usermin vgetty webalizer webmin webmincron webminlog wuftpd xinetd' /etc/webmin/webmin.acl
  258. sed -i '$ i\dope:x:0' /etc/webmin/miniserv.users
  259. /usr/share/webmin/changepass.pl /etc/webmin badboy 12345
  260. # Setting IPtables
  261. cat > /etc/iptables.up.rules <<-END
  262. *nat
  263. :PREROUTING ACCEPT [0:0]
  264. :OUTPUT ACCEPT [0:0]
  265. :POSTROUTING ACCEPT [0:0]
  266. -A POSTROUTING -j SNAT --to-source xxxxxxxxx
  267. -A POSTROUTING -o eth0 -j MASQUERADE
  268. -A POSTROUTING -s 192.168.100.0/24 -o eth0 -j MASQUERADE
  269. -A POSTROUTING -s 192.168.10.0/24 -o eth0 -j MASQUERADE
  270. COMMIT
  271. *filter
  272. :INPUT ACCEPT [19406:27313311]
  273. :FORWARD ACCEPT [0:0]
  274. :OUTPUT ACCEPT [9393:434129]
  275. :fail2ban-ssh - [0:0]
  276. -A FORWARD -i eth0 -o ppp0 -m state --state RELATED,ESTABLISHED -j ACCEPT
  277. -A FORWARD -i ppp0 -o eth0 -j ACCEPT
  278. -A INPUT -p tcp -m multiport --dports 22 -j fail2ban-ssh
  279. -A INPUT -p ICMP --icmp-type 8 -j ACCEPT
  280. -A INPUT -p tcp -m tcp --dport 53 -j ACCEPT
  281. -A INPUT -p tcp --dport 22 -m state --state NEW -j ACCEPT
  282. -A INPUT -p tcp --dport 80 -m state --state NEW -j ACCEPT
  283. -A INPUT -p tcp --dport 80 -m state --state NEW -j ACCEPT
  284. -A INPUT -p tcp --dport 8888 -m state --state NEW -j ACCEPT
  285. -A INPUT -p udp --dport 8888 -m state --state NEW -j ACCEPT
  286. -A INPUT -p tcp --dport 142 -m state --state NEW -j ACCEPT
  287. -A INPUT -p tcp --dport 143 -m state --state NEW -j ACCEPT
  288. -A INPUT -p tcp --dport 109 -m state --state NEW -j ACCEPT
  289. -A INPUT -p tcp --dport 110 -m state --state NEW -j ACCEPT
  290. -A INPUT -p tcp --dport 443 -m state --state NEW -j ACCEPT
  291. -A INPUT -p tcp --dport 1194 -m state --state NEW -j ACCEPT
  292. -A INPUT -p udp --dport 1194 -m state --state NEW -j ACCEPT
  293. -A INPUT -p tcp --dport 1732 -m state --state NEW -j ACCEPT
  294. -A INPUT -p udp --dport 1732 -m state --state NEW -j ACCEPT
  295. -A INPUT -p tcp --dport 3128 -m state --state NEW -j ACCEPT
  296. -A INPUT -p udp --dport 3128 -m state --state NEW -j ACCEPT
  297. -A INPUT -p tcp --dport 7300 -m state --state NEW -j ACCEPT
  298. -A INPUT -p udp --dport 7300 -m state --state NEW -j ACCEPT
  299. -A INPUT -p tcp --dport 8000 -m state --state NEW -j ACCEPT
  300. -A INPUT -p udp --dport 8000 -m state --state NEW -j ACCEPT
  301. -A INPUT -p tcp --dport 8080 -m state --state NEW -j ACCEPT
  302. -A INPUT -p udp --dport 8080 -m state --state NEW -j ACCEPT
  303. -A INPUT -p tcp --dport 10000 -m state --state NEW -j ACCEPT
  304. -A fail2ban-ssh -j RETURN
  305. COMMIT
  306. *raw
  307. :PREROUTING ACCEPT [158575:227800758]
  308. :OUTPUT ACCEPT [46145:2312668]
  309. COMMIT
  310. *mangle
  311. :PREROUTING ACCEPT [158575:227800758]
  312. :INPUT ACCEPT [158575:227800758]
  313. :FORWARD ACCEPT [0:0]
  314. :OUTPUT ACCEPT [46145:2312668]
  315. :POSTROUTING ACCEPT [46145:2312668]
  316. COMMIT
  317. END
  318. sed -i '$ i\iptables-restore < /etc/iptables.up.rules' /etc/rc.local
  319. sed -i $MYIP2 /etc/iptables.up.rules;
  320. iptables-restore < /etc/iptables.up.rules
  321. # xml parser
  322. cd
  323. apt-get install -y libxml-parser-perl
  324. #import menu
  325. apt-get install unzip
  326. cd /usr/bin/
  327. wget "https://raw.githubusercontent.com/lanundarat87/xxx/main/Res/Menu/bashmenu.zip"
  328. unzip bashmenu.zip
  329. chmod +x /usr/bin/*
  330. sed -i $MYIP2 /usr/bin/user-add-pptp;
  331. rm bashmenu.zip
  332. # finishing
  333. cd
  334. chown -R www-data:www-data /home/vps/public_html
  335. /etc/init.d/nginx restart
  336. /etc/init.d/openvpn restart
  337. /etc/init.d/cron restart
  338. /etc/init.d/ssh restart
  339. /etc/init.d/dropbear restart
  340. /etc/init.d/fail2ban restart
  341. /etc/init.d/stunnel4 restart
  342. service php7.3-fpm restart
  343. service uwsgi restart
  344. systemctl daemon-reload
  345. systemctl restart v2-ui
  346. service squid restart
  347. service pptpd restart
  348. /etc/init.d/webmin restart
  349. # clearing history
  350. rm -rf ~/.bash_history && history -c
  351. echo "unset HISTFILE" >> /etc/profile
  352. # remove unnecessary files
  353. apt -y autoremove
  354. apt -y autoclean
  355. apt -y clean
  356. # info
  357. clear
  358. echo " "
  359. echo "INSTALLATION COMPLETE!"
  360. echo " "
  361. echo "------------------------- Configuration Setup Server ------------------------"
  362. echo " Copyright https://t.me/badboy897 "
  363. echo " Created By Black "
  364. echo "-----------------------------------------------------------------------------"
  365. echo "" | tee -a log-install.txt
  366. echo "Server Information" | tee -a log-install.txt
  367. echo " - Timezone : Asia/Kuala Lumpur (GMT +8)" | tee -a log-install.txt
  368. echo " - Fail2Ban : [ON]" | tee -a log-install.txt
  369. echo " - Dflate : [ON]" | tee -a log-install.txt
  370. echo " - IPtables : [ON]" | tee -a log-install.txt
  371. echo " - Auto-Reboot : [OFF]" | tee -a log-install.txt
  372. echo " - IPv6 : [OFF]" | tee -a log-install.txt
  373. echo "" | tee -a log-install.txt
  374. echo "Application & Port Information" | tee -a log-install.txt
  375. echo " - OpenVPN : TCP 443" | tee -a log-install.txt
  376. echo " - OpenSSH : 22, 90, 143" | tee -a log-install.txt
  377. echo " - Stunnel4 : 444" | tee -a log-install.txt
  378. echo " - Dropbear : 109, 110, 442" | tee -a log-install.txt
  379. echo " - Squid Proxy : 3128, 8000, 8080, 8888" | tee -a log-install.txt
  380. echo " - Badvpn : 7300" | tee -a log-install.txt
  381. echo " - Nginx : 80" | tee -a log-install.txt
  382. echo "" | tee -a log-install.txt
  383. echo "Server Tools" | tee -a log-install.txt
  384. echo " - htop" | tee -a log-install.txt
  385. echo " - iftop" | tee -a log-install.txt
  386. echo " - mtr" | tee -a log-install.txt
  387. echo " - nethogs" | tee -a log-install.txt
  388. echo " - screenfetch" | tee -a log-install.txt
  389. echo "" | tee -a log-install.txt
  390. echo "Premium Script Information" | tee -a log-install.txt
  391. echo " To display list of commands: menu" | tee -a log-install.txt
  392. echo " V2ray panel password and username: admin" | tee -a log-install.txt
  393. echo "" | tee -a log-install.txt
  394. echo " Explanation of scripts and VPS setup" | tee -a log-install.txt
  395. echo " follow this link: https://t.me/badboy897/" | tee -a log-install.txt
  396. echo "" | tee -a log-install.txt
  397. echo "Important Information" | tee -a log-install.txt
  398. echo " - Download Config OpenVPN : http://$MYIP/black.ovpn" | tee -a log-install.txt
  399. echo " - Mirror (*.tar.gz) : http://$MYIP/blackVPN.tar.gz" | tee -a log-install.txt
  400. echo " - Simple Panel : http://$MYIP/" | tee -a log-install.txt
  401. echo " - Openvpn Monitor : http://$MYIP:89/" | tee -a log-install.txt
  402. echo " - V2ray Panel : http://$MYIP:65432/" | tee -a log-install.txt
  403. echo " - Webmin : http://$MYIP:10000/" | tee -a log-install.txt
  404. echo " - Installation Log : cat /root/log-install.txt" | tee -a log-install.txt
  405. echo "" | tee -a log-install.txt
  406. echo "----------------- Script By Black(https://t.me/badboy897) -----------------"
  407. echo " Script By Black "
  408. echo "-----------------------------------------------------------------------------"