|
@@ -5,8 +5,20 @@ green='\033[0;32m'
|
|
|
yellow='\033[0;33m'
|
|
|
plain='\033[0m'
|
|
|
|
|
|
+#Add some basic function here
|
|
|
+function LOGD() {
|
|
|
+ echo -e "${yellow}[DEG] $* ${plain}"
|
|
|
+}
|
|
|
+
|
|
|
+function LOGE() {
|
|
|
+ echo -e "${red}[ERR] $* ${plain}"
|
|
|
+}
|
|
|
+
|
|
|
+function LOGI() {
|
|
|
+ echo -e "${green}[INF] $* ${plain}"
|
|
|
+}
|
|
|
# check root
|
|
|
-[[ $EUID -ne 0 ]] && echo -e "${red}错误: ${plain} 必须使用root用户运行此脚本!\n" && exit 1
|
|
|
+[[ $EUID -ne 0 ]] && LOGE "错误: 必须使用root用户运行此脚本!\n" && exit 1
|
|
|
|
|
|
# check os
|
|
|
if [[ -f /etc/redhat-release ]]; then
|
|
@@ -24,7 +36,7 @@ elif cat /proc/version | grep -Eqi "ubuntu"; then
|
|
|
elif cat /proc/version | grep -Eqi "centos|red hat|redhat"; then
|
|
|
release="centos"
|
|
|
else
|
|
|
- echo -e "${red}未检测到系统版本,请联系脚本作者!${plain}\n" && exit 1
|
|
|
+ LOGE "未检测到系统版本,请联系脚本作者!\n" && exit 1
|
|
|
fi
|
|
|
|
|
|
os_version=""
|
|
@@ -39,15 +51,15 @@ fi
|
|
|
|
|
|
if [[ x"${release}" == x"centos" ]]; then
|
|
|
if [[ ${os_version} -le 6 ]]; then
|
|
|
- echo -e "${red}请使用 CentOS 7 或更高版本的系统!${plain}\n" && exit 1
|
|
|
+ LOGE "请使用 CentOS 7 或更高版本的系统!\n" && exit 1
|
|
|
fi
|
|
|
elif [[ x"${release}" == x"ubuntu" ]]; then
|
|
|
if [[ ${os_version} -lt 16 ]]; then
|
|
|
- echo -e "${red}请使用 Ubuntu 16 或更高版本的系统!${plain}\n" && exit 1
|
|
|
+ LOGE "请使用 Ubuntu 16 或更高版本的系统!\n" && exit 1
|
|
|
fi
|
|
|
elif [[ x"${release}" == x"debian" ]]; then
|
|
|
if [[ ${os_version} -lt 8 ]]; then
|
|
|
- echo -e "${red}请使用 Debian 8 或更高版本的系统!${plain}\n" && exit 1
|
|
|
+ LOGE "请使用 Debian 8 或更高版本的系统!\n" && exit 1
|
|
|
fi
|
|
|
fi
|
|
|
|
|
@@ -82,7 +94,7 @@ before_show_menu() {
|
|
|
}
|
|
|
|
|
|
install() {
|
|
|
- bash <(curl -Ls https://raw.githubusercontent.com/vaxilu/x-ui/master/install.sh)
|
|
|
+ bash <(curl -Ls https://raw.githubusercontent.com/FranzKafkaYu/x-ui/main/x-ui.sh)
|
|
|
if [[ $? == 0 ]]; then
|
|
|
if [[ $# == 0 ]]; then
|
|
|
start
|
|
@@ -95,15 +107,15 @@ install() {
|
|
|
update() {
|
|
|
confirm "本功能会强制重装当前最新版,数据不会丢失,是否继续?" "n"
|
|
|
if [[ $? != 0 ]]; then
|
|
|
- echo -e "${red}已取消${plain}"
|
|
|
+ LOGE "已取消"
|
|
|
if [[ $# == 0 ]]; then
|
|
|
before_show_menu
|
|
|
fi
|
|
|
return 0
|
|
|
fi
|
|
|
- bash <(curl -Ls https://raw.githubusercontent.com/vaxilu/x-ui/master/install.sh)
|
|
|
+ bash <(curl -Ls https://raw.githubusercontent.com/FranzKafkaYu/x-ui/main/x-ui.sh)
|
|
|
if [[ $? == 0 ]]; then
|
|
|
- echo -e "${green}更新完成,已自动重启面板${plain}"
|
|
|
+ LOGI "更新完成,已自动重启面板 "
|
|
|
exit 0
|
|
|
fi
|
|
|
}
|
|
@@ -162,7 +174,7 @@ reset_config() {
|
|
|
set_port() {
|
|
|
echo && echo -n -e "输入端口号[1-65535]: " && read port
|
|
|
if [[ -z "${port}" ]]; then
|
|
|
- echo -e "${yellow}已取消${plain}"
|
|
|
+ LOGD "已取消"
|
|
|
before_show_menu
|
|
|
else
|
|
|
/usr/local/x-ui/x-ui setting -port ${port}
|
|
@@ -175,15 +187,15 @@ start() {
|
|
|
check_status
|
|
|
if [[ $? == 0 ]]; then
|
|
|
echo ""
|
|
|
- echo -e "${green}面板已运行,无需再次启动,如需重启请选择重启${plain}"
|
|
|
+ LOGI "面板已运行,无需再次启动,如需重启请选择重启"
|
|
|
else
|
|
|
systemctl start x-ui
|
|
|
sleep 2
|
|
|
check_status
|
|
|
if [[ $? == 0 ]]; then
|
|
|
- echo -e "${green}x-ui 启动成功${plain}"
|
|
|
+ LOGI "x-ui 启动成功"
|
|
|
else
|
|
|
- echo -e "${red}面板启动失败,可能是因为启动时间超过了两秒,请稍后查看日志信息${plain}"
|
|
|
+ LOGE "面板启动失败,可能是因为启动时间超过了两秒,请稍后查看日志信息"
|
|
|
fi
|
|
|
fi
|
|
|
|
|
@@ -196,15 +208,15 @@ stop() {
|
|
|
check_status
|
|
|
if [[ $? == 1 ]]; then
|
|
|
echo ""
|
|
|
- echo -e "${green}面板已停止,无需再次停止${plain}"
|
|
|
+ LOGI "面板已停止,无需再次停止"
|
|
|
else
|
|
|
systemctl stop x-ui
|
|
|
sleep 2
|
|
|
check_status
|
|
|
if [[ $? == 1 ]]; then
|
|
|
- echo -e "${green}x-ui 与 xray 停止成功${plain}"
|
|
|
+ LOGI "x-ui 与 xray 停止成功"
|
|
|
else
|
|
|
- echo -e "${red}面板停止失败,可能是因为停止时间超过了两秒,请稍后查看日志信息${plain}"
|
|
|
+ LOGE "面板停止失败,可能是因为停止时间超过了两秒,请稍后查看日志信息"
|
|
|
fi
|
|
|
fi
|
|
|
|
|
@@ -218,9 +230,9 @@ restart() {
|
|
|
sleep 2
|
|
|
check_status
|
|
|
if [[ $? == 0 ]]; then
|
|
|
- echo -e "${green}x-ui 与 xray 重启成功${plain}"
|
|
|
+ LOGI "x-ui 与 xray 重启成功"
|
|
|
else
|
|
|
- echo -e "${red}面板重启失败,可能是因为启动时间超过了两秒,请稍后查看日志信息${plain}"
|
|
|
+ LOGE "面板重启失败,可能是因为启动时间超过了两秒,请稍后查看日志信息"
|
|
|
fi
|
|
|
if [[ $# == 0 ]]; then
|
|
|
before_show_menu
|
|
@@ -237,9 +249,9 @@ status() {
|
|
|
enable() {
|
|
|
systemctl enable x-ui
|
|
|
if [[ $? == 0 ]]; then
|
|
|
- echo -e "${green}x-ui 设置开机自启成功${plain}"
|
|
|
+ LOGI "x-ui 设置开机自启成功"
|
|
|
else
|
|
|
- echo -e "${red}x-ui 设置开机自启失败${plain}"
|
|
|
+ LOGE "x-ui 设置开机自启失败"
|
|
|
fi
|
|
|
|
|
|
if [[ $# == 0 ]]; then
|
|
@@ -250,9 +262,9 @@ enable() {
|
|
|
disable() {
|
|
|
systemctl disable x-ui
|
|
|
if [[ $? == 0 ]]; then
|
|
|
- echo -e "${green}x-ui 取消开机自启成功${plain}"
|
|
|
+ LOGI "x-ui 取消开机自启成功"
|
|
|
else
|
|
|
- echo -e "${red}x-ui 取消开机自启失败${plain}"
|
|
|
+ LOGE "x-ui 取消开机自启失败"
|
|
|
fi
|
|
|
|
|
|
if [[ $# == 0 ]]; then
|
|
@@ -281,14 +293,14 @@ install_bbr() {
|
|
|
}
|
|
|
|
|
|
update_shell() {
|
|
|
- wget -O /usr/bin/x-ui -N --no-check-certificate https://github.com/vaxilu/x-ui/raw/master/x-ui.sh
|
|
|
+ wget -O /usr/bin/x-ui -N --no-check-certificate https://raw.githubusercontent.com/FranzKafkaYu/x-ui/main/x-ui.sh
|
|
|
if [[ $? != 0 ]]; then
|
|
|
echo ""
|
|
|
- echo -e "${red}下载脚本失败,请检查本机能否连接 Github${plain}"
|
|
|
+ LOGE "下载脚本失败,请检查本机能否连接 Github"
|
|
|
before_show_menu
|
|
|
else
|
|
|
chmod +x /usr/bin/x-ui
|
|
|
- echo -e "${green}升级脚本成功,请重新运行脚本${plain}" && exit 0
|
|
|
+ LOGI "升级脚本成功,请重新运行脚本" && exit 0
|
|
|
fi
|
|
|
}
|
|
|
|
|
@@ -310,7 +322,7 @@ check_enabled() {
|
|
|
if [[ x"${temp}" == x"enabled" ]]; then
|
|
|
return 0
|
|
|
else
|
|
|
- return 1;
|
|
|
+ return 1
|
|
|
fi
|
|
|
}
|
|
|
|
|
@@ -318,7 +330,7 @@ check_uninstall() {
|
|
|
check_status
|
|
|
if [[ $? != 2 ]]; then
|
|
|
echo ""
|
|
|
- echo -e "${red}面板已安装,请不要重复安装${plain}"
|
|
|
+ LOGE "面板已安装,请不要重复安装"
|
|
|
if [[ $# == 0 ]]; then
|
|
|
before_show_menu
|
|
|
fi
|
|
@@ -332,7 +344,7 @@ check_install() {
|
|
|
check_status
|
|
|
if [[ $? == 2 ]]; then
|
|
|
echo ""
|
|
|
- echo -e "${red}请先安装面板${plain}"
|
|
|
+ LOGE "请先安装面板"
|
|
|
if [[ $# == 0 ]]; then
|
|
|
before_show_menu
|
|
|
fi
|
|
@@ -345,16 +357,17 @@ check_install() {
|
|
|
show_status() {
|
|
|
check_status
|
|
|
case $? in
|
|
|
- 0)
|
|
|
- echo -e "面板状态: ${green}已运行${plain}"
|
|
|
- show_enable_status
|
|
|
- ;;
|
|
|
- 1)
|
|
|
- echo -e "面板状态: ${yellow}未运行${plain}"
|
|
|
- show_enable_status
|
|
|
- ;;
|
|
|
- 2)
|
|
|
- echo -e "面板状态: ${red}未安装${plain}"
|
|
|
+ 0)
|
|
|
+ echo -e "面板状态: ${green}已运行${plain}"
|
|
|
+ show_enable_status
|
|
|
+ ;;
|
|
|
+ 1)
|
|
|
+ echo -e "面板状态: ${yellow}未运行${plain}"
|
|
|
+ show_enable_status
|
|
|
+ ;;
|
|
|
+ 2)
|
|
|
+ echo -e "面板状态: ${red}未安装${plain}"
|
|
|
+ ;;
|
|
|
esac
|
|
|
show_xray_status
|
|
|
}
|
|
@@ -386,6 +399,81 @@ show_xray_status() {
|
|
|
fi
|
|
|
}
|
|
|
|
|
|
+ssl_cert_issue() {
|
|
|
+ echo -E ""
|
|
|
+ LOGD "******使用说明******"
|
|
|
+ LOGI "该脚本将使用Acme脚本申请证书,使用时需保证:"
|
|
|
+ LOGI "1.知晓Cloudflare 注册邮箱"
|
|
|
+ LOGI "2.知晓Cloudflare Global API Key"
|
|
|
+ LOGI "3.域名已通过Cloudflare进行解析到当前服务器"
|
|
|
+ LOGI "4.该脚本申请证书默认安装路径为/root/cert目录"
|
|
|
+ confirm "我已确认以上内容[y/n]" "y"
|
|
|
+ if [ $? -eq 0 ]; then
|
|
|
+ cd ~
|
|
|
+ LOGI "安装Acme脚本"
|
|
|
+ curl https://get.acme.sh | sh
|
|
|
+ if [ $? -ne 0 ]; then
|
|
|
+ LOGE "安装acme脚本失败"
|
|
|
+ exit 1
|
|
|
+ fi
|
|
|
+ CF_Domain=""
|
|
|
+ CF_GlobalKey=""
|
|
|
+ CF_AccountEmail=""
|
|
|
+ certPath=/root/cert
|
|
|
+ if [ ! -d "$certPath" ]; then
|
|
|
+ mkdir $certPath
|
|
|
+ else
|
|
|
+ rm -rf $certPath
|
|
|
+ mkdir $certPath
|
|
|
+ fi
|
|
|
+ LOGD "请设置域名:"
|
|
|
+ read -p "Input your domain here:" CF_Domain
|
|
|
+ LOGD "你的域名设置为:${CF_Domain}"
|
|
|
+ LOGD "请设置API密钥:"
|
|
|
+ read -p "Input your key here:" CF_GlobalKey
|
|
|
+ LOGD "你的API密钥为:${CF_GlobalKey}"
|
|
|
+ LOGD "请设置注册邮箱:"
|
|
|
+ read -p "Input your email here:" CF_AccountEmail
|
|
|
+ LOGD "你的注册邮箱为:${CF_AccountEmail}"
|
|
|
+ ~/.acme.sh/acme.sh --set-default-ca --server letsencrypt
|
|
|
+ if [ $? -ne 0 ]; then
|
|
|
+ LOGE "修改默认CA为Lets'Encrypt失败,脚本退出"
|
|
|
+ exit 1
|
|
|
+ fi
|
|
|
+ export CF_Key="${CF_GlobalKey}"
|
|
|
+ export CF_Email=${CF_AccountEmail}
|
|
|
+ ~/.acme.sh/acme.sh --issue --dns dns_cf -d ${CF_Domain} -d *.${CF_Domain} --log
|
|
|
+ if [ $? -ne 0 ]; then
|
|
|
+ LOGDE "证书签发失败,脚本退出"
|
|
|
+ exit 1
|
|
|
+ else
|
|
|
+ LOGDI "证书签发成功,安装中..."
|
|
|
+ fi
|
|
|
+ ~/.acme.sh/acme.sh --installcert -d ${CF_Domain} -d *.${CF_Domain} --ca-file /root/cert/ca.cer \
|
|
|
+ --cert-file /root/cert/${CF_Domain}.cer --key-file /root/cert/${CF_Domain}.key \
|
|
|
+ --fullchain-file /root/cert/fullchain.cer
|
|
|
+ if [ $? -ne 0 ]; then
|
|
|
+ LOGE "证书安装失败,脚本退出"
|
|
|
+ exit 1
|
|
|
+ else
|
|
|
+ LOGDI "证书安装成功,开启自动更新..."
|
|
|
+ fi
|
|
|
+ ~/.acme.sh/acme.sh --upgrade --auto-upgrade
|
|
|
+ if [ $? -ne 0 ]; then
|
|
|
+ LOGE "自动更新设置失败,脚本退出"
|
|
|
+ ls -lah cert
|
|
|
+ chmod 755 $certPath
|
|
|
+ exit 1
|
|
|
+ else
|
|
|
+ LOGI "证书已安装且已开启自动更新,具体信息如下"
|
|
|
+ ls -lah cert
|
|
|
+ chmod 755 $certPath
|
|
|
+ fi
|
|
|
+ else
|
|
|
+ show_menu
|
|
|
+ fi
|
|
|
+}
|
|
|
+
|
|
|
show_usage() {
|
|
|
echo "x-ui 管理脚本使用方法: "
|
|
|
echo "------------------------------------------"
|
|
@@ -427,72 +515,102 @@ show_menu() {
|
|
|
${green}13.${plain} 取消 x-ui 开机自启
|
|
|
————————————————
|
|
|
${green}14.${plain} 一键安装 bbr (最新内核)
|
|
|
+ ${green}15.${plain} 一键申请SSL证书(acme申请)
|
|
|
"
|
|
|
show_status
|
|
|
echo && read -p "请输入选择 [0-14]: " num
|
|
|
|
|
|
case "${num}" in
|
|
|
- 0) exit 0
|
|
|
+ 0)
|
|
|
+ exit 0
|
|
|
+ ;;
|
|
|
+ 1)
|
|
|
+ check_uninstall && install
|
|
|
;;
|
|
|
- 1) check_uninstall && install
|
|
|
+ 2)
|
|
|
+ check_install && update
|
|
|
;;
|
|
|
- 2) check_install && update
|
|
|
+ 3)
|
|
|
+ check_install && uninstall
|
|
|
;;
|
|
|
- 3) check_install && uninstall
|
|
|
+ 4)
|
|
|
+ check_install && reset_user
|
|
|
;;
|
|
|
- 4) check_install && reset_user
|
|
|
+ 5)
|
|
|
+ check_install && reset_config
|
|
|
;;
|
|
|
- 5) check_install && reset_config
|
|
|
+ 6)
|
|
|
+ check_install && set_port
|
|
|
;;
|
|
|
- 6) check_install && set_port
|
|
|
+ 7)
|
|
|
+ check_install && start
|
|
|
;;
|
|
|
- 7) check_install && start
|
|
|
+ 8)
|
|
|
+ check_install && stop
|
|
|
;;
|
|
|
- 8) check_install && stop
|
|
|
+ 9)
|
|
|
+ check_install && restart
|
|
|
;;
|
|
|
- 9) check_install && restart
|
|
|
+ 10)
|
|
|
+ check_install && status
|
|
|
;;
|
|
|
- 10) check_install && status
|
|
|
+ 11)
|
|
|
+ check_install && show_log
|
|
|
;;
|
|
|
- 11) check_install && show_log
|
|
|
+ 12)
|
|
|
+ check_install && enable
|
|
|
;;
|
|
|
- 12) check_install && enable
|
|
|
+ 13)
|
|
|
+ check_install && disable
|
|
|
;;
|
|
|
- 13) check_install && disable
|
|
|
+ 14)
|
|
|
+ install_bbr
|
|
|
;;
|
|
|
- 14) install_bbr
|
|
|
+ 15)
|
|
|
+ ssl_cert_issue
|
|
|
;;
|
|
|
- *) echo -e "${red}请输入正确的数字 [0-14]${plain}"
|
|
|
+ *)
|
|
|
+ LOGE "请输入正确的数字 [0-14]"
|
|
|
;;
|
|
|
esac
|
|
|
}
|
|
|
|
|
|
-
|
|
|
if [[ $# > 0 ]]; then
|
|
|
case $1 in
|
|
|
- "start") check_install 0 && start 0
|
|
|
+ "start")
|
|
|
+ check_install 0 && start 0
|
|
|
;;
|
|
|
- "stop") check_install 0 && stop 0
|
|
|
+ "stop")
|
|
|
+ check_install 0 && stop 0
|
|
|
;;
|
|
|
- "restart") check_install 0 && restart 0
|
|
|
+ "restart")
|
|
|
+ check_install 0 && restart 0
|
|
|
;;
|
|
|
- "status") check_install 0 && status 0
|
|
|
+ "status")
|
|
|
+ check_install 0 && status 0
|
|
|
;;
|
|
|
- "enable") check_install 0 && enable 0
|
|
|
+ "enable")
|
|
|
+ check_install 0 && enable 0
|
|
|
;;
|
|
|
- "disable") check_install 0 && disable 0
|
|
|
+ "disable")
|
|
|
+ check_install 0 && disable 0
|
|
|
;;
|
|
|
- "log") check_install 0 && show_log 0
|
|
|
+ "log")
|
|
|
+ check_install 0 && show_log 0
|
|
|
;;
|
|
|
- "v2-ui") check_install 0 && migrate_v2_ui 0
|
|
|
+ "v2-ui")
|
|
|
+ check_install 0 && migrate_v2_ui 0
|
|
|
;;
|
|
|
- "update") check_install 0 && update 0
|
|
|
+ "update")
|
|
|
+ check_install 0 && update 0
|
|
|
;;
|
|
|
- "install") check_uninstall 0 && install 0
|
|
|
+ "install")
|
|
|
+ check_uninstall 0 && install 0
|
|
|
;;
|
|
|
- "uninstall") check_install 0 && uninstall 0
|
|
|
+ "uninstall")
|
|
|
+ check_install 0 && uninstall 0
|
|
|
;;
|
|
|
- *) show_usage
|
|
|
+ *) show_usage ;;
|
|
|
esac
|
|
|
else
|
|
|
show_menu
|