-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathproxy-lsp.sh
executable file
·44 lines (32 loc) · 1.38 KB
/
proxy-lsp.sh
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
#!/bin/bash
usage() {
>&2 echo -e "VLESS-SPLT-PLAIN proxy builder"
>&2 echo -e "Usage: proxy-lsp <[email protected]:80:/webpath>"
}
if [ -z "$1" ]; then
>&2 echo -e "Missing command options.\n"
usage; exit 1
fi
# [email protected]:443:/webpath
options=(`echo $1 |tr '@' ' '`)
id="${options[0]}"
options=(`echo ${options[1]} |tr ':' ' '`)
host="${options[0]}"
port="${options[1]}"
path="${options[2]}"
if [ -z "${id}" ]; then >&2 echo -e "Error: id undefined.\n"; usage; exit 1; fi
if [ -z "${host}" ]; then >&2 echo -e "Error: destination host undefined.\n"; usage; exit 1; fi
if [ -z "${port}" ]; then port=80; fi
if ! [ "${port}" -eq "${port}" ] 2>/dev/null; then >&2 echo -e "Port number must be numeric.\n"; exit 1; fi
# User settings
Jusers=`jq -nc --arg uuid "${id}" '. += {"id":$uuid,"encryption":"none","level":0}'`
# Vnext settings
Jvnext=`jq -nc --arg host "${host}" --arg port "${port}" --argjson juser "${Jusers}" \
'. += {"address":$host,"port":($port|tonumber),"users":[$juser]}' `
# Stream Settings
JstreamSettings=`jq -nc --arg path "${path}" \
'. += {"network":"splithttp","security":"none","splithttpSettings":{"path":$path}}' `
Jproxy=`jq -nc --arg host "${host}" --argjson jvnext "${Jvnext}" --argjson jstreamSettings "${JstreamSettings}" \
'. += { "tag":"proxy","protocol":"vless","settings":{"vnext":[$jvnext]},"streamSettings":$jstreamSettings}' `
echo "$Jproxy"
exit 0