下面这个sh脚本是修改了Sing-box 6的一键四协议安装脚本, 执行即安装, 但是没有哪吒探针和ARGO, 放在/home/你的用户名/目录下就行, 随便起个名字 gaojilingjuli.sh
#!/bin/bash# 定义颜色re="\033[0m"red="\033[1;91m"green="\e[1;32m"yellow="\e[1;33m"purple="\e[1;35m"red() { echo -e "\e[1;91m$1\033[0m"; }green() { echo -e "\e[1;32m$1\033[0m"; }yellow() { echo -e "\e[1;33m$1\033[0m"; }purple() { echo -e "\e[1;35m$1\033[0m"; }reading() { read -p "$(red "$1")" "$2"; }USERNAME=$(whoami)HOSTNAME=$(hostname)export UUID=${UUID:-'bc97f674-c578-4940-9234-0a1da46041b9'}[[ "$HOSTNAME" == "s1.ct8.pl" ]] && WORKDIR="domains/${USERNAME}.ct8.pl/logs" || WORKDIR="domains/${USERNAME}.serv00.net/logs"[ -d "$WORKDIR" ] || (mkdir -p "$WORKDIR" && chmod 777 "$WORKDIR")install_singbox() {cd $WORKDIRpkill -kill -u lingjuligenerate_configdownload_singbox && waitrun_sb && sleep 3get_links}# Download Dependency Filesdownload_singbox() {ARCH=$(uname -m) && DOWNLOAD_DIR="." && mkdir -p "$DOWNLOAD_DIR" && FILE_INFO=()if [ "$ARCH" == "arm" ] || [ "$ARCH" == "arm64" ] || [ "$ARCH" == "aarch64" ]; thenFILE_INFO=("https://github.com/eooce/test/releases/download/arm64/sb web" "https://github.com/eooce/test/releases/download/arm64/bot13 bot" "https://github.com/eooce/test/releases/download/ARM/swith npm")elif [ "$ARCH" == "amd64" ] || [ "$ARCH" == "x86_64" ] || [ "$ARCH" == "x86" ]; thenFILE_INFO=("https://eooce.2go.us.kg/web web" "https://eooce.2go.us.kg/bot bot" "https://eooce.2go.us.kg/npm npm")elseecho "Unsupported architecture: $ARCH"exit 1fifor entry in "${FILE_INFO[@]}"; doURL=$(echo "$entry" | cut -d ' ' -f 1)NEW_FILENAME=$(echo "$entry" | cut -d ' ' -f 2)FILENAME="$DOWNLOAD_DIR/$NEW_FILENAME"if [ -e "$FILENAME" ]; thengreen "$FILENAME already exists, Skipping download"elsewget -q -O "$FILENAME" "$URL"green "Downloading $FILENAME"fichmod +x $FILENAMEdone}# Generating Configuration Filesgenerate_config() {openssl ecparam -genkey -name prime256v1 -out "private.key"openssl req -new -x509 -days 3650 -key "private.key" -out "cert.pem" -subj "/CN=$USERNAME.serv00.net"cat >config.json <<EOF{"log": {"disabled": true,"level": "info","timestamp": true},"dns": {"servers": [{"tag": "google","address": "tls://8.8.8.8","strategy": "ipv4_only","detour": "direct"}],"rules": [{"rule_set": ["geosite-openai"],"server": "wireguard"},{"rule_set": ["geosite-netflix"],"server": "wireguard"},{"rule_set": ["geosite-category-ads-all"],"server": "block"}],"final": "google","strategy": "","disable_cache": false,"disable_expire": false},"inbounds": [{"tag": "hysteria-in","type": "hysteria2","listen": "::","listen_port": 55502,"users": [{"password": "$UUID"}],"masquerade": "https://bing.com","tls": {"enabled": true,"alpn": ["h3"],"certificate_path": "cert.pem","key_path": "private.key"}},{"tag": "vmess-ws-in","type": "vmess","listen": "::","listen_port": 55501,"users": [{"uuid": "$UUID"}],"transport": {"type": "ws","path": "/vmess","early_data_header_name": "Sec-WebSocket-Protocol"}},{"tag": "tuic-in","type": "tuic","listen": "::","listen_port": 55503,"users": [{"uuid": "$UUID","password": "admin123"}],"congestion_control": "bbr","tls": {"enabled": true,"alpn": ["h3"],"certificate_path": "cert.pem","key_path": "private.key"}}],"outbounds": [{"type": "direct","tag": "direct"},{"type": "block","tag": "block"},{"type": "dns","tag": "dns-out"},{"type": "wireguard","tag": "wireguard-out","server": "162.159.195.100","server_port": 4500,"local_address": ["172.16.0.2/32","2606:4700:110:83c7:b31f:5858:b3a8:c6b1/128"],"private_key": "mPZo+V9qlrMGCZ7+E6z2NI6NOV34PD++TpAR09PtCWI=","peer_public_key": "bmXOC+F1FxEMF9dyiK2H5/1SUtzH0JuVo51h2wPfgyo=","reserved": [26,21,228]}],"route": {"rules": [{"protocol": "dns","outbound": "dns-out"},{"ip_is_private": true,"outbound": "direct"},{"rule_set": ["geosite-openai"],"outbound": "wireguard-out"},{"rule_set": ["geosite-netflix"],"outbound": "wireguard-out"},{"rule_set": ["geosite-category-ads-all"],"outbound": "block"}],"rule_set": [{"tag": "geosite-netflix","type": "remote","format": "binary","url": "https://raw.githubusercontent.com/SagerNet/sing-geosite/rule-set/geosite-netflix.srs","download_detour": "direct"},{"tag": "geosite-openai","type": "remote","format": "binary","url": "https://raw.githubusercontent.com/MetaCubeX/meta-rules-dat/sing/geo/geosite/openai.srs","download_detour": "direct"},{"tag": "geosite-category-ads-all","type": "remote","format": "binary","url": "https://raw.githubusercontent.com/SagerNet/sing-geosite/rule-set/geosite-category-ads-all.srs","download_detour": "direct"}],"final": "direct"},"experimental": {"cache_file": {"path": "cache.db","cache_id": "mycacheid","store_fakeip": true}}}EOF}# running filesrun_sb() {if [ -e web ]; thennohup ./web run -c config.json >/dev/null 2>&1 &sleep 2pgrep -x "web" >/dev/null && green "web is running" || {red "web is not running, restarting..."pkill -x "web" && nohup ./web run -c config.json >/dev/null 2>&1 &sleep 2purple "web restarted"}fiif [ -e bot ]; thennohup ./bot tunnel --edge-ip-version auto --no-autoupdate --protocol http2 --logfile boot.log --loglevel info --url http://localhost:55501 >/dev/null 2>&1 &sleep 2pgrep -x "bot" >/dev/null && green "bot is running" || {red "bot is not running, restarting..."pkill -x "bot" && nohup ./bot "${tunnel --edge-ip-version auto --no-autoupdate --protocol http2 --logfile boot.log --loglevel info --url http://localhost:55501}" >/dev/null 2>&1 &sleep 2purple "bot restarted"}fi}get_links() {# get ipIP=$(curl -s ipv4.ip.sb || {ipv6=$(curl -s --max-time 1 ipv6.ip.sb)echo "[$ipv6]"})sleep 1# get ipinfoISP=$(curl -s https://speed.cloudflare.com/meta | awk -F\" '{print $26"-"$18}' | sed -e 's/ /_/g')sleep 1# yellow "注意:v2ray或其他软件的跳过证书验证需设置为true,否则hy2或tuic节点可能不通\n"cat >list.txt <<EOFvmess://$(echo "{ \"v\": \"2\", \"ps\": \"$ISP\", \"add\": \"$IP\", \"port\": \"55501\", \"id\": \"$UUID\", \"aid\": \"0\", \"scy\": \"none\", \"net\": \"ws\", \"type\": \"none\", \"host\": \"\", \"path\": \"/vmess?ed=2048\", \"tls\": \"\", \"sni\": \"\", \"alpn\": \"\", \"fp\": \"\"}" | base64 -w0)vmess://$(echo "{ \"v\": \"2\", \"ps\": \"$ISP\", \"add\": \"www.visa.com.tw\", \"port\": \"443\", \"id\": \"$UUID\", \"aid\": \"0\", \"scy\": \"none\", \"net\": \"ws\", \"type\": \"none\", \"host\": \"$argodomain\", \"path\": \"/vmess?ed=2048\", \"tls\": \"tls\", \"sni\": \"$argodomain\", \"alpn\": \"\", \"fp\": \"\"}" | base64 -w0)hysteria2://$UUID@$IP:55502/?sni=www.bing.com&alpn=h3&insecure=1#$ISPtuic://$UUID:admin123@$IP:55503?sni=www.bing.com&congestion_control=bbr&udp_relay_mode=native&alpn=h3&allow_insecure=1#$ISPEOFcat list.txtpurple "list.txt saved successfully"purple "Running done!"sleep 3rm -rf web bot npm boot.log config.json sb.log core tunnel.yml tunnel.json}#主菜单menu() {cleargreen "安装sing-box"install_singbox}menu
在青龙服务器上执行下面命令:
sshpass -p 'pasword' ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -tt lingjuli@s6.serv00.com "./gaojilingjuli.sh"
没有评论:
发表评论