mirror of
https://github.com/233boy/sing-box.git
synced 2026-05-03 14:24:40 +08:00
Compare commits
13 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3750157987 | ||
|
|
7c9622df74 | ||
|
|
4ebcb332bc | ||
|
|
62c5871ddc | ||
|
|
93d550ace3 | ||
|
|
a6c37635fe | ||
|
|
872b8a397a | ||
|
|
23bf91d771 | ||
|
|
1eace3153c | ||
|
|
9cf5655ac5 | ||
|
|
3909d2edaf | ||
|
|
798d43ac47 | ||
|
|
09fd2df4ff |
@@ -125,7 +125,7 @@ show_help() {
|
|||||||
echo -e "Usage: $0 [-f xxx | -l | -p xxx | -v xxx | -h]"
|
echo -e "Usage: $0 [-f xxx | -l | -p xxx | -v xxx | -h]"
|
||||||
echo -e " -f, --core-file <path> 自定义 $is_core_name 文件路径, e.g., -f /root/$is_core-linux-amd64.tar.gz"
|
echo -e " -f, --core-file <path> 自定义 $is_core_name 文件路径, e.g., -f /root/$is_core-linux-amd64.tar.gz"
|
||||||
echo -e " -l, --local-install 本地获取安装脚本, 使用当前目录"
|
echo -e " -l, --local-install 本地获取安装脚本, 使用当前目录"
|
||||||
echo -e " -p, --proxy <addr> 使用代理下载, e.g., -p http://127.0.0.1:2333 or -p socks5://127.0.0.1:2333"
|
echo -e " -p, --proxy <addr> 使用代理下载, e.g., -p http://127.0.0.1:2333"
|
||||||
echo -e " -v, --core-version <ver> 自定义 $is_core_name 版本, e.g., -v v1.8.13"
|
echo -e " -v, --core-version <ver> 自定义 $is_core_name 版本, e.g., -v v1.8.13"
|
||||||
echo -e " -h, --help 显示此帮助界面\n"
|
echo -e " -h, --help 显示此帮助界面\n"
|
||||||
|
|
||||||
@@ -159,7 +159,7 @@ install_pkg() {
|
|||||||
download() {
|
download() {
|
||||||
case $1 in
|
case $1 in
|
||||||
core)
|
core)
|
||||||
[[ ! $is_core_ver ]] && is_core_ver=$(_wget -qO- "https://api.github.com/repos/${is_core_repo}/releases/latest?v=$RANDOM" | grep tag_name | egrep -o 'v([0-9.]+)')
|
[[ ! $is_core_ver ]] && is_core_ver=$(_wget -qO- "https://api.github.com/repos/${is_core_repo}/releases/latest?v=$RANDOM" | grep tag_name | grep -E -o 'v([0-9.]+)')
|
||||||
[[ $is_core_ver ]] && link="https://github.com/${is_core_repo}/releases/download/${is_core_ver}/${is_core}-${is_core_ver:1}-linux-${is_arch}.tar.gz"
|
[[ $is_core_ver ]] && link="https://github.com/${is_core_repo}/releases/download/${is_core_ver}/${is_core}-${is_core_ver:1}-linux-${is_arch}.tar.gz"
|
||||||
name=$is_core_name
|
name=$is_core_name
|
||||||
tmpfile=$tmpcore
|
tmpfile=$tmpcore
|
||||||
@@ -198,6 +198,7 @@ check_status() {
|
|||||||
# dependent pkg install fail
|
# dependent pkg install fail
|
||||||
[[ ! -f $is_pkg_ok ]] && {
|
[[ ! -f $is_pkg_ok ]] && {
|
||||||
msg err "安装依赖包失败"
|
msg err "安装依赖包失败"
|
||||||
|
msg err "请尝试手动安装依赖包: $cmd update -y; $cmd install -y $is_pkg"
|
||||||
is_fail=1
|
is_fail=1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
args=$@
|
args=$@
|
||||||
is_sh_ver=v1.03
|
is_sh_ver=v1.14
|
||||||
|
|
||||||
. /etc/sing-box/sh/src/init.sh
|
. /etc/sing-box/sh/src/init.sh
|
||||||
66
src/core.sh
66
src/core.sh
@@ -116,7 +116,7 @@ get_uuid() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
get_ip() {
|
get_ip() {
|
||||||
[[ $ip || $is_no_auto_tls || $is_gen ]] && return
|
[[ $ip || $is_no_auto_tls || $is_gen || $is_dont_get_ip ]] && return
|
||||||
export "$(_wget -4 -qO- https://one.one.one.one/cdn-cgi/trace | grep ip=)" &>/dev/null
|
export "$(_wget -4 -qO- https://one.one.one.one/cdn-cgi/trace | grep ip=)" &>/dev/null
|
||||||
[[ ! $ip ]] && export "$(_wget -6 -qO- https://one.one.one.one/cdn-cgi/trace | grep ip=)" &>/dev/null
|
[[ ! $ip ]] && export "$(_wget -6 -qO- https://one.one.one.one/cdn-cgi/trace | grep ip=)" &>/dev/null
|
||||||
[[ ! $ip ]] && {
|
[[ ! $ip ]] && {
|
||||||
@@ -159,7 +159,7 @@ show_list() {
|
|||||||
is_test() {
|
is_test() {
|
||||||
case $1 in
|
case $1 in
|
||||||
number)
|
number)
|
||||||
echo $2 | egrep '^[1-9][0-9]?+$'
|
echo $2 | grep -E '^[1-9][0-9]?+$'
|
||||||
;;
|
;;
|
||||||
port)
|
port)
|
||||||
if [[ $(is_test number $2) ]]; then
|
if [[ $(is_test number $2) ]]; then
|
||||||
@@ -170,13 +170,13 @@ is_test() {
|
|||||||
[[ $(is_port_used $2) && ! $is_cant_test_port ]] && echo ok
|
[[ $(is_port_used $2) && ! $is_cant_test_port ]] && echo ok
|
||||||
;;
|
;;
|
||||||
domain)
|
domain)
|
||||||
echo $2 | egrep -i '^\w(\w|\-|\.)?+\.\w+$'
|
echo $2 | grep -E -i '^\w(\w|\-|\.)?+\.\w+$'
|
||||||
;;
|
;;
|
||||||
path)
|
path)
|
||||||
echo $2 | egrep -i '^\/\w(\w|\-|\/)?+\w$'
|
echo $2 | grep -E -i '^\/\w(\w|\-|\/)?+\w$'
|
||||||
;;
|
;;
|
||||||
uuid)
|
uuid)
|
||||||
echo $2 | egrep -i '[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}'
|
echo $2 | grep -E -i '[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}'
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
@@ -369,7 +369,7 @@ create() {
|
|||||||
else
|
else
|
||||||
[[ ! $is_ntp_on ]] && is_ntp=
|
[[ ! $is_ntp_on ]] && is_ntp=
|
||||||
fi
|
fi
|
||||||
is_outbounds='outbounds:[{tag:"direct",type:"direct"},{tag:"block",type:"block"}]'
|
is_outbounds='outbounds:[{tag:"direct",type:"direct"}]'
|
||||||
is_server_config_json=$(jq "{$is_log,$is_dns,$is_ntp$is_outbounds}" <<<{})
|
is_server_config_json=$(jq "{$is_log,$is_dns,$is_ntp$is_outbounds}" <<<{})
|
||||||
cat <<<$is_server_config_json >$is_config_json
|
cat <<<$is_server_config_json >$is_config_json
|
||||||
manage restart &
|
manage restart &
|
||||||
@@ -443,6 +443,7 @@ change() {
|
|||||||
[[ $is_auto_get_config ]] && msg "\n自动选择: $is_config_file"
|
[[ $is_auto_get_config ]] && msg "\n自动选择: $is_config_file"
|
||||||
}
|
}
|
||||||
is_old_net=$net
|
is_old_net=$net
|
||||||
|
[[ $is_tcp_http ]] && net=http
|
||||||
[[ $host ]] && net=$is_protocol-$net-tls
|
[[ $host ]] && net=$is_protocol-$net-tls
|
||||||
[[ $is_reality && $net_type =~ 'http' ]] && net=rh2
|
[[ $is_reality && $net_type =~ 'http' ]] && net=rh2
|
||||||
|
|
||||||
@@ -466,7 +467,7 @@ change() {
|
|||||||
1)
|
1)
|
||||||
# new port
|
# new port
|
||||||
is_new_port=$3
|
is_new_port=$3
|
||||||
[[ $host && ! $is_caddy ]] && err "($is_config_file) 不支持更改端口, 因为没啥意义."
|
[[ $host && ! $is_caddy || $is_no_auto_tls ]] && err "($is_config_file) 不支持更改端口, 因为没啥意义."
|
||||||
if [[ $is_new_port && ! $is_auto ]]; then
|
if [[ $is_new_port && ! $is_auto ]]; then
|
||||||
[[ ! $(is_test port $is_new_port) ]] && err "请输入正确的端口, 可选(1-65535)"
|
[[ ! $(is_test port $is_new_port) ]] && err "请输入正确的端口, 可选(1-65535)"
|
||||||
[[ $is_new_port != 443 && $(is_test port_used $is_new_port) ]] && err "无法使用 ($is_new_port) 端口"
|
[[ $is_new_port != 443 && $(is_test port_used $is_new_port) ]] && err "无法使用 ($is_new_port) 端口"
|
||||||
@@ -634,6 +635,8 @@ change() {
|
|||||||
|
|
||||||
# delete config.
|
# delete config.
|
||||||
del() {
|
del() {
|
||||||
|
# dont get ip
|
||||||
|
is_dont_get_ip=1
|
||||||
[[ $is_conf_dir_empty ]] && return # not found any json file.
|
[[ $is_conf_dir_empty ]] && return # not found any json file.
|
||||||
# get a config file
|
# get a config file
|
||||||
[[ ! $is_config_file ]] && get info $1
|
[[ ! $is_config_file ]] && get info $1
|
||||||
@@ -652,7 +655,7 @@ del() {
|
|||||||
[[ ! $old_host ]] && return # no host exist or not set new host;
|
[[ ! $old_host ]] && return # no host exist or not set new host;
|
||||||
is_del_host=$old_host
|
is_del_host=$old_host
|
||||||
}
|
}
|
||||||
[[ $is_del_host && $host != $old_host ]] && {
|
[[ $is_del_host && $host != $old_host && -f $is_caddy_conf/$is_del_host.conf ]] && {
|
||||||
rm -rf $is_caddy_conf/$is_del_host.conf $is_caddy_conf/$is_del_host.conf.add
|
rm -rf $is_caddy_conf/$is_del_host.conf $is_caddy_conf/$is_del_host.conf.add
|
||||||
[[ ! $is_new_json ]] && manage restart caddy &
|
[[ ! $is_new_json ]] && manage restart caddy &
|
||||||
}
|
}
|
||||||
@@ -662,6 +665,7 @@ del() {
|
|||||||
warn "当前配置目录为空! 因为你刚刚删除了最后一个配置文件."
|
warn "当前配置目录为空! 因为你刚刚删除了最后一个配置文件."
|
||||||
is_conf_dir_empty=1
|
is_conf_dir_empty=1
|
||||||
fi
|
fi
|
||||||
|
unset is_dont_get_ip
|
||||||
[[ $is_dont_auto_exit ]] && unset is_config_file
|
[[ $is_dont_auto_exit ]] && unset is_config_file
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -676,7 +680,7 @@ uninstall() {
|
|||||||
manage stop &>/dev/null
|
manage stop &>/dev/null
|
||||||
manage disable &>/dev/null
|
manage disable &>/dev/null
|
||||||
rm -rf $is_core_dir $is_log_dir $is_sh_bin ${is_sh_bin/$is_core/sb} /lib/systemd/system/$is_core.service
|
rm -rf $is_core_dir $is_log_dir $is_sh_bin ${is_sh_bin/$is_core/sb} /lib/systemd/system/$is_core.service
|
||||||
sed -i "/alias $is_core=/d" /root/.bashrc
|
sed -i "/$is_core/d" /root/.bashrc
|
||||||
# uninstall caddy; 2 is ask result
|
# uninstall caddy; 2 is ask result
|
||||||
if [[ $REPLY == '2' ]]; then
|
if [[ $REPLY == '2' ]]; then
|
||||||
manage stop caddy &>/dev/null
|
manage stop caddy &>/dev/null
|
||||||
@@ -777,7 +781,7 @@ add() {
|
|||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
for v in ${protocol_list[@]}; do
|
for v in ${protocol_list[@]}; do
|
||||||
[[ $(egrep -i "^$is_lower$" <<<$v) ]] && is_new_protocol=$v && break
|
[[ $(grep -E -i "^$is_lower$" <<<$v) ]] && is_new_protocol=$v && break
|
||||||
done
|
done
|
||||||
|
|
||||||
[[ ! $is_new_protocol ]] && err "无法识别 ($1), 请使用: $is_core add [protocol] [args... | auto]"
|
[[ ! $is_new_protocol ]] && err "无法识别 ($1), 请使用: $is_core add [protocol] [args... | auto]"
|
||||||
@@ -845,7 +849,7 @@ add() {
|
|||||||
case $is_old_net in
|
case $is_old_net in
|
||||||
h2 | ws | httpupgrade)
|
h2 | ws | httpupgrade)
|
||||||
old_host=$host
|
old_host=$host
|
||||||
[[ ! $is_use_tls ]] && host=
|
[[ ! $is_use_tls ]] && unset host is_no_auto_tls
|
||||||
;;
|
;;
|
||||||
reality)
|
reality)
|
||||||
net_type=
|
net_type=
|
||||||
@@ -901,7 +905,7 @@ add() {
|
|||||||
is_tmp_use_name=加密方式
|
is_tmp_use_name=加密方式
|
||||||
is_tmp_list=${ss_method_list[@]}
|
is_tmp_list=${ss_method_list[@]}
|
||||||
for v in ${is_tmp_list[@]}; do
|
for v in ${is_tmp_list[@]}; do
|
||||||
[[ $(egrep -i "^${is_use_method}$" <<<$v) ]] && is_tmp_use_type=$v && break
|
[[ $(grep -E -i "^${is_use_method}$" <<<$v) ]] && is_tmp_use_type=$v && break
|
||||||
done
|
done
|
||||||
[[ ! ${is_tmp_use_type} ]] && {
|
[[ ! ${is_tmp_use_type} ]] && {
|
||||||
warn "(${is_use_method}) 不是一个可用的${is_tmp_use_name}."
|
warn "(${is_use_method}) 不是一个可用的${is_tmp_use_name}."
|
||||||
@@ -1018,6 +1022,7 @@ get() {
|
|||||||
[[ ! $is_addr ]] && {
|
[[ ! $is_addr ]] && {
|
||||||
get_ip
|
get_ip
|
||||||
is_addr=$ip
|
is_addr=$ip
|
||||||
|
[[ $(grep ":" <<<$ip) ]] && is_addr="[$ip]"
|
||||||
}
|
}
|
||||||
;;
|
;;
|
||||||
new)
|
new)
|
||||||
@@ -1028,8 +1033,8 @@ get() {
|
|||||||
file)
|
file)
|
||||||
is_file_str=$2
|
is_file_str=$2
|
||||||
[[ ! $is_file_str ]] && is_file_str='.json$'
|
[[ ! $is_file_str ]] && is_file_str='.json$'
|
||||||
# is_all_json=("$(ls $is_conf_dir | egrep $is_file_str)")
|
# is_all_json=("$(ls $is_conf_dir | grep -E $is_file_str)")
|
||||||
readarray -t is_all_json <<<"$(ls $is_conf_dir | egrep -i "$is_file_str" | sed '/dynamic-port-.*-link/d' | head -233)" # limit max 233 lines for show.
|
readarray -t is_all_json <<<"$(ls $is_conf_dir | grep -E -i "$is_file_str" | sed '/dynamic-port-.*-link/d' | head -233)" # limit max 233 lines for show.
|
||||||
[[ ! $is_all_json ]] && err "无法找到相关的配置文件: $2"
|
[[ ! $is_all_json ]] && err "无法找到相关的配置文件: $2"
|
||||||
[[ ${#is_all_json[@]} -eq 1 ]] && is_config_file=$is_all_json && is_auto_get_config=1
|
[[ ${#is_all_json[@]} -eq 1 ]] && is_config_file=$is_all_json && is_auto_get_config=1
|
||||||
[[ ! $is_config_file ]] && {
|
[[ ! $is_config_file ]] && {
|
||||||
@@ -1066,7 +1071,10 @@ get() {
|
|||||||
is_config_name=$is_config_file
|
is_config_name=$is_config_file
|
||||||
|
|
||||||
if [[ $is_caddy && $host && -f $is_caddy_conf/$host.conf ]]; then
|
if [[ $is_caddy && $host && -f $is_caddy_conf/$host.conf ]]; then
|
||||||
is_tmp_https_port=$(egrep -o "$host:[1-9][0-9]?+" $is_caddy_conf/$host.conf | sed s/.*://)
|
is_tmp_https_port=$(grep -E -o "$host:[1-9][0-9]?+" $is_caddy_conf/$host.conf | sed s/.*://)
|
||||||
|
fi
|
||||||
|
if [[ $host && ! -f $is_caddy_conf/$host.conf ]]; then
|
||||||
|
is_no_auto_tls=1
|
||||||
fi
|
fi
|
||||||
[[ $is_tmp_https_port ]] && is_https_port=$is_tmp_https_port
|
[[ $is_tmp_https_port ]] && is_https_port=$is_tmp_https_port
|
||||||
[[ $is_client && $host ]] && port=$is_https_port
|
[[ $is_client && $host ]] && port=$is_https_port
|
||||||
@@ -1090,6 +1098,8 @@ get() {
|
|||||||
tuic*)
|
tuic*)
|
||||||
net=tuic
|
net=tuic
|
||||||
is_protocol=$net
|
is_protocol=$net
|
||||||
|
[[ ! $password ]] && password=$uuid
|
||||||
|
is_users="users:[{uuid:\"$uuid\",password:\"$password\"}]"
|
||||||
json_str="$is_users,congestion_control:\"bbr\",$is_tls_json"
|
json_str="$is_users,congestion_control:\"bbr\",$is_tls_json"
|
||||||
;;
|
;;
|
||||||
trojan*)
|
trojan*)
|
||||||
@@ -1189,7 +1199,11 @@ get() {
|
|||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
ssss | ss2022)
|
ssss | ss2022)
|
||||||
|
if [[ $(grep 128 <<<$ss_method) ]]; then
|
||||||
|
$is_core_bin generate rand 16 --base64
|
||||||
|
else
|
||||||
$is_core_bin generate rand 32 --base64
|
$is_core_bin generate rand 32 --base64
|
||||||
|
fi
|
||||||
;;
|
;;
|
||||||
ping)
|
ping)
|
||||||
# is_ip_type="-4"
|
# is_ip_type="-4"
|
||||||
@@ -1199,11 +1213,6 @@ get() {
|
|||||||
[[ $(grep ":" <<<$ip) ]] && is_dns_type="aaaa"
|
[[ $(grep ":" <<<$ip) ]] && is_dns_type="aaaa"
|
||||||
is_host_dns=$(_wget -qO- --header="accept: application/dns-json" "https://one.one.one.one/dns-query?name=$host&type=$is_dns_type")
|
is_host_dns=$(_wget -qO- --header="accept: application/dns-json" "https://one.one.one.one/dns-query?name=$host&type=$is_dns_type")
|
||||||
;;
|
;;
|
||||||
log | logerr)
|
|
||||||
msg "\n 提醒: 按 $(_green Ctrl + C) 退出\n"
|
|
||||||
[[ $1 == 'log' ]] && tail -f $is_log_dir/access.log
|
|
||||||
[[ $1 == 'logerr' ]] && tail -f $is_log_dir/error.log
|
|
||||||
;;
|
|
||||||
install-caddy)
|
install-caddy)
|
||||||
_green "\n安装 Caddy 实现自动配置 TLS.\n"
|
_green "\n安装 Caddy 实现自动配置 TLS.\n"
|
||||||
load download.sh
|
load download.sh
|
||||||
@@ -1290,6 +1299,7 @@ info() {
|
|||||||
[[ $net == "http" ]] && {
|
[[ $net == "http" ]] && {
|
||||||
net=tcp
|
net=tcp
|
||||||
is_type=http
|
is_type=http
|
||||||
|
is_tcp_http=1
|
||||||
is_info_show+=(5)
|
is_info_show+=(5)
|
||||||
is_info_str=(${is_info_str[@]/http/tcp http})
|
is_info_str=(${is_info_str[@]/http/tcp http})
|
||||||
}
|
}
|
||||||
@@ -1324,10 +1334,10 @@ info() {
|
|||||||
;;
|
;;
|
||||||
tuic)
|
tuic)
|
||||||
is_insecure=1
|
is_insecure=1
|
||||||
is_can_change=(0 1 5)
|
is_can_change=(0 1 4 5)
|
||||||
is_info_show=(0 1 2 3 8 9 20 21)
|
is_info_show=(0 1 2 3 10 8 9 20 21)
|
||||||
is_url="$is_protocol://$uuid:@$is_addr:$port?alpn=h3&allow_insecure=1&congestion_control=bbr#233boy-$net-$is_addr"
|
is_url="$is_protocol://$uuid:$password@$is_addr:$port?alpn=h3&allow_insecure=1&congestion_control=bbr#233boy-$net-$is_addr"
|
||||||
is_info_str=($is_protocol $is_addr $port $uuid tls h3 true bbr)
|
is_info_str=($is_protocol $is_addr $port $uuid $password tls h3 true bbr)
|
||||||
;;
|
;;
|
||||||
reality)
|
reality)
|
||||||
is_color=41
|
is_color=41
|
||||||
@@ -1341,7 +1351,7 @@ info() {
|
|||||||
is_info_show=(${is_info_show[@]/15/})
|
is_info_show=(${is_info_show[@]/15/})
|
||||||
}
|
}
|
||||||
is_info_str=($is_protocol $is_addr $port $uuid $is_flow $is_net_type reality $is_servername chrome $is_public_key)
|
is_info_str=($is_protocol $is_addr $port $uuid $is_flow $is_net_type reality $is_servername chrome $is_public_key)
|
||||||
is_url="$is_protocol://$uuid@$ip:$port?encryption=none&security=reality&flow=$is_flow&type=$is_net_type&sni=$is_servername&pbk=$is_public_key&fp=chrome#233boy-$net-$is_addr"
|
is_url="$is_protocol://$uuid@$is_addr:$port?encryption=none&security=reality&flow=$is_flow&type=$is_net_type&sni=$is_servername&pbk=$is_public_key&fp=chrome#233boy-$net-$is_addr"
|
||||||
;;
|
;;
|
||||||
direct)
|
direct)
|
||||||
is_can_change=(0 1 7 8)
|
is_can_change=(0 1 7 8)
|
||||||
@@ -1526,7 +1536,8 @@ is_main_menu() {
|
|||||||
_try_enable_bbr
|
_try_enable_bbr
|
||||||
;;
|
;;
|
||||||
2)
|
2)
|
||||||
get log
|
load log.sh
|
||||||
|
log_set
|
||||||
;;
|
;;
|
||||||
3)
|
3)
|
||||||
get test-run
|
get test-run
|
||||||
@@ -1644,7 +1655,8 @@ main() {
|
|||||||
load import.sh
|
load import.sh
|
||||||
;;
|
;;
|
||||||
log)
|
log)
|
||||||
get $@
|
load log.sh
|
||||||
|
log_set $2
|
||||||
;;
|
;;
|
||||||
url | qr)
|
url | qr)
|
||||||
url_qr $@
|
url_qr $@
|
||||||
|
|||||||
28
src/dns.sh
28
src/dns.sh
@@ -8,6 +8,9 @@ is_dns_list=(
|
|||||||
none
|
none
|
||||||
)
|
)
|
||||||
dns_set() {
|
dns_set() {
|
||||||
|
if [[ $(echo -e "1.11.99\n$is_core_ver" | sort -V | head -n1) == '1.11.99' ]]; then
|
||||||
|
is_dns_new=1
|
||||||
|
fi
|
||||||
if [[ $1 ]]; then
|
if [[ $1 ]]; then
|
||||||
case ${1,,} in
|
case ${1,,} in
|
||||||
11 | 1111)
|
11 | 1111)
|
||||||
@@ -46,11 +49,34 @@ dns_set() {
|
|||||||
ask string is_dns_use "请输入 DNS: "
|
ask string is_dns_use "请输入 DNS: "
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
is_dns_use_bak=$is_dns_use
|
||||||
if [[ $is_dns_use == "none" ]]; then
|
if [[ $is_dns_use == "none" ]]; then
|
||||||
cat <<<$(jq '.dns={}' $is_config_json) >$is_config_json
|
cat <<<$(jq '.dns={}' $is_config_json) >$is_config_json
|
||||||
|
else
|
||||||
|
if [[ $is_dns_new ]]; then
|
||||||
|
dns_set_server $is_dns_use
|
||||||
|
cat <<<$(jq '.dns.servers=[{type:"'$is_dns_type'",server:"'$is_dns_use'",domain_resolver:"local"},{tag:"local",type:"local"}]' $is_config_json) >$is_config_json
|
||||||
else
|
else
|
||||||
cat <<<$(jq '.dns.servers=[{address:"'$is_dns_use'",address_resolver:"local"},{tag:"local",address:"local"}]' $is_config_json) >$is_config_json
|
cat <<<$(jq '.dns.servers=[{address:"'$is_dns_use'",address_resolver:"local"},{tag:"local",address:"local"}]' $is_config_json) >$is_config_json
|
||||||
fi
|
fi
|
||||||
|
fi
|
||||||
manage restart &
|
manage restart &
|
||||||
msg "\n已更新 DNS 为: $(_green $is_dns_use)\n"
|
msg "\n已更新 DNS 为: $(_green $is_dns_use_bak)\n"
|
||||||
|
}
|
||||||
|
dns_set_server() {
|
||||||
|
if [[ $(grep '://' <<<$1) ]]; then
|
||||||
|
is_tmp_dns_set=($(awk -F '://|/' '{print $1, $2}' <<<${1,,}))
|
||||||
|
case ${is_tmp_dns_set[0]} in
|
||||||
|
tcp | udp | tls | https | quic | h3)
|
||||||
|
is_dns_use=${is_tmp_dns_set[1]}
|
||||||
|
is_dns_type=${is_tmp_dns_set[0]}
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
err "无法识别 DNS 类型!"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
else
|
||||||
|
is_dns_use=$1
|
||||||
|
is_dns_type=udp
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
@@ -13,7 +13,7 @@ get_latest_version() {
|
|||||||
url="https://api.github.com/repos/$is_caddy_repo/releases/latest?v=$RANDOM"
|
url="https://api.github.com/repos/$is_caddy_repo/releases/latest?v=$RANDOM"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
latest_ver=$(_wget -qO- $url | grep tag_name | egrep -o 'v([0-9.]+)')
|
latest_ver=$(_wget -qO- $url | grep tag_name | grep -E -o 'v([0-9.]+)')
|
||||||
[[ ! $latest_ver ]] && {
|
[[ ! $latest_ver ]] && {
|
||||||
err "获取 ${name} 最新版本失败."
|
err "获取 ${name} 最新版本失败."
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -19,7 +19,7 @@ in_conf() {
|
|||||||
[[ ! $uuid ]] && uuid=$trojan_password
|
[[ ! $uuid ]] && uuid=$trojan_password
|
||||||
if [[ $host ]]; then
|
if [[ $host ]]; then
|
||||||
if [[ $is_caddy && -f $is_caddy_conf/$host.conf ]]; then
|
if [[ $is_caddy && -f $is_caddy_conf/$host.conf ]]; then
|
||||||
tmp_tlsport=$(egrep -o "$host:[1-9][0-9]?+" $is_caddy_conf/$host.conf | sed s/.*://)
|
tmp_tlsport=$(grep -E -o "$host:[1-9][0-9]?+" $is_caddy_conf/$host.conf | sed s/.*://)
|
||||||
fi
|
fi
|
||||||
[[ $tmp_tlsport ]] && https_port=$tmp_tlsport
|
[[ $tmp_tlsport ]] && https_port=$tmp_tlsport
|
||||||
add $is_protocol-$net-tls
|
add $is_protocol-$net-tls
|
||||||
@@ -53,10 +53,10 @@ is_change=1
|
|||||||
is_dont_auto_exit=1
|
is_dont_auto_exit=1
|
||||||
is_dont_test_host=1
|
is_dont_test_host=1
|
||||||
if [[ -f $is_xray_sh && -d $is_xray_conf ]]; then
|
if [[ -f $is_xray_sh && -d $is_xray_conf ]]; then
|
||||||
is_list=($(ls $is_xray_conf | grep .json | egrep -iv 'kcp|grpc|dynamic|quic' | sed "s#^#$is_xray_conf/#"))
|
is_list=($(ls $is_xray_conf | grep .json | grep -E -iv 'kcp|grpc|dynamic|quic' | sed "s#^#$is_xray_conf/#"))
|
||||||
fi
|
fi
|
||||||
if [[ -f $is_v2ray_sh && -d $is_v2ray_conf ]]; then
|
if [[ -f $is_v2ray_sh && -d $is_v2ray_conf ]]; then
|
||||||
is_list+=($(ls $is_v2ray_conf | grep .json | egrep -iv 'kcp|grpc|dynamic|quic' | sed "s#^#$is_v2ray_conf/#"))
|
is_list+=($(ls $is_v2ray_conf | grep .json | grep -E -iv 'kcp|grpc|dynamic|quic' | sed "s#^#$is_v2ray_conf/#"))
|
||||||
fi
|
fi
|
||||||
[[ ${is_list[@]} =~ "xray" ]] && is_xray_in=1
|
[[ ${is_list[@]} =~ "xray" ]] && is_xray_in=1
|
||||||
[[ ${is_list[@]} =~ "v2ray" ]] && is_v2ray_in=1
|
[[ ${is_list[@]} =~ "v2ray" ]] && is_v2ray_in=1
|
||||||
|
|||||||
@@ -124,8 +124,8 @@ if [[ -f $is_caddy_bin && -d $is_caddy_dir && $is_caddy_service ]]; then
|
|||||||
systemctl restart caddy &
|
systemctl restart caddy &
|
||||||
}
|
}
|
||||||
is_caddy_ver=$($is_caddy_bin version | head -n1 | cut -d " " -f1)
|
is_caddy_ver=$($is_caddy_bin version | head -n1 | cut -d " " -f1)
|
||||||
is_tmp_http_port=$(egrep '^ {2,}http_port|^http_port' $is_caddyfile | egrep -o [0-9]+)
|
is_tmp_http_port=$(grep -E '^ {2,}http_port|^http_port' $is_caddyfile | grep -E -o [0-9]+)
|
||||||
is_tmp_https_port=$(egrep '^ {2,}https_port|^https_port' $is_caddyfile | egrep -o [0-9]+)
|
is_tmp_https_port=$(grep -E '^ {2,}https_port|^https_port' $is_caddyfile | grep -E -o [0-9]+)
|
||||||
[[ $is_tmp_http_port ]] && is_http_port=$is_tmp_http_port
|
[[ $is_tmp_http_port ]] && is_http_port=$is_tmp_http_port
|
||||||
[[ $is_tmp_https_port ]] && is_https_port=$is_tmp_https_port
|
[[ $is_tmp_https_port ]] && is_https_port=$is_tmp_https_port
|
||||||
if [[ $(pgrep -f $is_caddy_bin) ]]; then
|
if [[ $(pgrep -f $is_caddy_bin) ]]; then
|
||||||
|
|||||||
44
src/log.sh
Normal file
44
src/log.sh
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
is_log_level_list=(
|
||||||
|
trace
|
||||||
|
debug
|
||||||
|
info
|
||||||
|
warn
|
||||||
|
error
|
||||||
|
fatal
|
||||||
|
panic
|
||||||
|
none
|
||||||
|
del
|
||||||
|
)
|
||||||
|
log_set() {
|
||||||
|
if [[ $1 ]]; then
|
||||||
|
for v in ${is_log_level_list[@]}; do
|
||||||
|
[[ $(grep -E -i "^${1,,}$" <<<$v) ]] && is_log_level_use=$v && break
|
||||||
|
done
|
||||||
|
[[ ! $is_log_level_use ]] && {
|
||||||
|
err "无法识别 log 参数: $@ \n请使用 $is_core log [${is_log_level_list[@]}] 进行相关设定.\n备注: del 参数仅临时删除 log 文件; none 参数将不会生成 log 文件."
|
||||||
|
}
|
||||||
|
case $is_log_level_use in
|
||||||
|
del)
|
||||||
|
rm -rf $is_log_dir/*.log
|
||||||
|
msg "\n $(_green 已临时删除 log 文件, 如果你想要完全禁止生成 log 文件请使用: $is_core log none)\n"
|
||||||
|
;;
|
||||||
|
none)
|
||||||
|
rm -rf $is_log_dir/*.log
|
||||||
|
cat <<<$(jq '.log={"disabled":true}' $is_config_json) >$is_config_json
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
cat <<<$(jq '.log={output:"/var/log/'$is_core'/access.log",level:"'$is_log_level_use'","timestamp":true}' $is_config_json) >$is_config_json
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
manage restart &
|
||||||
|
[[ $1 != 'del' ]] && msg "\n已更新 Log 设定为: $(_green $is_log_level_use)\n"
|
||||||
|
else
|
||||||
|
if [[ -f $is_log_dir/access.log ]]; then
|
||||||
|
msg "\n 提醒: 按 $(_green Ctrl + C) 退出\n"
|
||||||
|
tail -f $is_log_dir/access.log
|
||||||
|
else
|
||||||
|
err "无法找到 log 文件."
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user