mirror of
https://github.com/Ysurac/openmptcprouter-feeds.git
synced 2025-02-13 19:11:51 +00:00
35 lines
1,021 B
Bash
35 lines
1,021 B
Bash
#!/bin/sh
|
|
#
|
|
# Load the glorytun config
|
|
#
|
|
# Author: Ycarus (Yannick Chabanois) <ycarus@zugaina.org>
|
|
# Released under GPL 3 or later
|
|
|
|
[ "$ACTION" = ifup -o "$ACTION" = ifupdate ] || exit 0
|
|
|
|
. /lib/functions.sh
|
|
. /lib/functions/network.sh
|
|
|
|
set_default() {
|
|
local localip
|
|
local remoteip
|
|
local config="$1"
|
|
local iface
|
|
config_get enable "$config" enable
|
|
config_get iface "$config" dev
|
|
[ "$iface" = "$DEVICE" ] && [ "$enable" = "1" ] && {
|
|
config_get localip "$config" localip
|
|
config_get remoteip "$config" remoteip
|
|
config_get kxtimeout "$config" kxtimeout "7d"
|
|
config_get timetolerance "$config" timetolerance "10m"
|
|
config_get keepalive "$config" keepalive "25s"
|
|
[ "$remoteip" != "" ] && [ "$localip" != "" ] && ifconfig $DEVICE $localip pointopoint $remoteip up
|
|
while [ -z "$(glorytun-udp list | grep $iface)" ]; do
|
|
sleep 1
|
|
done
|
|
glorytun-udp set dev $iface kxtimeout $kxtimeout timetolerance $timetolerance keepalive $keepalive
|
|
}
|
|
}
|
|
|
|
config_load glorytun-udp
|
|
config_foreach set_default glorytun-udp
|