mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-02 23:27:30 +02:00
c343b9656f
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@3826 3c298f89-4303-0410-b956-a3cf2f4a3e73
44 lines
917 B
Bash
44 lines
917 B
Bash
#!/bin/sh
|
|
[ $# = 0 ] && { echo " $0 <group>"; exit; }
|
|
. /etc/config/network
|
|
type=$1
|
|
|
|
eval "proto=\"\${${type}_proto}\""
|
|
[ "$proto" = "pppoe" ] || {
|
|
echo "$0: ${type}_proto isn't pppoe"
|
|
exit
|
|
}
|
|
|
|
mkdir -p /var/lock
|
|
|
|
for module in slhc ppp_generic pppox pppoe; do
|
|
/sbin/insmod $module 2>&- >&-
|
|
done
|
|
|
|
eval "IFNAME=\"\${${type}_device}\""
|
|
KEEPALIVE=${ppp_redialperiod:+lcp-echo-interval $ppp_redialperiod lcp-echo-failure 5}
|
|
case "$ppp_demand" in
|
|
on|1|enabled)
|
|
DEMAND=${ppp_idletime:+demand idle $ppp_idletime}
|
|
[ -f /etc/ppp/filter ] && DEMAND=${DEMAND:+precompiled-active-filter /etc/ppp/filter $DEMAND}
|
|
;;
|
|
*) DEMAND="persist";;
|
|
esac
|
|
MTU=${ppp_mtu:-1492}
|
|
|
|
ifconfig $IFNAME up
|
|
/usr/sbin/pppd \
|
|
plugin rp-pppoe.so \
|
|
connect /bin/true \
|
|
usepeerdns \
|
|
defaultroute \
|
|
linkname $type \
|
|
ipparam $type \
|
|
user "$ppp_username" \
|
|
password "$ppp_passwd" \
|
|
mtu $MTU mru $MTU \
|
|
$DEMAND \
|
|
$KEEPALIVE \
|
|
nic-$IFNAME
|
|
|