123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- #!/bin/bash
- red="\e[1;31m"
- green="\e[0;32m"
- NC="\e[0m"
- status="$(systemctl show ssh.service --no-page)"
- status_text=$(echo "${status}" | grep 'ActiveState=' | cut -f2 -d=)
- if [ "${status_text}" == "active" ]
- then
- echo -e " SSH : SSH Service is "$green"running"$NC""
- else
- echo -e " SSh : SSH Service is "$red"not running (Error)"$NC""
- fi
- status="$(systemctl show stunnel4.service --no-page)"
- status_text=$(echo "${status}" | grep 'ActiveState=' | cut -f2 -d=)
- if [ "${status_text}" == "active" ]
- then
- echo -e " Stunnel : Stunnel Service is "$green"running"$NC""
- else
- echo -e " Stunnel : Stunnel Service is "$red"not running (Error)"$NC""
- fi
- status="$(systemctl show dropbear.service --no-page)"
- status_text=$(echo "${status}" | grep 'ActiveState=' | cut -f2 -d=)
- if [ "${status_text}" == "active" ]
- then
- echo -e " DropBear : DropBear Service is "$green"running"$NC""
- else
- echo -e " DropBear : DropBear Service is "$red"not running (Error)"$NC""
- fi
- status="$(systemctl show v2ray@none.service --no-page)"
- status_text=$(echo "${status}" | grep 'ActiveState=' | cut -f2 -d=)
- if [ "${status_text}" == "active" ]
- then
- echo -e " V2ray Non TLS : V2ray Non TLS Service is "$green"running"$NC""
- else
- echo -e " V2ray Non TLS : V2ray Non TLS Service is "$red"not running (Error)"$NC""
- fi
- status="$(systemctl show v2ray.service --no-page)"
- status_text=$(echo "${status}" | grep 'ActiveState=' | cut -f2 -d=)
- if [ "${status_text}" == "active" ]
- then
- echo -e " V2ray TLS : V2ray TLS Service is "$green"running"$NC""
- else
- echo -e " V2ray TLS : V2ray TLS Service is "$red"not running (Error)"$NC""
- fi
- status="$(systemctl show v2ray@vless.service --no-page)"
- status_text=$(echo "${status}" | grep 'ActiveState=' | cut -f2 -d=)
- if [ "${status_text}" == "active" ]
- then
- echo -e " Vless TLS : Vless TLS Service is "$green"running"$NC""
- else
- echo -e " Vless TLS : Vless TLS Service is "$red"not running (Error)"$NC""
- fi
- status="$(systemctl show v2ray@vnone.service --no-page)"
- status_text=$(echo "${status}" | grep 'ActiveState=' | cut -f2 -d=)
- if [ "${status_text}" == "active" ]
- then
- echo -e " Vless Non TLS : Vless Non TLS Service is "$green"running"$NC""
- else
- echo -e " Vless Non TLS : Vless Non TLS Service is "$red"not running (Error)"$NC""
- fi
- status="$(systemctl show trojan --no-page)"
- status_text=$(echo "${status}" | grep 'ActiveState=' | cut -f2 -d=)
- if [ "${status_text}" == "active" ]
- then
- echo -e " Trojan : Trojan Service is "$green"running"$NC""
- else
- echo -e " Trojan : Trojan Service is "$red"not running (Error)"$NC""
- fi
- status="$(systemctl show squid.service --no-page)"
- status_text=$(echo "${status}" | grep 'ActiveState=' | cut -f2 -d=)
- if [ "${status_text}" == "active" ]
- then
- echo -e " Squid : Squid Service is "$green"running"$NC""
- else
- echo -e " Squid : Squid Service is "$red"not running (Error)"$NC""
- fi
- status="$(systemctl show openvpn.service --no-page)"
- status_text=$(echo "${status}" | grep 'ActiveState=' | cut -f2 -d=)
- if [ "${status_text}" == "active" ]
- then
- echo -e " Openvpn : Openvpn Service is "$green"running"$NC""
- else
- echo -e " Openvpn : Openvpn Service is "$red"not running (Error)"$NC""
- fi
- status="$(systemctl show wg-quick@wg0 --no-page)"
- status_text=$(echo "${status}" | grep 'ActiveState=' | cut -f2 -d=)
- if [ "${status_text}" == "active" ]
- then
- echo -e " Wireguard : Wireguard Service is "$green"running"$NC""
- else
- echo -e " Wireguard : Wireguard Service is "$red"not running (Error)"$NC""
- fi
- status="$(systemctl show accel-ppp.service --no-page)"
- status_text=$(echo "${status}" | grep 'ActiveState=' | cut -f2 -d=)
- if [ "${status_text}" == "active" ]
- then
- echo -e " SSTP : SSTP Service is "$green"running"$NC""
- else
- echo -e " SSTP : SSTP Service is "$red"not running (Error)"$NC""
- fi
- status="$(systemctl show ssrmu --no-page)"
- status_text=$(echo "${status}" | grep 'ActiveState=' | cut -f2 -d=)
- if [ "${status_text}" == "active" ]
- then
- echo -e " SSR : SSR Service is "$green"running"$NC""
- else
- echo -e " SSR : SSR Service is "$red"not running (Error)"$NC""
- fi
- status="$(systemctl show shadowsocks-libev.service --no-page)"
- status_text=$(echo "${status}" | grep 'ActiveState=' | cut -f2 -d=)
- if [ "${status_text}" == "active" ]
- then
- echo -e " Shadowsocks : Shadowsocks Service is "$green"running"$NC""
- else
- echo -e " Shadowsocks : Sadhowsocks Service is "$red"not running (Error)"$NC""
- fi
- status="$(systemctl show xl2tpd.service --no-page)"
- status_text=$(echo "${status}" | grep 'ActiveState=' | cut -f2 -d=)
- if [ "${status_text}" == "active" ]
- then
- echo -e " L2tp : L2tp Service is "$green"running"$NC""
- else
- echo -e " L2tp : L2tp Service is "$red"not running (Error)"$NC""
- fi
- status="$(systemctl show pptpd.service --no-page)"
- status_text=$(echo "${status}" | grep 'ActiveState=' | cut -f2 -d=)
- if [ "${status_text}" == "active" ]
- then
- echo -e " PPTP : PPTP Service is "$green"running"$NC""
- else
- echo -e " PPTP : PPTP Service is "$red"not running (Error)"$NC""
- fi
- status="$(systemctl show nginx.service --no-page)"
- status_text=$(echo "${status}" | grep 'ActiveState=' | cut -f2 -d=)
- if [ "${status_text}" == "active" ]
- then
- echo -e " Nginx : Nginx Service is "$green"running"$NC""
- else
- echo -e " Nginx : Nginx Service is "$red"not running (Error)"$NC""
- fi
|