X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/0d67238dc68a0d410c484064e2eccb1808df94ac..04ad31e55867caab690b8337b4808ce15d95f0a4:/package/ppp/files/ppp.sh diff --git a/package/ppp/files/ppp.sh b/package/ppp/files/ppp.sh index 35572a0a0..0d0941fda 100644 --- a/package/ppp/files/ppp.sh +++ b/package/ppp/files/ppp.sh @@ -10,7 +10,7 @@ start_pppd() { # make sure only one pppd process is started lock "/var/lock/ppp-${cfg}" - local pid="$(cat /var/run/ppp-${cfg}.pid 2>/dev/null)" + local pid="$(head -n1 /var/run/ppp-${cfg}.pid 2>/dev/null)" [ -d "/proc/$pid" ] && grep pppd "/proc/$pid/cmdline" 2>/dev/null >/dev/null && { lock -u "/var/lock/ppp-${cfg}" return 0 @@ -21,20 +21,40 @@ start_pppd() { config_get username "$cfg" username config_get password "$cfg" password config_get keepalive "$cfg" keepalive - interval="${keepalive%%*[, ]}" + + config_get connect "$cfg" connect + config_get disconnect "$cfg" disconnect + + interval="${keepalive##*[, ]}" [ "$interval" != "$keepalive" ] || interval=5 config_get demand "$cfg" demand - [ -n "$demand" ] && echo "nameserver 1.1.1.1" > /tmp/resolv.conf + [ -n "$demand" ] && echo "nameserver 1.1.1.1" > /tmp/resolv.conf.auto /usr/sbin/pppd "$@" \ - ${keepalive:+lcp-echo-interval $interval lcp-echo-failure ${keepalive##[, ]*}} \ + ${keepalive:+lcp-echo-interval $interval lcp-echo-failure ${keepalive%%[, ]*}} \ ${demand:+precompiled-active-filter /etc/ppp/filter demand idle }${demand:-persist} \ usepeerdns \ defaultroute \ replacedefaultroute \ ${username:+user "$username" password "$password"} \ linkname "$cfg" \ - ipparam "$cfg" + ipparam "$cfg" \ + ${connect:+connect "$connect"} \ + ${disconnect:+disconnect "$disconnect"} lock -u "/var/lock/ppp-${cfg}" } + +setup_interface_ppp() { + local iface="$1" + local config="$2" + + config_get device "$config" device + + config_get mtu "$cfg" mtu + mtu=${mtu:-1492} + start_pppd "$config" \ + mtu $mtu mru $mtu \ + "$device" +} +