mirror of
https://github.com/Ysurac/openmptcprouter-vps.git
synced 2025-02-12 11:21:56 +00:00
Server scripts update
This commit is contained in:
parent
e87ff9af8e
commit
5cf11f2650
14 changed files with 104 additions and 42 deletions
|
@ -32,23 +32,23 @@ NOINTERNET=${NOINTERNET:-no}
|
||||||
SPEEDTEST=${SPEEDTEST:-no}
|
SPEEDTEST=${SPEEDTEST:-no}
|
||||||
LOCALFILES=${LOCALFILES:-no}
|
LOCALFILES=${LOCALFILES:-no}
|
||||||
INTERFACE=${INTERFACE:-$(ip -o -4 route show to default | grep -m 1 -Po '(?<=dev )(\S+)' | tr -d "\n")}
|
INTERFACE=${INTERFACE:-$(ip -o -4 route show to default | grep -m 1 -Po '(?<=dev )(\S+)' | tr -d "\n")}
|
||||||
KERNEL_VERSION="5.4.86"
|
KERNEL_VERSION="5.4.100"
|
||||||
KERNEL_PACKAGE_VERSION="1.16+9d3f35b"
|
KERNEL_PACKAGE_VERSION="1.18+9d3f35b"
|
||||||
KERNEL_RELEASE="${KERNEL_VERSION}-mptcp_${KERNEL_PACKAGE_VERSION}"
|
KERNEL_RELEASE="${KERNEL_VERSION}-mptcp_${KERNEL_PACKAGE_VERSION}"
|
||||||
GLORYTUN_UDP_VERSION="32267e86a6da05b285bb3bf2b136c105dc0af4bb"
|
GLORYTUN_UDP_VERSION="32267e86a6da05b285bb3bf2b136c105dc0af4bb"
|
||||||
#MLVPN_VERSION="8f9720978b28c1954f9f229525333547283316d2"
|
#MLVPN_VERSION="8f9720978b28c1954f9f229525333547283316d2"
|
||||||
MLVPN_VERSION="f45cec350a6879b8b020143a78134a022b5df2a7"
|
MLVPN_VERSION="f45cec350a6879b8b020143a78134a022b5df2a7"
|
||||||
UBOND_VERSION="672100fb57913ffd29caad63517e145a5974b078"
|
UBOND_VERSION="672100fb57913ffd29caad63517e145a5974b078"
|
||||||
OBFS_VERSION="486bebd9208539058e57e23a12f23103016e09b4"
|
OBFS_VERSION="486bebd9208539058e57e23a12f23103016e09b4"
|
||||||
OMR_ADMIN_VERSION="f52acee888a39cc812ba6848aec5eeb1a82ab7ba"
|
OMR_ADMIN_VERSION="376322a61dc53e671e7e3c7eaaf6645c0537a9d3"
|
||||||
DSVPN_VERSION="3b99d2ef6c02b2ef68b5784bec8adfdd55b29b1a"
|
DSVPN_VERSION="3b99d2ef6c02b2ef68b5784bec8adfdd55b29b1a"
|
||||||
V2RAY_VERSION="4.31.0"
|
V2RAY_VERSION="4.34.0"
|
||||||
V2RAY_PLUGIN_VERSION="v1.4.3"
|
V2RAY_PLUGIN_VERSION="v1.4.3"
|
||||||
EASYRSA_VERSION="3.0.6"
|
EASYRSA_VERSION="3.0.6"
|
||||||
SHADOWSOCKS_VERSION="38871da8baf5cfa400983dcdf918397e48655203"
|
SHADOWSOCKS_VERSION="38871da8baf5cfa400983dcdf918397e48655203"
|
||||||
DEFAULT_USER="openmptcprouter"
|
DEFAULT_USER="openmptcprouter"
|
||||||
VPS_DOMAIN=${VPS_DOMAIN:-$(wget -4 -qO- -T 2 http://hostname.openmptcprouter.com)}
|
VPS_DOMAIN=${VPS_DOMAIN:-$(wget -4 -qO- -T 2 http://hostname.openmptcprouter.com)}
|
||||||
VPSPATH="server"
|
VPSPATH="server-test"
|
||||||
VPSURL="https://www.openmptcprouter.com/"
|
VPSURL="https://www.openmptcprouter.com/"
|
||||||
|
|
||||||
OMR_VERSION="0.1025-test"
|
OMR_VERSION="0.1025-test"
|
||||||
|
@ -167,11 +167,9 @@ Pin-Priority: 1001
|
||||||
EOF
|
EOF
|
||||||
wget -O - http://repo.openmptcprouter.com/openmptcprouter.gpg.key | apt-key add -
|
wget -O - http://repo.openmptcprouter.com/openmptcprouter.gpg.key | apt-key add -
|
||||||
|
|
||||||
# Install mptcp kernel and shadowsocks
|
# Add buster-backports repo
|
||||||
echo "Install mptcp kernel and shadowsocks..."
|
echo 'deb http://deb.debian.org/debian buster-backports main' >> /etc/apt/sources.list.d/buster-backports.list
|
||||||
apt-get update
|
|
||||||
sleep 2
|
|
||||||
apt-get -y install dirmngr patch
|
|
||||||
#apt-key adv --keyserver hkp://keys.gnupg.net --recv-keys 379CE192D401AB61
|
#apt-key adv --keyserver hkp://keys.gnupg.net --recv-keys 379CE192D401AB61
|
||||||
if [ "$ID" = "debian" ]; then
|
if [ "$ID" = "debian" ]; then
|
||||||
if [ "$VERSION_ID" = "9" ]; then
|
if [ "$VERSION_ID" = "9" ]; then
|
||||||
|
@ -182,8 +180,12 @@ elif [ "$ID" = "ubuntu" ]; then
|
||||||
echo 'deb http://archive.ubuntu.com/ubuntu bionic-backports main' > /etc/apt/sources.list.d/bionic-backports.list
|
echo 'deb http://archive.ubuntu.com/ubuntu bionic-backports main' > /etc/apt/sources.list.d/bionic-backports.list
|
||||||
echo 'deb http://archive.ubuntu.com/ubuntu bionic universe' > /etc/apt/sources.list.d/bionic-universe.list
|
echo 'deb http://archive.ubuntu.com/ubuntu bionic universe' > /etc/apt/sources.list.d/bionic-universe.list
|
||||||
fi
|
fi
|
||||||
|
# Install mptcp kernel and shadowsocks
|
||||||
|
echo "Install mptcp kernel and shadowsocks..."
|
||||||
apt-get update
|
apt-get update
|
||||||
sleep 2
|
sleep 2
|
||||||
|
apt-get -y install dirmngr patch
|
||||||
|
|
||||||
wget -O /tmp/linux-image-${KERNEL_RELEASE}_amd64.deb ${VPSURL}kernel/linux-image-${KERNEL_RELEASE}_amd64.deb
|
wget -O /tmp/linux-image-${KERNEL_RELEASE}_amd64.deb ${VPSURL}kernel/linux-image-${KERNEL_RELEASE}_amd64.deb
|
||||||
wget -O /tmp/linux-headers-${KERNEL_RELEASE}_amd64.deb ${VPSURL}kernel/linux-headers-${KERNEL_RELEASE}_amd64.deb
|
wget -O /tmp/linux-headers-${KERNEL_RELEASE}_amd64.deb ${VPSURL}kernel/linux-headers-${KERNEL_RELEASE}_amd64.deb
|
||||||
# Rename bzImage to vmlinuz, needed when custom kernel was used
|
# Rename bzImage to vmlinuz, needed when custom kernel was used
|
||||||
|
@ -400,6 +402,7 @@ if [ "$OMR_ADMIN" = "yes" ]; then
|
||||||
mkdir -p /var/opt/openmptcprouter
|
mkdir -p /var/opt/openmptcprouter
|
||||||
if [ "$SOURCES" = "yes" ]; then
|
if [ "$SOURCES" = "yes" ]; then
|
||||||
wget -O /lib/systemd/system/omr-admin.service ${VPSURL}${VPSPATH}/omr-admin.service.in
|
wget -O /lib/systemd/system/omr-admin.service ${VPSURL}${VPSPATH}/omr-admin.service.in
|
||||||
|
wget -O /lib/systemd/system/omr-admin-ipv6.service ${VPSURL}${VPSPATH}/omr-admin-ipv6.service.in
|
||||||
wget -O /tmp/openmptcprouter-vps-admin.zip https://github.com/Ysurac/openmptcprouter-vps-admin/archive/${OMR_ADMIN_VERSION}.zip
|
wget -O /tmp/openmptcprouter-vps-admin.zip https://github.com/Ysurac/openmptcprouter-vps-admin/archive/${OMR_ADMIN_VERSION}.zip
|
||||||
cd /tmp
|
cd /tmp
|
||||||
unzip -q -o openmptcprouter-vps-admin.zip
|
unzip -q -o openmptcprouter-vps-admin.zip
|
||||||
|
@ -427,6 +430,10 @@ if [ "$OMR_ADMIN" = "yes" ]; then
|
||||||
sed -i 's/"port": 65500,/"port": 65500,\n "internet": false,/' /etc/openmptcprouter-vps-admin/omr-admin-config.json
|
sed -i 's/"port": 65500,/"port": 65500,\n "internet": false,/' /etc/openmptcprouter-vps-admin/omr-admin-config.json
|
||||||
}
|
}
|
||||||
chmod u+x /usr/local/bin/omr-admin.py
|
chmod u+x /usr/local/bin/omr-admin.py
|
||||||
|
#[ "$(ip -6 a)" != "" ] && sed -i 's/0.0.0.0/::/g' /usr/local/bin/omr-admin.py
|
||||||
|
[ "$(ip -6 a)" != "" ] && {
|
||||||
|
systemctl enable omr-admin-ipv6.service
|
||||||
|
}
|
||||||
systemctl enable omr-admin.service
|
systemctl enable omr-admin.service
|
||||||
rm -rf /tmp/tmp/openmptcprouter-vps-admin-${OMR_ADMIN_VERSION}
|
rm -rf /tmp/tmp/openmptcprouter-vps-admin-${OMR_ADMIN_VERSION}
|
||||||
else
|
else
|
||||||
|
@ -580,6 +587,8 @@ if [ "$V2RAY" = "yes" ]; then
|
||||||
rm /etc/v2ray/config.json
|
rm /etc/v2ray/config.json
|
||||||
ln -s /etc/v2ray/v2ray-server.json /etc/v2ray/config.json
|
ln -s /etc/v2ray/v2ray-server.json /etc/v2ray/config.json
|
||||||
fi
|
fi
|
||||||
|
sed -i 's:debug:warning:' /etc/v2ray/v2ray-server.json
|
||||||
|
rm -f /tmp/v2rayError.log
|
||||||
if [ -f /etc/systemd/system/v2ray.service.dpkg-dist ]; then
|
if [ -f /etc/systemd/system/v2ray.service.dpkg-dist ]; then
|
||||||
mv -f /etc/systemd/system/v2ray.service.dpkg-dist /etc/systemd/system/v2ray.service
|
mv -f /etc/systemd/system/v2ray.service.dpkg-dist /etc/systemd/system/v2ray.service
|
||||||
fi
|
fi
|
||||||
|
@ -644,10 +653,6 @@ if [ "$MLVPN" = "yes" ]; then
|
||||||
systemctl enable systemd-networkd.service
|
systemctl enable systemd-networkd.service
|
||||||
echo "install mlvpn done"
|
echo "install mlvpn done"
|
||||||
fi
|
fi
|
||||||
if systemctl -q is-active openvpn-server@tun0.service; then
|
|
||||||
systemctl -q stop openvpn-server@tun0 > /dev/null 2>&1
|
|
||||||
systemctl -q disable openvpn-server@tun0 > /dev/null 2>&1
|
|
||||||
fi
|
|
||||||
if systemctl -q is-active ubond@ubond0.service; then
|
if systemctl -q is-active ubond@ubond0.service; then
|
||||||
systemctl -q stop ubond@ubond0 > /dev/null 2>&1
|
systemctl -q stop ubond@ubond0 > /dev/null 2>&1
|
||||||
systemctl -q disable ubond@ubond0 > /dev/null 2>&1
|
systemctl -q disable ubond@ubond0 > /dev/null 2>&1
|
||||||
|
@ -703,6 +708,32 @@ if [ "$UBOND" = "yes" ]; then
|
||||||
systemctl enable systemd-networkd.service
|
systemctl enable systemd-networkd.service
|
||||||
echo "install ubond done"
|
echo "install ubond done"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if systemctl -q is-active wg-quick@wg0.service; then
|
||||||
|
systemctl -q stop wg-quick@wg0 > /dev/null 2>&1
|
||||||
|
systemctl -q disable wg-quick@wg0 > /dev/null 2>&1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ "$WIREGUARD" = "yes" ]; then
|
||||||
|
echo "Install WireGuard"
|
||||||
|
rm -f /var/lib/dpkg/lock
|
||||||
|
rm -f /var/lib/dpkg/lock-frontend
|
||||||
|
apt-get --no-install-recommends -y wireguard-tools
|
||||||
|
if [ ! -f /etc/wireguard/wg0.conf ]; then
|
||||||
|
cd /etc/wireguard
|
||||||
|
umask 077; wg genkey | tee vpn-server-private.key | wg pubkey > vpn-server-public.key
|
||||||
|
cat > /etc/wireguard/wg0.conf <<-EOF
|
||||||
|
[Interface]
|
||||||
|
PrivateKey = $(cat /etc/wireguard/vpn-server-private.key | tr -d "\n")
|
||||||
|
ListenPort = 65311
|
||||||
|
Address = 10.255.247.1/24
|
||||||
|
SaveConfig = true
|
||||||
|
EOF
|
||||||
|
fi
|
||||||
|
systemctl enable wg-quick@wg0
|
||||||
|
echo "Install wireguard done"
|
||||||
|
fi
|
||||||
|
|
||||||
if systemctl -q is-active openvpn-server@tun0.service; then
|
if systemctl -q is-active openvpn-server@tun0.service; then
|
||||||
systemctl -q stop openvpn-server@tun0 > /dev/null 2>&1
|
systemctl -q stop openvpn-server@tun0 > /dev/null 2>&1
|
||||||
systemctl -q disable openvpn-server@tun0 > /dev/null 2>&1
|
systemctl -q disable openvpn-server@tun0 > /dev/null 2>&1
|
||||||
|
@ -974,6 +1005,14 @@ else
|
||||||
fi
|
fi
|
||||||
chmod 755 /usr/local/bin/multipath
|
chmod 755 /usr/local/bin/multipath
|
||||||
|
|
||||||
|
# Add omr-test-speed utility
|
||||||
|
if [ "$LOCALFILES" = "no" ]; then
|
||||||
|
wget -O /usr/local/bin/omr-test-speed ${VPSURL}${VPSPATH}/omr-test-speed
|
||||||
|
else
|
||||||
|
cp ${DIR}/omr-test-speed /usr/local/bin/omr-test-speed
|
||||||
|
fi
|
||||||
|
chmod 755 /usr/local/bin/omr-test-speed
|
||||||
|
|
||||||
# Add OpenMPTCProuter service
|
# Add OpenMPTCProuter service
|
||||||
if [ "$LOCALFILES" = "no" ]; then
|
if [ "$LOCALFILES" = "no" ]; then
|
||||||
wget -O /usr/local/bin/omr-service ${VPSURL}${VPSPATH}/omr-service
|
wget -O /usr/local/bin/omr-service ${VPSURL}${VPSPATH}/omr-service
|
||||||
|
@ -1094,6 +1133,12 @@ if [ "$TLS" = "yes" ]; then
|
||||||
systemctl -q restart shorewall
|
systemctl -q restart shorewall
|
||||||
~/.acme.sh/acme.sh --force --alpn --issue -d $VPS_DOMAIN --pre-hook 'shorewall open all all tcp 443 2>&1 >/dev/null' --post-hook 'shorewall close all all tcp 443 2>&1 >/dev/null' 2>&1 >/dev/null
|
~/.acme.sh/acme.sh --force --alpn --issue -d $VPS_DOMAIN --pre-hook 'shorewall open all all tcp 443 2>&1 >/dev/null' --post-hook 'shorewall close all all tcp 443 2>&1 >/dev/null' 2>&1 >/dev/null
|
||||||
set -e
|
set -e
|
||||||
|
if [ -f /root/.acme.sh/$VPS_DOMAIN/$VPS_DOMAIN.cer ]; then
|
||||||
|
rm -f /etc/openmptcprouter-vps-admin/cert.pem
|
||||||
|
ln -s /root/.acme.sh/$VPS_DOMAIN/$VPS_DOMAIN.cer /etc/openmptcprouter-vps-admin/cert.pem
|
||||||
|
rm -f /etc/openmptcprouter-vps-admin/key.pem
|
||||||
|
ln -s /root/.acme.sh/$VPS_DOMAIN/$VPS_DOMAIN.key /etc/openmptcprouter-vps-admin/key.pem
|
||||||
|
fi
|
||||||
# mkdir -p /etc/ssl/v2ray
|
# mkdir -p /etc/ssl/v2ray
|
||||||
# ln -f -s /root/.acme.sh/$reverse/$reverse.key /etc/ssl/v2ray/omr.key
|
# ln -f -s /root/.acme.sh/$reverse/$reverse.key /etc/ssl/v2ray/omr.key
|
||||||
# ln -f -s /root/.acme.sh/$reverse/fullchain.cer /etc/ssl/v2ray/omr.cer
|
# ln -f -s /root/.acme.sh/$reverse/fullchain.cer /etc/ssl/v2ray/omr.cer
|
||||||
|
@ -1227,6 +1272,7 @@ if [ "$update" = "0" ]; then
|
||||||
Your OpenMPTCProuter Server username: openmptcprouter
|
Your OpenMPTCProuter Server username: openmptcprouter
|
||||||
EOF
|
EOF
|
||||||
fi
|
fi
|
||||||
|
systemctl -q restart sshd
|
||||||
else
|
else
|
||||||
echo '===================================================================================='
|
echo '===================================================================================='
|
||||||
echo "OpenMPTCProuter Server is now updated to version $OMR_VERSION !"
|
echo "OpenMPTCProuter Server is now updated to version $OMR_VERSION !"
|
||||||
|
@ -1276,6 +1322,11 @@ else
|
||||||
systemctl -q restart openvpn@tun1
|
systemctl -q restart openvpn@tun1
|
||||||
echo 'done'
|
echo 'done'
|
||||||
fi
|
fi
|
||||||
|
if [ "$WIREGUARD" = "yes" ]; then
|
||||||
|
echo 'Restarting WireGuard'
|
||||||
|
systemctl -q restart wg-quick@wg0
|
||||||
|
echo 'done'
|
||||||
|
fi
|
||||||
if [ "$OMR_ADMIN" = "yes" ]; then
|
if [ "$OMR_ADMIN" = "yes" ]; then
|
||||||
echo 'Restarting OpenMPTCProuter VPS admin'
|
echo 'Restarting OpenMPTCProuter VPS admin'
|
||||||
systemctl -q restart omr-admin
|
systemctl -q restart omr-admin
|
||||||
|
@ -1293,16 +1344,14 @@ else
|
||||||
echo 'openmptcprouter'
|
echo 'openmptcprouter'
|
||||||
echo '!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!'
|
echo '!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!'
|
||||||
echo '===================================================================================='
|
echo '===================================================================================='
|
||||||
|
else
|
||||||
|
echo '!!! Keys are in /root/openmptcprouter_config.txt !!!'
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
if [ "$VPS_CERT" = "0" ]; then
|
if [ "$VPS_CERT" = "0" ]; then
|
||||||
echo 'No working domain detected, not able to generate certificate for v2ray.'
|
echo 'No working domain detected, not able to generate certificate for v2ray.'
|
||||||
echo 'You can set VPS_DOMAIN to a working domain if you want a certificate.'
|
echo 'You can set VPS_DOMAIN to a working domain if you want a certificate.'
|
||||||
fi
|
fi
|
||||||
echo 'Restarting shorewall...'
|
|
||||||
systemctl -q restart shorewall
|
|
||||||
systemctl -q restart shorewall6
|
|
||||||
echo 'done'
|
|
||||||
echo 'Apply latest sysctl...'
|
echo 'Apply latest sysctl...'
|
||||||
sysctl -p /etc/sysctl.d/90-shadowsocks.conf > /dev/null 2>&1
|
sysctl -p /etc/sysctl.d/90-shadowsocks.conf > /dev/null 2>&1
|
||||||
echo 'done'
|
echo 'done'
|
||||||
|
@ -1317,4 +1366,11 @@ else
|
||||||
# done
|
# done
|
||||||
# fi
|
# fi
|
||||||
echo 'done'
|
echo 'done'
|
||||||
|
echo 'Restarting shorewall...'
|
||||||
|
systemctl -q restart shorewall
|
||||||
|
systemctl -q restart shorewall6
|
||||||
|
echo 'done'
|
||||||
|
echo '===================================================================================='
|
||||||
|
echo '\033[1m /!\ You need to reboot to use latest MPTCP kernel /!\ \033[0m'
|
||||||
|
echo '===================================================================================='
|
||||||
fi
|
fi
|
||||||
|
|
|
@ -12,7 +12,7 @@ fi
|
||||||
exec dsvpn \
|
exec dsvpn \
|
||||||
${MODE} \
|
${MODE} \
|
||||||
"$1".key \
|
"$1".key \
|
||||||
auto \
|
${HOST:-auto} \
|
||||||
${PORT} \
|
${PORT} \
|
||||||
${DEV} \
|
${DEV} \
|
||||||
${LOCALTUNIP} \
|
${LOCALTUNIP} \
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
PORT=65401
|
PORT=65401
|
||||||
|
HOST=0.0.0.0
|
||||||
DEV=dsvpn0
|
DEV=dsvpn0
|
||||||
MODE=server
|
MODE=server
|
||||||
LOCALTUNIP=10.255.251.1
|
LOCALTUNIP=10.255.251.1
|
||||||
|
|
|
@ -9,7 +9,7 @@ fi
|
||||||
|
|
||||||
. "$(readlink -f "$1")"
|
. "$(readlink -f "$1")"
|
||||||
|
|
||||||
DEV="gt${HOST:+c}-$(basename "$1")"
|
DEV="gt-$(basename "$1")"
|
||||||
|
|
||||||
exec glorytun-tcp \
|
exec glorytun-tcp \
|
||||||
${SERVER:+listener} \
|
${SERVER:+listener} \
|
||||||
|
|
|
@ -9,11 +9,10 @@ fi
|
||||||
|
|
||||||
. "$(readlink -f "$1")"
|
. "$(readlink -f "$1")"
|
||||||
|
|
||||||
DEV="gt${HOST:+c}-udp-$(basename "$1")"
|
DEV="gt-udp-$(basename "$1")"
|
||||||
|
|
||||||
exec glorytun \
|
exec glorytun \
|
||||||
bind from addr $BIND port $BIND_PORT \
|
bind to addr ${HOST:-::} port ${PORT:-5000} from addr $BIND port $BIND_PORT \
|
||||||
keyfile "$1".key \
|
keyfile "$1".key \
|
||||||
${DEV:+dev "$DEV"} \
|
${DEV:+dev "$DEV"} \
|
||||||
${HOST:+to addr "$HOST" port "$PORT"} \
|
|
||||||
${OPTIONS:+$OPTIONS}
|
${OPTIONS:+$OPTIONS}
|
||||||
|
|
|
@ -6,7 +6,7 @@ After=network.target network-online.target
|
||||||
Type=simple
|
Type=simple
|
||||||
Restart=always
|
Restart=always
|
||||||
ExecStart=/usr/local/bin/omr-admin.py
|
ExecStart=/usr/local/bin/omr-admin.py
|
||||||
CapabilityBoundingSet=CAP_NET_ADMIN CAP_NET_RAW
|
CapabilityBoundingSet=CAP_NET_ADMIN CAP_NET_RAW CAP_SYS_ADMIN CAP_IPC_LOCK CAP_SETGID CAP_SETUID CAP_SYS_CHROOT CAP_DAC_OVERRIDE CAP_FOWNER CAP_SETFCAP
|
||||||
|
|
||||||
[Install]
|
[Install]
|
||||||
WantedBy=multi-user.target
|
WantedBy=multi-user.target
|
||||||
|
|
29
omr-service
29
omr-service
|
@ -30,7 +30,10 @@ _glorytun_tcp() {
|
||||||
[ "$(echo $intf | grep key)" = "" ] && /etc/glorytun-tcp/post.sh ${intf}
|
[ "$(echo $intf | grep key)" = "" ] && /etc/glorytun-tcp/post.sh ${intf}
|
||||||
done
|
done
|
||||||
if [ -f /etc/openmptcprouter-vps-admin/current-vpn ] && [ "$(cat /etc/openmptcprouter-vps-admin/current-vpn)" = "glorytun_tcp" ]; then
|
if [ -f /etc/openmptcprouter-vps-admin/current-vpn ] && [ "$(cat /etc/openmptcprouter-vps-admin/current-vpn)" = "glorytun_tcp" ]; then
|
||||||
if [ "$(ping -c 5 -w 5 10.255.255.2 | grep '100%')" != "" ] && [ "$(expr $(date +%s) - $(stat -c %Y /proc/$(pgrep glorytun-tcp)/exe ))" -gt "300" ]; then
|
localip="$(cat /etc/glorytun-tcp/tun0 | grep LOCALIP | cut -d '=' -f2)"
|
||||||
|
[ -z "$localip" ] && localip="10.255.255.1"
|
||||||
|
remoteip="$(echo $localip | sed 's/\.1/\.2/')"
|
||||||
|
if [ "$(ping -c 5 -w 5 $remoteip | grep '100%')" != "" ] && [ "$(expr $(date +%s) - $(stat -c %Y /proc/$(pgrep glorytun-tcp)/exe ))" -gt "300" ]; then
|
||||||
logger -t "OMR-Service" "No answer from VPN client end, restart Glorytun-TCP"
|
logger -t "OMR-Service" "No answer from VPN client end, restart Glorytun-TCP"
|
||||||
systemctl restart glorytun-tcp@tun0
|
systemctl restart glorytun-tcp@tun0
|
||||||
fi
|
fi
|
||||||
|
@ -66,9 +69,9 @@ _gre_tunnels() {
|
||||||
iface="$(basename $intf)"
|
iface="$(basename $intf)"
|
||||||
if [ "$(ip tunnel show $iface 2>/dev/null | awk '{print $4}')" != "$OMR_ADDR" ]; then
|
if [ "$(ip tunnel show $iface 2>/dev/null | awk '{print $4}')" != "$OMR_ADDR" ]; then
|
||||||
ip tunnel del $iface 2>&1 >/dev/null
|
ip tunnel del $iface 2>&1 >/dev/null
|
||||||
ip tunnel add $iface mode gre local $INTFADDR remote $OMR_ADDR
|
ip tunnel add $iface mode gre local $INTFADDR remote $OMR_ADDR 2>&1 >/dev/null
|
||||||
ip link set $iface up
|
ip link set $iface up 2>&1 >/dev/null
|
||||||
ip addr add $LOCALIP dev $iface
|
ip addr add $LOCALIP dev $iface 2>&1 >/dev/null
|
||||||
ip route add $NETWORK dev $iface 2>&1 >/dev/null
|
ip route add $NETWORK dev $iface 2>&1 >/dev/null
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
@ -77,23 +80,23 @@ _gre_tunnels() {
|
||||||
|
|
||||||
_openvpn_bonding() {
|
_openvpn_bonding() {
|
||||||
if [ "$(ip link show ovpnbonding1)" != "" ] && ([ "$(ip link show ovpnbonding1 | grep SLAVE)" = "" ] || [ "$(ip link show omr-bonding | grep DOWN)" != "" ] || [ "$(ip link show | grep ovpnbonding | grep -c SLAVE | tr -d '\n')" != "8" ]); then
|
if [ "$(ip link show ovpnbonding1)" != "" ] && ([ "$(ip link show ovpnbonding1 | grep SLAVE)" = "" ] || [ "$(ip link show omr-bonding | grep DOWN)" != "" ] || [ "$(ip link show | grep ovpnbonding | grep -c SLAVE | tr -d '\n')" != "8" ]); then
|
||||||
echo 0 > /sys/class/net/omr-bonding/bonding/mode
|
echo 0 > /sys/class/net/omr-bonding/bonding/mode 2>&1 >/dev/null
|
||||||
ip link set ovpnbonding1 master omr-bonding 2>&1 >/dev/null
|
ip link set ovpnbonding1 master omr-bonding 2>&1 >/dev/null
|
||||||
ip link set ovpnbonding1 up
|
ip link set ovpnbonding1 up 2>&1 >/dev/null
|
||||||
ip link set ovpnbonding2 master omr-bonding 2>&1 >/dev/null
|
ip link set ovpnbonding2 master omr-bonding 2>&1 >/dev/null
|
||||||
ip link set ovpnbonding2 up
|
ip link set ovpnbonding2 up 2>&1 >/dev/null
|
||||||
ip link set ovpnbonding3 master omr-bonding 2>&1 >/dev/null
|
ip link set ovpnbonding3 master omr-bonding 2>&1 >/dev/null
|
||||||
ip link set ovpnbonding3 up
|
ip link set ovpnbonding3 up 2>&1 >/dev/null
|
||||||
ip link set ovpnbonding4 master omr-bonding 2>&1 >/dev/null
|
ip link set ovpnbonding4 master omr-bonding 2>&1 >/dev/null
|
||||||
ip link set ovpnbonding4 up
|
ip link set ovpnbonding4 up 2>&1 >/dev/null
|
||||||
ip link set ovpnbonding5 master omr-bonding 2>&1 >/dev/null
|
ip link set ovpnbonding5 master omr-bonding 2>&1 >/dev/null
|
||||||
ip link set ovpnbonding5 up
|
ip link set ovpnbonding5 up 2>&1 >/dev/null
|
||||||
ip link set ovpnbonding6 master omr-bonding 2>&1 >/dev/null
|
ip link set ovpnbonding6 master omr-bonding 2>&1 >/dev/null
|
||||||
ip link set ovpnbonding6 up
|
ip link set ovpnbonding6 up 2>&1 >/dev/null
|
||||||
ip link set ovpnbonding7 master omr-bonding 2>&1 >/dev/null
|
ip link set ovpnbonding7 master omr-bonding 2>&1 >/dev/null
|
||||||
ip link set ovpnbonding7 up
|
ip link set ovpnbonding7 up 2>&1 >/dev/null
|
||||||
ip link set ovpnbonding8 master omr-bonding 2>&1 >/dev/null
|
ip link set ovpnbonding8 master omr-bonding 2>&1 >/dev/null
|
||||||
ip link set ovpnbonding8 up
|
ip link set ovpnbonding8 up 2>&1 >/dev/null
|
||||||
ip link set omr-bonding up mtu 1440 2>&1 >/dev/null
|
ip link set omr-bonding up mtu 1440 2>&1 >/dev/null
|
||||||
ip a add 10.255.248.1 dev omr-bonding 2>&1 >/dev/null
|
ip a add 10.255.248.1 dev omr-bonding 2>&1 >/dev/null
|
||||||
ip r add 10.255.248.0/24 dev omr-bonding 2>&1 >/dev/null
|
ip r add 10.255.248.0/24 dev omr-bonding 2>&1 >/dev/null
|
||||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -17,8 +17,8 @@ vpn net ACCEPT
|
||||||
vpn fw ACCEPT
|
vpn fw ACCEPT
|
||||||
fw vpn ACCEPT
|
fw vpn ACCEPT
|
||||||
fw net ACCEPT
|
fw net ACCEPT
|
||||||
net all DROP info
|
net all DROP
|
||||||
vpn vpn DROP
|
vpn vpn DROP
|
||||||
# THE FOLLOWING POLICY MUST BE LAST
|
# THE FOLLOWING POLICY MUST BE LAST
|
||||||
all all REJECT info
|
all all REJECT
|
||||||
|
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
|
|
||||||
vpn all ACCEPT
|
vpn all ACCEPT
|
||||||
fw all ACCEPT
|
fw all ACCEPT
|
||||||
net all DROP info
|
net all DROP
|
||||||
# THE FOLLOWING POLICY MUST BE LAST
|
# THE FOLLOWING POLICY MUST BE LAST
|
||||||
all all REJECT info
|
all all REJECT
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
PORT=65001
|
PORT=65001
|
||||||
|
HOST=0.0.0.0
|
||||||
DEV=tun0
|
DEV=tun0
|
||||||
SERVER=true
|
SERVER=true
|
||||||
MPTCP=true
|
MPTCP=true
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
BIND=0.0.0.0
|
BIND=0.0.0.0
|
||||||
BIND_PORT=65001
|
BIND_PORT=65001
|
||||||
|
HOST=0.0.0.0
|
||||||
|
PORT=5000
|
||||||
DEV=tun0
|
DEV=tun0
|
||||||
OPTIONS="chacha persist"
|
OPTIONS="chacha persist"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"log": {
|
"log": {
|
||||||
"loglevel": "debug",
|
"loglevel": "warning",
|
||||||
"error": "/tmp/v2rayError.log"
|
"error": "/tmp/v2rayError.log"
|
||||||
},
|
},
|
||||||
"transport": {
|
"transport": {
|
||||||
|
|
Loading…
Reference in a new issue