Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
0cac60d3e3 | ||
![]() |
86bb946091 | ||
![]() |
7270c1a16d |
@@ -127,7 +127,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-64.zip"
|
echo -e " -f, --core-file <path> 自定义 $is_core_name 文件路径, e.g., -f /root/${is_core}-linux-64.zip"
|
||||||
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 v5.4.1"
|
echo -e " -v, --core-version <ver> 自定义 $is_core_name 版本, e.g., -v v5.4.1"
|
||||||
echo -e " -h, --help 显示此帮助界面\n"
|
echo -e " -h, --help 显示此帮助界面\n"
|
||||||
|
|
||||||
@@ -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 $pkg"
|
||||||
is_fail=1
|
is_fail=1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
10
src/core.sh
10
src/core.sh
@@ -124,7 +124,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 ]] && {
|
||||||
@@ -732,6 +732,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
|
||||||
@@ -761,6 +763,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
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1184,6 +1187,7 @@ get() {
|
|||||||
[[ ! $is_addr ]] && {
|
[[ ! $is_addr ]] && {
|
||||||
get_ip
|
get_ip
|
||||||
is_addr=$ip
|
is_addr=$ip
|
||||||
|
[[ $(grep ":" <<<$ip) ]] && is_addr="[$ip]"
|
||||||
}
|
}
|
||||||
;;
|
;;
|
||||||
new)
|
new)
|
||||||
@@ -1303,7 +1307,7 @@ get() {
|
|||||||
net=socks
|
net=socks
|
||||||
[[ ! $is_socks_user ]] && is_socks_user=233boy
|
[[ ! $is_socks_user ]] && is_socks_user=233boy
|
||||||
[[ ! $is_socks_pass ]] && is_socks_pass=$uuid
|
[[ ! $is_socks_pass ]] && is_socks_pass=$uuid
|
||||||
json_str='settings:{auth:"password",accounts:[{user:'\"$is_socks_user\"',pass:'\"$is_socks_pass\"'}],udp:true}'
|
json_str='settings:{auth:"password",accounts:[{user:'\"$is_socks_user\"',pass:'\"$is_socks_pass\"'}],udp:true,ip:"0.0.0.0"}'
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
err "无法识别协议: $is_config_file"
|
err "无法识别协议: $is_config_file"
|
||||||
@@ -1533,7 +1537,7 @@ info() {
|
|||||||
is_can_change=(0 1 5 10 11)
|
is_can_change=(0 1 5 10 11)
|
||||||
is_info_show=(0 1 2 3 15 8 16 17 18)
|
is_info_show=(0 1 2 3 15 8 16 17 18)
|
||||||
is_info_str=($is_protocol $is_addr $port $uuid xtls-rprx-vision reality $is_servername "ios" $is_public_key)
|
is_info_str=($is_protocol $is_addr $port $uuid xtls-rprx-vision reality $is_servername "ios" $is_public_key)
|
||||||
is_url="$is_protocol://$uuid@$ip:$port?encryption=none&security=reality&flow=xtls-rprx-vision&type=tcp&sni=$is_servername&pbk=$is_public_key&fp=ios#233boy-$net-$is_addr"
|
is_url="$is_protocol://$uuid@$is_addr:$port?encryption=none&security=reality&flow=xtls-rprx-vision&type=tcp&sni=$is_servername&pbk=$is_public_key&fp=ios#233boy-$net-$is_addr"
|
||||||
;;
|
;;
|
||||||
door)
|
door)
|
||||||
is_can_change=(0 1 8 9)
|
is_can_change=(0 1 8 9)
|
||||||
|
Reference in New Issue
Block a user