1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-18 00:57:08 +03:00
openwrt-xburst/package/ppp/files/ifup.pppoe
nbd 067a81eb2d pppo*: change lcp-echo-interval to 1s instead of 10s
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@3191 3c298f89-4303-0410-b956-a3cf2f4a3e73
2006-02-08 18:28:21 +00:00

48 lines
1022 B
Bash

#!/bin/sh
[ $# = 0 ] && { echo " $0 <group>"; exit; }
. /etc/functions.sh
. /etc/network.overrides
[ -e /etc/config/network ] && . /etc/config/network
type=$1
[ "$(nvram get ${type}_proto)" = "pppoe" ] || {
echo "$0: ${type}_proto isn't pppoe"
exit
}
for module in slhc ppp_generic pppox pppoe; do
/sbin/insmod $module 2>&- >&-
done
IFNAME=$(nvram get ${type}_device)
USERNAME=$(nvram get ppp_username)
PASSWORD=$(nvram get ppp_passwd)
KEEPALIVE=$(nvram get ppp_redialperiod)
KEEPALIVE=${KEEPALIVE:+lcp-echo-interval 1 lcp-echo-failure $KEEPALIVE}
DEMAND=$(nvram get ppp_demand)
case "$DEMAND" in
on|1|enabled)
DEMAND=$(nvram get ppp_idletime)
DEMAND=${IDLETIME:+demand idle $IDLETIME}
;;
*) DEMAND="persist";;
esac
MTU=$(nvram get ppp_mtu)
MTU=${MTU:-1492}
ifconfig $IFNAME up
/usr/sbin/pppd \
plugin rp-pppoe.so \
connect /bin/true \
usepeerdns \
defaultroute \
linkname $type \
ipparam $type \
user "$USERNAME" \
password "$PASSWORD" \
mtu $MTU mru $MTU \
$DEMAND \
$KEEPALIVE \
nic-$IFNAME