1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430
| #!/bin/bash
RED="\033[91m" GREEN="\033[92m" YELLOW="\033[93m" BLUE="\033[94m" PLAIN='\033[0m'
SITES=( https://www.baidu.com https://www.taobao.com https://www.jd.com https://www.bilibili.com https://www.zhihu.com https://www.weibo.com https://www.qq.com https://www.163.com https://www.douyin.com https://www.toutiao.com )
V2RAY_CONFIG_FILE="/etc/v2ray/config.json" V2RAY_SERVICE_FILE="/etc/systemd/system/v2ray.service" OS=$(hostnamectl | grep -i system | cut -d: -f2)
NGINX_CONF_PATH="/etc/nginx/conf.d/" XTLS="false"
LOG_FILE="/var/log/check_update_cert.log" CHECK_SCRIPT_PATH="/root/check_update_cert.sh" CERT_DIRS=("/etc/nginx/ssl" "/etc/v2ray/") BACKUP_DIR="/root/ssl" ACME_HOME="/root/.acme.sh" RELOAD_CMD="systemctl restart nginx && systemctl restart v2ray" EXP_DAYS=30 ADMIN_EMAIL="neko.wongrs@gmail.com"
colorEcho() { echo -e "${1}${@:2}${PLAIN}" }
check_v4_v6(){ v6=$(curl -s6m8 api64.ipify.org -k) v4=$(curl -s4m8 api64.ipify.org -k) }
check_env(){ colorEcho $YELLOW "正在检查VPS的IP配置环境, 请稍等..." && sleep 1 WgcfIPv4Status=$(curl -s4m8 https://www.cloudflare.com/cdn-cgi/trace -k | grep warp | cut -d= -f2) WgcfIPv6Status=$(curl -s6m8 https://www.cloudflare.com/cdn-cgi/trace -k | grep warp | cut -d= -f2) if [[ $WgcfIPv4Status =~ "on"|"plus" ]] || [[ $WgcfIPv6Status =~ "on"|"plus" ]]; then wg-quick down wgcf >/dev/null 2>&1 systemctl stop warp-go >/dev/null 2>&1 check_v4_v6 wg-quick up wgcf >/dev/null 2>&1 systemctl start warp-go >/dev/null 2>&1 else check_v4_v6 if [[ -z $v4 && -n $v6 ]]; then colorEcho $GREEN "检测到为纯IPv6 VPS, 已自动添加DNS64解析服务器" echo -e "nameserver 2a01:4f8:c2c:123f::1" > /etc/resolv.conf IP=$v6 ipv6Status="on" else IP=$v4 fi fi }
check_system(){ if [[ $(id -u) -ne "0" ]]; then colorEcho $RED "请以root身份执行该脚本" exit 1 fi if ! res=$(which yum 2>/dev/null); then if ! res=$(which apt 2>/dev/null); then colorEcho $RED "不支持的Linux系统" colorEcho $GREEN "只支持的包管理器为apt或yum的Linux系统" exit 1 fi PMT="apt" CMD_INSTALL="apt install -y " CMD_REMOVE="apt remove -y " CMD_UPGRADE="apt update -y && apt upgrade -y && apt autoremove -y" else PMT="yum" CMD_INSTALL="yum install -y " CMD_REMOVE="yum remove -y " CMD_UPGRADE="yum update -y" fi if ! res=$(which systemctl 2>/dev/null); then colorEcho $RED "系统版本过低,请升级到最新版本" exit 1 fi }
config_need_nginx(){ [[ -n $(grep wsSettings $V2RAY_CONFIG_FILE) ]] && echo "yes" || echo "no" }
stop_nginx(){ if systemctl list-unit-files | grep -q nginx.service; then systemctl stop nginx else if [[ -n $(ps -ef | grep -i nginx | grep -v grep) ]]; then nginx -s stop fi fi }
start_nginx() { if systemctl list-unit-files | grep -q nginx.service; then systemctl start nginx else if which nginx &> /dev/null; then nginx else colorEcho $RED "Nginx未安装,请先安装!" exit 1 fi fi if [[ $? -ne 0 ]]; then colorEcho $RED "Nginx启动失败,请检查配置!" exit 1 fi }
v2ray_status(){ if [[ ! -f /usr/bin/v2ray/v2ray ]]; then echo 0 return fi if [[ ! -f $V2RAY_CONFIG_FILE ]]; then echo 1 return fi port=$(grep port $V2RAY_CONFIG_FILE | head -n 1| cut -d: -f2| tr -d \",' ') res=$(ss -nutlp| grep ${port} | grep -i v2ray)
if [[ -z $res ]]; then echo 2 return fi if [[ $(config_need_nginx) != "yes" ]]; then echo 3 else res=$(ss -nutlp | grep -i nginx) if [[ -z $res ]]; then echo 4 else echo 5 fi fi }
v2ray_status_result(){ res=$(v2ray_status) case $res in 2) echo -e ${GREEN}已安装${PLAIN} ${RED}未运行${PLAIN} ;; 3) echo -e ${GREEN}已安装${PLAIN} ${GREEN}V2ray正在运行${PLAIN} ;; 4) echo -e ${GREEN}已安装${PLAIN} ${GREEN}V2ray正在运行${PLAIN}, ${RED}Nginx未运行${PLAIN} ;; 5) echo -e ${GREEN}已安装${PLAIN} ${GREEN}V2ray正在运行, Nginx正在运行${PLAIN} ;; *) echo -e ${RED}未安装${PLAIN} ;; esac }
start(){ res=$(v2ray_status) if [[ $res -lt 2 ]]; then colorEcho $RED " V2ray未安装,请先安装!" return fi stop_nginx start_nginx systemctl restart v2ray sleep 2 port=$(grep port $V2RAY_CONFIG_FILE | head -n 1| cut -d: -f2 | tr -d \",' ') res=$(ss -nutlp| grep ${port} | grep -i v2ray) if [[ $res = "" ]]; then colorEcho $RED " v2ray启动失败,请检查日志或查看端口是否被占用!" else colorEcho $BLUE " v2ray启动成功" fi }
stop(){ stop_nginx systemctl stop v2ray colorEcho $BLUE " V2ray停止成功" }
restart(){ res=$(v2ray_status) if [[ $res -lt 2 ]]; then colorEcho $RED " V2ray未安装,请先安装!" return fi stop start }
update(){ res=$(v2ray_status) if [[ $res -lt 2 ]]; then colorEcho $RED " V2ray未安装,请先安装!" return fi
get_version RETVAL=$? if [[ $RETVAL == 0 ]]; then colorEcho $BLUE " V2ray最新版 ${CUR_VER} 已经安装" elif [[ $RETVAL == 3 ]]; then exit 1 else colorEcho $BLUE " 安装V2Ray ${NEW_VER} ,架构$(archAffix)" stop install_v2ray start colorEcho $GREEN " 最新版V2ray安装成功!" fi }
uninstall(){ res=$(v2ray_status) if [[ $res -lt 2 ]]; then colorEcho $RED " V2ray未安装,请先安装!" return fi
echo "" read -p " 确定卸载V2ray?[y/n]:" answer if [[ ${answer,,} = "y" ]]; then domain=$(grep Host $V2RAY_CONFIG_FILE | cut -d: -f2 | tr -d \",' ') if [[ $domain = "" ]]; then domain=$(grep serverName $V2RAY_CONFIG_FILE | cut -d: -f2 | tr -d \",' ')`` fi
stop systemctl disable v2ray rm -rf $SERVICE_FILE rm -rf /etc/v2ray rm -rf /usr/bin/v2ray
systemctl disable nginx $CMD_REMOVE nginx if [[ $PMT = "apt" ]]; then $CMD_REMOVE nginx-common fi rm -rf /etc/nginx/nginx.conf if [[ -f /etc/nginx/nginx.conf.bak ]]; then mv /etc/nginx/nginx.conf.bak /etc/nginx/nginx.conf fi
if [[ $domain != "" ]]; then rm -rf $NGINX_CONF_PATH${domain}.conf fi [[ -f ~/.acme.sh/acme.sh ]] && ~/.acme.sh/acme.sh --uninstall [[ -f /etc/logrotate.d/v2ray ]] && rm -f /etc/logrotate.d/v2ray crontab -l 2>/dev/null | grep -v "check_update_cert.sh" | crontab - [[ -f "$CHECK_SCRIPT_PATH" ]] && rm -f "$CHECK_SCRIPT_PATH" colorEcho $GREEN " V2ray卸载成功" fi }
normalizeVersion(){ if [ -n "$1" ]; then case $1 in v*) echo "$1" ;; *) echo "v$1" ;; esac else echo "" fi }
get_version(){ if [[ -f /usr/bin/v2ray/v2ray ]]; then if /usr/bin/v2ray/v2ray -version >/dev/null 2>&1; then VER=$(/usr/bin/v2ray/v2ray -version | awk 'NR==1 {print $2}') else VER="$(/usr/bin/v2ray/v2ray version | awk 'NR==1 {print $2}')" fi fi RETVAL=$?
CUR_VER=$(normalizeVersion "$(echo "$VER" | head -n 1 | cut -d " " -f2)") TAG_URL="https://api.github.com/repos/v2fly/v2ray-core/releases/latest" NEW_VER=$(normalizeVersion $(curl -s "${TAG_URL}" --connect-timeout 10| tr ',' '\n' | grep 'tag_name' | cut -d\" -f4)) if [[ $NEW_VER == "" ]]; then NEW_VER=v5.1.0 fi
if [[ $? -ne 0 ]] || [[ $NEW_VER == "" ]]; then colorEcho $RED " 检查V2ray版本信息失败,请检查网络" return 3 elif [[ $RETVAL -ne 0 ]]; then return 2 elif [[ $NEW_VER != $CUR_VER ]]; then return 1 fi return 0 }
archAffix(){ case "$(uname -m)" in i686|i386) echo '32' ;; x86_64|amd64) echo '64' ;; *armv7*) echo 'arm32-v7a' ;; armv6*) echo 'arm32-v6a' ;; *armv8*|aarch64) echo 'arm64-v8a' ;; *mips64le*) echo 'mips64le' ;; *mips64*) echo 'mips64' ;; *mipsle*) echo 'mipsle' ;; *mips*) echo 'mips' ;; *s390x*) echo 's390x' ;; ppc64le) echo 'ppc64le' ;; ppc64) echo 'ppc64' ;; *) colorEcho $RED " 不支持的CPU架构!" exit 1 ;; esac return 0 }
get_input(){ echo " V2ray一键脚本,运行之前请确认如下条件已经具备:" colorEcho ${YELLOW} " 1. 一个伪装域名" colorEcho ${YELLOW} " 2. 伪装域名DNS解析指向当前服务器ip(${IP})" colorEcho ${YELLOW} " 3. 如果/root目录下有 v2ray.pem 和 v2ray.key 证书密钥文件,无需理会条件2"
echo "" read -p " 确认满足按y,按其他退出脚本:" answer if [[ ${answer,,} != "y" ]]; then exit 0 fi
echo "" while true; do read -p " 请输入伪装域名:" domain if [[ -z $domain ]]; then colorEcho $RED " 伪装域名不能为空,请重新输入!" else break fi done DOMAIN=${domain,,} colorEcho ${BLUE} " 伪装域名(host):${DOMAIN}"
if [[ -f ~/v2ray.pem && -f ~/v2ray.key ]]; then colorEcho ${BLUE} " 检测到自有证书,将使用其部署" CERT_FILE="/etc/v2ray/${DOMAIN}.pem" KEY_FILE="/etc/v2ray/${DOMAIN}.key" else response=$(curl -sm8 -A "Mozilla/5.0" https://ipget.net/?ip=${DOMAIN} 2>&1) if echo $response | grep -iq html; then resolve=$(echo $response | grep -oP '<title>\K[0-9]{1,3}(\.[0-9]{1,3}){3}') if [[ $resolve != $v4 ]] && [[ $resolve != $v6 ]]; then colorEcho ${RED} " 域名未解析到当前服务器IP("${BLUE}"ipv4:"${RED}"${v4} / "${BLUE}"ipv6:"${RED}"${v6} )" exit 1 else colorEcho ${BLUE} " ${DOMAIN} 解析结果:${resolve}" KEY_FILE="/etc/v2ray/${DOMAIN}.key" CERT_FILE="/etc/v2ray/${DOMAIN}.pem" fi else http_code=$(echo $response | awk '{print $3}') if [[ $http_code -ne 200 ]]; then colorEcho ${RED} " 域名解析失败,请添加域名解析记录或等待DNS同步,稍后再试。" exit 1 fi fi fi
echo "" read -p " 请输入v2ray监听端口[强烈建议443,默认443]:" PORT [[ -z $PORT ]] && PORT=443 colorEcho ${BLUE} " v2ray端口:$PORT"
echo "" read -p " 请设置Trojan密码(不输则随机生成): " PASSWORD [[ -z $PASSWORD ]] && gen_password colorEcho $BLUE " Trojan密码:$PASSWORD"
if [[ $XTLS = "true" ]]; then echo "" colorEcho $BLUE " 请选择流控模式:" echo -e " 1) xtls-rprx-direct [${RED}推荐${PLAIN}]" echo " 2) xtls-rprx-origin" read -p " 请选择流控模式[默认:direct]" answer [[ -z $answer ]] && answer=1 case $answer in 1) FLOW="xtls-rprx-direct" ;; 2) FLOW="xtls-rprx-origin" ;; *) colorEcho $RED " 无效选项,使用默认的xtls-rprx-direct" FLOW="xtls-rprx-direct" exit 1 ;; esac colorEcho $BLUE " 流控模式:$FLOW" fi
echo "" len=${#SITES[@]} ((len--)) while true; do index=$(shuf -i0-${len} -n1) PROXY_URL=${SITES[$index]} host=$(echo ${PROXY_URL} | cut -d/ -f3) ip=$(dig +short ${host} | head -n1) if [[ -n $ip ]]; then echo "$ip $host" >> /etc/hosts break fi done REMOTE_HOST=$(echo ${PROXY_URL} | cut -d/ -f3) colorEcho $BLUE " 伪装网站:$PROXY_URL"
KERNEL_VER=$(uname -r | awk -F. '{printf "%d.%d", $1, $2}') MIN_VER="4.9" if [ $(echo "$KERNEL_VER >= $MIN_VER" | bc -l) -eq 1 ]; then echo "" read -p " 是否启用BBR(默认启用)?[y/n]:" NEED_BBR [[ -z $NEED_BBR ]] && NEED_BBR=y [[ $NEED_BBR = "y" ]] && NEED_BBR=y colorEcho $BLUE " 启用BBR:$NEED_BBR" else colorEcho $RED " 内核版本过低,不支持BBR" NEED_BBR=n fi }
gen_password(){ PASSWORD=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 16 | head -n 1) }
install_nginx(){ echo "" colorEcho $BLUE " 安装nginx..." $CMD_INSTALL nginx if [[ $? -ne 0 ]]; then colorEcho $RED " nginx安装失败,请检查网络" exit 1 fi systemctl enable nginx }
install_v2ray(){ rm -rf /tmp/v2ray mkdir -p /tmp/v2ray DOWNLOAD_LINK="https://github.com/v2fly/v2ray-core/releases/download/${NEW_VER}/v2ray-linux-$(archAffix).zip" colorEcho $BLUE " 下载V2Ray: ${DOWNLOAD_LINK}" curl -sSL -H "Cache-Control: no-cache" -o /tmp/v2ray/v2ray.zip ${DOWNLOAD_LINK} if [ $? != 0 ]; then colorEcho $RED " 下载V2ray文件失败,请检查服务器网络设置" exit 1 fi
v2ray_start_config="run -config" mkdir -p '/etc/v2ray' '/var/log/v2ray' && \ unzip /tmp/v2ray/v2ray.zip -d /tmp/v2ray mkdir -p /usr/bin/v2ray cp /tmp/v2ray/v2ray /usr/bin/v2ray/; cp /tmp/v2ray/geo* /usr/bin/v2ray/; chmod +x '/usr/bin/v2ray/v2ray' || { colorEcho $RED " v2ray可执行文件安装失败" exit 1 }
cat >$V2RAY_SERVICE_FILE<<-EOF [Unit] Description=V2ray Service Documentation=https://www.v2fly.org/ After=network.target nss-lookup.target
[Service] # If the version of systemd is 240 or above, then uncommenting Type=exec and commenting out Type=simple #Type=exec Type=simple # This service runs as root. You may consider to run it as another user for security concerns. # By uncommenting User=nobody and commenting out User=root, the service will run as user nobody. # More discussion at https://github.com/v2ray/v2ray-core/issues/1011 User=root #User=nobody NoNewPrivileges=true ExecStart=/usr/bin/v2ray/v2ray $v2ray_start_config /etc/v2ray/config.json Restart=on-failure
[Install] WantedBy=multi-user.target EOF systemctl daemon-reload systemctl enable v2ray.service }
install_bbr(){ if [[ $NEED_BBR != "y" ]]; then INSTALL_BBR=false return fi
res=$(hostnamectl | grep -i openvz) if [[ $res != "" ]]; then colorEcho $BLUE " openvz机器,跳过安装" INSTALL_BBR=false return fi
if sysctl net.ipv4.tcp_congestion_control | grep -q "bbr"; then colorEcho $BLUE " BBR模块已启用" INSTALL_BBR=false return fi
echo "net.core.default_qdisc=fq" >> /etc/sysctl.conf echo "net.ipv4.tcp_congestion_control=bbr" >> /etc/sysctl.conf sysctl -p echo "tcp_bbr" >> /etc/modules-load.d/bbr.conf INSTALL_BBR=true
if sysctl net.ipv4.tcp_congestion_control | grep -q "bbr"; then colorEcho $GREEN " BBR模块已启用" INSTALL_BBR=false return fi }
bbr_reboot(){ if [[ $INSTALL_BBR = "true" ]]; then echo echo " 为使BBR模块生效,系统将在10秒后重启" echo echo -e " 您可以按 ctrl + c 取消重启,稍后输入 ${RED}reboot${PLAIN} 重启系统" sleep 10 reboot fi }
set_firewall(){ res=$(which firewall-cmd 2>/dev/null) if [[ $? -eq 0 ]]; then systemctl status firewalld > /dev/null 2>&1 if [[ $? -eq 0 ]]; then firewall-cmd --permanent --add-service=http firewall-cmd --permanent --add-service=https if [[ $PORT != "443" ]]; then firewall-cmd --permanent --add-port=${PORT}/tcp firewall-cmd --permanent --add-port=${PORT}/udp fi firewall-cmd --reload else nl=$(iptables -nL | nl | grep FORWARD | awk '{print $1}') if [[ $nl != "3" ]]; then iptables -I INPUT -p tcp --dport 80 -j ACCEPT iptables -I INPUT -p tcp --dport 443 -j ACCEPT if [[ $PORT != "443" ]]; then iptables -I INPUT -p tcp --dport ${PORT} -j ACCEPT iptables -I INPUT -p udp --dport ${PORT} -j ACCEPT fi fi fi else res=$(which iptables 2>/dev/null) if [[ $? -eq 0 ]]; then nl=$(iptables -nL | nl | grep FORWARD | awk '{print $1}') if [[ $nl != "3" ]]; then iptables -I INPUT -p tcp --dport 80 -j ACCEPT iptables -I INPUT -p tcp --dport 443 -j ACCEPT if [[ $PORT != "443" ]]; then iptables -I INPUT -p tcp --dport ${PORT} -j ACCEPT iptables -I INPUT -p udp --dport ${PORT} -j ACCEPT fi fi else res=$(which ufw 2>/dev/null) if [[ $? -eq 0 ]]; then res=$(ufw status | grep -i inactive) if [[ $res = "" ]]; then ufw allow http/tcp ufw allow https/tcp if [[ $PORT != "443" ]]; then ufw allow ${PORT}/tcp ufw allow ${PORT}/udp fi fi fi fi fi }
check_cert_expiry() { local cert_file=$1 if [[ ! -f "$cert_file" ]]; then echo 0 return fi local expiry_date=$(openssl x509 -enddate -noout -in "$cert_file" 2>/dev/null | cut -d= -f2) if [[ -z "$expiry_date" ]]; then echo 0 return fi local expiry_timestamp=$(date -d "$expiry_date" +%s 2>/dev/null) local now_timestamp=$(date +%s) local days_left=$(( (expiry_timestamp - now_timestamp) / 86400 )) echo $days_left }
check_cert_status() { echo "" colorEcho $BLUE " 证书有效期检查" echo ""
local found=0 for DIR in "${CERT_DIRS[@]}"; do if [[ ! -d "$DIR" ]]; then continue fi for CERT_FILE in "$DIR"/*.pem; do if [[ ! -e "$CERT_FILE" ]]; then continue fi found=1 local DOMAIN=$(basename "$CERT_FILE" .pem) local days_left=$(check_cert_expiry "$CERT_FILE")
if [[ $days_left -le 0 ]]; then colorEcho $RED " $DOMAIN: 已过期" elif [[ $days_left -le $EXP_DAYS ]]; then colorEcho $YELLOW " $DOMAIN: 剩余 $days_left 天(即将过期)" else colorEcho $GREEN " $DOMAIN: 剩余 $days_left 天" fi done done
if [[ $found -eq 0 ]]; then colorEcho $YELLOW " 未找到证书文件" fi echo "" }
setup_cert_cron() { mkdir -p "$BACKUP_DIR"
if [[ ! -f "$CHECK_SCRIPT_PATH" ]]; then colorEcho $YELLOW " 创建证书检查脚本: $CHECK_SCRIPT_PATH" cat > "$CHECK_SCRIPT_PATH" <<CERT_EOF #!/bin/bash # 脚本作用:检查多个证书目录下所有 .pem 证书,快到期自动更新, # 并将续期失败域名及剩余天数汇总发送单封邮件通知
# 依赖:acme.sh、openssl # 定时任务:每 3 天执行一次
# ---------- 配置区域 ---------- CERT_DIRS=(${CERT_DIRS[*]}) BACKUP_DIR="$BACKUP_DIR" ACME_HOME="$ACME_HOME" RELOAD_CMD="$RELOAD_CMD" EXP_DAYS=$EXP_DAYS ADMIN_EMAIL="$ADMIN_EMAIL" # --------------------------------
# 确保备份目录存在 mkdir -p "\$BACKUP_DIR"
# 用于存储续期失败域名和剩余天数 FAILED_DOMAINS=()
# 遍历所有证书目录 for DIR in "\${CERT_DIRS[@]}"; do [ -d "\$DIR" ] || continue
echo "[\`date '+%Y-%m-%d %H:%M:%S'\`] 开始检查目录:\$DIR"
# 遍历目录下所有 .pem 文件 for CERT_FILE in "\$DIR"/*.pem; do [ -e "\$CERT_FILE" ] || continue DOMAIN=\$(basename "\$CERT_FILE" .pem)
# 获取剩余天数 DAYS_LEFT=\$(openssl x509 -enddate -noout -in "\$CERT_FILE" | cut -d= -f2 | xargs -I{} date -d {} +%s) NOW=\$(date +%s) DAYS_LEFT=\$(( (DAYS_LEFT - NOW) / 86400 ))
echo "[\`date '+%Y-%m-%d %H:%M:%S'\`] \$DOMAIN 剩余有效天数: \$DAYS_LEFT"
if [ "\$DAYS_LEFT" -le "\$EXP_DAYS" ]; then echo "[\`date '+%Y-%m-%d %H:%M:%S'\`] \$DOMAIN 证书快到期,开始更新..."
"\$ACME_HOME/acme.sh" --renew -d "\$DOMAIN" --home "\$ACME_HOME" --ecc --install-cert \ --key-file "\$DIR/\$DOMAIN.key" \ --fullchain-file "\$DIR/\$DOMAIN.pem" \ --reloadcmd "cp -f \$DIR/\$DOMAIN.key \$BACKUP_DIR && cp -f \$DIR/\$DOMAIN.pem \$BACKUP_DIR && \$RELOAD_CMD"
if [ \$? -ne 0 ]; then echo "[\`date '+%Y-%m-%d %H:%M:%S'\`] \$DOMAIN 续期失败" FAILED_DOMAINS+=("\$DOMAIN (剩余天数: \$DAYS_LEFT)") else echo "[\`date '+%Y-%m-%d %H:%M:%S'\`] \$DOMAIN 证书更新完成" fi else echo "[\`date '+%Y-%m-%d %H:%M:%S'\`] \$DOMAIN 证书仍有效,无需更新" fi done done
# 如果有失败的域名,发送汇总邮件 if [ \${#FAILED_DOMAINS[@]} -gt 0 ]; then MAIL_SUBJECT="SSL 证书续期失败通知" MAIL_BODY="以下域名的 SSL 证书续期失败,请尽快处理:\n\n" for D in "\${FAILED_DOMAINS[@]}"; do MAIL_BODY+="\$D\n" done echo -e "\$MAIL_BODY" | sendmail "\$ADMIN_EMAIL" echo "[\`date '+%Y-%m-%d %H:%M:%S'\`] 已发送续期失败通知邮件给 \$ADMIN_EMAIL" fi CERT_EOF chmod +x "$CHECK_SCRIPT_PATH" colorEcho $GREEN " 证书检查脚本创建完成" else colorEcho $GREEN " 证书检查脚本已存在: $CHECK_SCRIPT_PATH" fi
if crontab -l 2>/dev/null | grep -q "check_update_cert.sh"; then colorEcho $GREEN " 定时任务已配置" return fi
(crontab -l 2>/dev/null; echo "0 3 */3 * * $CHECK_SCRIPT_PATH >> $LOG_FILE 2>&1") | crontab - colorEcho $GREEN " 已配置证书检查定时任务(每3天凌晨3点执行)" }
get_cert() { mkdir -p /etc/v2ray
if [[ -f "$CERT_FILE" && -f "$KEY_FILE" ]]; then local days_left=$(check_cert_expiry "$CERT_FILE") colorEcho $BLUE " 证书已存在,剩余有效期:$days_left 天"
if [[ $days_left -gt $EXP_DAYS ]]; then colorEcho $GREEN " 证书有效期充足,跳过申请" return 0 else colorEcho $YELLOW " 证书即将过期,开始更新..." fi fi
systemctl stop nginx res=$(netstat -ntlp| grep -E ':80 |:443 ') if [[ $res != "" ]]; then colorEcho ${RED} " 其他进程占用了80或443端口,请先关闭再运行脚本" echo " 端口占用信息如下:" echo ${res} exit 1 fi
$CMD_INSTALL socat openssl if [[ $PMT = "yum" ]]; then $CMD_INSTALL cronie systemctl start crond systemctl enable crond else $CMD_INSTALL cron systemctl start cron systemctl enable cron fi curl -sL https://get.acme.sh | sh -s email=neko.wongrs@gmail.com source ~/.bashrc ~/.acme.sh/acme.sh --upgrade --auto-upgrade ~/.acme.sh/acme.sh --set-default-ca --server letsencrypt
if [[ $ipv6Status = "on" ]]; then ~/.acme.sh/acme.sh --issue -d $DOMAIN --keylength ec-256 --pre-hook "systemctl stop nginx" --post-hook "systemctl restart nginx" --standalone --listen-v6 --insecure else ~/.acme.sh/acme.sh --issue -d $DOMAIN --keylength ec-256 --pre-hook "systemctl stop nginx" --post-hook "systemctl restart nginx" --standalone --insecure fi
if [[ ! -f ~/.acme.sh/${DOMAIN}_ecc/ca.cer ]]; then colorEcho $RED " 证书申请失败" exit 1 fi ~/.acme.sh/acme.sh --install-cert -d $DOMAIN --ecc \ --key-file $KEY_FILE \ --fullchain-file $CERT_FILE \ --reloadcmd "systemctl restart nginx" if [[ ! (-f $CERT_FILE && -f $KEY_FILE) ]]; then colorEcho $RED " 获取证书失败" exit 1 fi colorEcho $GREEN " 证书申请成功"
setup_cert_cron }
config_nginx(){ if [[ ! -d /etc/nginx/ssl ]]; then mkdir -p /etc/nginx/ssl fi if [[ ! -f /etc/nginx/nginx.conf.bak ]]; then mv /etc/nginx/nginx.conf /etc/nginx/nginx.conf.bak fi res=$(id nginx 2>/dev/null) if [[ $? -ne 0 ]]; then user="www-data" else user="nginx" fi cat > /etc/nginx/nginx.conf <<EOF user $user; worker_processes auto; error_log /var/log/nginx/error.log; pid /run/nginx.pid;
# Load dynamic modules. See /usr/share/doc/nginx/README.dynamic. include /usr/share/nginx/modules/*.conf;
events { worker_connections 1024; }
http { log_format main '\$remote_addr - \$remote_user [\$time_local] "\$request" ' '\$status \$body_bytes_sent "\$http_referer" ' '"\$http_user_agent" "\$http_x_forwarded_for"'; log_format json escape=json '{' '"time_local": "$time_iso8601",' '"remote_addr": "$remote_addr",' '"request": "$request",' '"status": "$status",' '"body_bytes_sent": "$body_bytes_sent",' '"request_time": "$request_time",' '"http_referer": "$http_referer",' '"http_user_agent": "$http_user_agent",' '"http_x_forwarded_for": "$http_x_forwarded_for",' '"host": "$host",' '"upstream_addr": "$upstream_addr",' '"upstream_status": "$upstream_status",' '"upstream_response_time": "$upstream_response_time"' '}';
access_log /var/log/nginx/access.log json; server_tokens off;
sendfile on; tcp_nopush on; tcp_nodelay on; keepalive_timeout 65; types_hash_max_size 2048; gzip on;
include /etc/nginx/mime.types; default_type application/octet-stream;
# Load modular configuration files from the /etc/nginx/conf.d directory. # See http://nginx.org/en/docs/ngx_core_module.html#include # for more information. include /etc/nginx/conf.d/*.conf; } EOF
mkdir -p $NGINX_CONF_PATH cat > $NGINX_CONF_PATH${DOMAIN}.conf <<EOF server { listen 80; listen [::]:80; listen 81;
server_name ${DOMAIN}; access_log /var/log/nginx/v2ray-access.log json; error_log /var/log/nginx/v2ray-error.log;
root /usr/share/nginx/html; location / { proxy_http_version 1.1; proxy_set_header Host ${REMOTE_HOST}; proxy_set_header X-Real-IP \$remote_addr; proxy_set_header X-Forwarded-For \$proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto \$scheme;
proxy_ssl_server_name on; proxy_pass ${PROXY_URL}; proxy_set_header Accept-Encoding '';
sub_filter "${REMOTE_HOST}" "${DOMAIN}"; sub_filter_once off; sub_filter_types text/css application/javascript; } } EOF }
set_selinux(){ if [[ -s /etc/selinux/config ]] && grep 'SELINUX=enforcing' /etc/selinux/config; then sed -i 's/SELINUX=enforcing/SELINUX=permissive/g' /etc/selinux/config setenforce 0 fi }
trojanXTLSConfig(){ cat > $V2RAY_CONFIG_FILE <<-EOF { "log": { "access": "/var/log/v2ray/access.log", "error": "/var/log/v2ray/error.log" }, "inbounds": [{ "port": $PORT, "protocol": "trojan", "settings": { "clients": [ { "password": "$PASSWORD", "flow": "$FLOW" } ], "fallbacks": [ { "alpn": "http/1.1", "dest": 80 }, { "alpn": "h2", "dest": 81 } ] }, "streamSettings": { "network": "tcp", "security": "xtls", "xtlsSettings": { "serverName": "$DOMAIN", "alpn": ["http/1.1", "h2"], "certificates": [ { "certificateFile": "$CERT_FILE", "keyFile": "$KEY_FILE" } ] } } }], "outbounds": [{ "protocol": "freedom", "settings": {} },{ "protocol": "blackhole", "settings": {}, "tag": "blocked" }] } EOF }
trojanConfig(){ cat > $V2RAY_CONFIG_FILE <<-EOF { "log": { "access": "/var/log/v2ray/access.log", "error": "/var/log/v2ray/error.log", "loglevel": "warning" }, "inbounds": [{ "port": $PORT, "protocol": "trojan", "settings": { "clients": [ { "password": "$PASSWORD" } ], "fallbacks": [ { "alpn": "http/1.1", "dest": 80 }, { "alpn": "h2", "dest": 81 } ] }, "streamSettings": { "network": "tcp", "security": "tls", "tlsSettings": { "serverName": "$DOMAIN", "alpn": ["http/1.1", "h2"], "certificates": [ { "certificateFile": "$CERT_FILE", "keyFile": "$KEY_FILE" } ] } } }], "outbounds": [{ "protocol": "freedom", "settings": {} },{ "protocol": "blackhole", "settings": {}, "tag": "blocked" }] } EOF }
config_v2ray(){ mkdir -p /etc/v2ray if [[ $XTLS = "true" ]]; then trojanXTLSConfig else trojanConfig fi return 0 }
install_pkg(){ for pkg in "$@"; do if [[ $PMT = "yum" ]]; then if ! yum list installed "$pkg" &>/dev/null; then if ! $CMD_INSTALL "$pkg"; then colorEcho $RED " 安装 $pkg 失败!" exit 1 fi fi elif [[ $PMT = "apt" ]]; then if ! dpkg-query -W -f='${Status}' "$pkg" 2>/dev/null | grep -q "ok installed"; then if ! $CMD_INSTALL "$pkg"; then colorEcho $RED " 安装 $pkg 失败!" exit 1 fi fi else colorEcho $RED " 不支持的包管理器" exit 1 fi done }
install(){ get_input $PMT clean all $CMD_UPGRADE install_pkg wget vim unzip tar gcc openssl logrotate net-tools bind-utils if [[ $PMT = "apt" ]]; then install_pkg libssl-dev g++ fi res=$(which unzip 2>/dev/null) if [[ $? -ne 0 ]]; then colorEcho $RED " unzip安装失败,请检查网络" exit 1 fi
install_nginx set_firewall get_cert config_nginx
colorEcho $BLUE " 安装V2ray..." get_version RETVAL=$? if [[ $RETVAL == 0 ]]; then colorEcho $BLUE " V2ray最新版 ${CUR_VER} 已经安装" elif [[ $RETVAL == 3 ]]; then exit 1 else colorEcho $BLUE " 安装V2Ray ${NEW_VER} ,架构$(archAffix)" install_v2ray fi
config_v2ray
set_selinux install_bbr
start showConfig set_logrotate
bbr_reboot }
set_logrotate(){ cat > /etc/logrotate.d/v2ray <<EOF /var/log/v2ray/*.log { nocompress daily rotate 7 copytruncate create ifempty dateext missingok notifempty noolddir } EOF chmod 644 /etc/logrotate.d/v2ray }
get_config_file_info(){ protocol="Trojan" network=$(grep network $V2RAY_CONFIG_FILE | tail -n1| cut -d: -f2 | tr -d \",' ') domain=$(grep serverName $V2RAY_CONFIG_FILE | cut -d: -f2 | tr -d \",' ') port=$(grep port $V2RAY_CONFIG_FILE | cut -d: -f2 | tr -d \",' ') password=$(grep password $V2RAY_CONFIG_FILE | cut -d: -f2 | tr -d \",' ')
if [[ $XTLS = "true" ]]; then encryption="none" flow=$(grep flow $V2RAY_CONFIG_FILE | cut -d: -f2 | tr -d \",' ') fi }
output_trojan(){ if [[ $XTLS = "true" ]]; then echo -e " ${BLUE}IP/域名(address): ${PLAIN} ${RED}${domain}${PLAIN}" echo -e " ${BLUE}端口(port):${PLAIN}${RED}${port}${PLAIN}" echo -e " ${BLUE}密码(password):${PLAIN}${RED}${password}${PLAIN}" echo -e " ${BLUE}流控(flow):${PLAIN}${RED}${flow}${PLAIN}" echo -e " ${BLUE}加密(encryption):${PLAIN} ${RED}${encryption}${PLAIN}" echo -e " ${BLUE}传输协议(network):${PLAIN} ${RED}${network}${PLAIN}" echo -e " ${BLUE}底层安全传输(tls):${PLAIN}${RED}XTLS${PLAIN}" else echo -e " ${BLUE}IP/域名(address): ${PLAIN} ${RED}${domain}${PLAIN}" echo -e " ${BLUE}端口(port):${PLAIN}${RED}${port}${PLAIN}" echo -e " ${BLUE}密码(password):${PLAIN}${RED}${password}${PLAIN}" echo -e " ${BLUE}传输协议(network):${PLAIN} ${RED}${network}${PLAIN}" echo -e " ${BLUE}底层安全传输(tls):${PLAIN}${RED}TLS${PLAIN}" fi }
showConfig(){ res=$(v2ray_status) if [[ $res -lt 2 ]]; then colorEcho $RED " V2ray未安装,请先安装!" return fi echo "" echo -n -e " ${BLUE}V2ray运行状态:${PLAIN}" v2ray_status_result echo -e " ${BLUE}V2ray配置文件: ${PLAIN} ${RED}${V2RAY_CONFIG_FILE}${PLAIN}" colorEcho $BLUE " V2ray配置信息:" get_config_file_info
echo -e " ${BLUE}协议: ${PLAIN} ${RED}${protocol}${PLAIN}" output_trojan }
showLog(){ res=$(v2ray_status) if [[ $res -lt 2 ]]; then colorEcho $RED " V2ray未安装,请先安装!" return fi journalctl -xen -u v2ray --no-pager }
check_update(){ get_version RETVAL=$? if [[ $RETVAL == 1 ]]; then colorEcho $BLUE " 有新版本可用:${NEW_VER}" fi }
menu(){ clear get_version colorEcho $BLUE "==================================================" colorEcho $BLUE " v2ray一键安装脚本 " colorEcho $BLUE " 默认支持BBR加速 | 版本:${CUR_VER} " colorEcho $BLUE "--------------------------------------------------" colorEcho $GREEN " 1. 安装Trojan 2. 安装Trojan+TLS " colorEcho $BLUE "--------------------------------------------------" colorEcho $GREEN " 3. 更新V2ray 4. 卸载V2ray " colorEcho $BLUE "--------------------------------------------------" colorEcho $GREEN " 5. 启动V2ray 6. 重启V2ray " colorEcho $GREEN " 7. 停止V2ray " colorEcho $BLUE "--------------------------------------------------" colorEcho $GREEN " 8. 查看配置 9. 查看日志 " colorEcho $BLUE "--------------------------------------------------" colorEcho $GREEN " 10. 检查证书状态 " colorEcho $BLUE "--------------------------------------------------" colorEcho $GREEN " 0. 退出 " colorEcho $BLUE "==================================================" check_update echo -n " 当前状态:" v2ray_status_result echo
read -p " 请选择操作[0-10]:" answer case $answer in 0) exit 0 ;; 1) install ;; 2) install ;; 3) update ;; 4) uninstall ;; 5) start ;; 6) restart ;; 7) stop ;; 8) showConfig ;; 9) showLog ;; 10) check_cert_status ;; *) colorEcho $RED " 请输入正确的数字[0-10]" exit 1 ;; esac }
check_env check_system action=$1 [[ -z $1 ]] && action=menu case $action in menu|update|uninstall|start|restart|stop|showConfig|showLog|check_cert_status) $action ;; *) colorEcho $RED " 参数错误" colorEcho $BLUE " 用法: $(basename $0) [menu|update|uninstall|start|restart|stop|showConfig|showLog|check_cert_status]" ;; esac
|