1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-15 16:39:42 +03:00
openwrt-xburst/package/ppp/files/ifup.pppoe
nbd 0bb68e81ec add hotplug stuff to trunk/
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2364 3c298f89-4303-0410-b956-a3cf2f4a3e73
2005-11-07 01:12:51 +00:00

46 lines
1.0 KiB
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
while :; do
IFNAME=$(nvram get pppoe_ifname)
USERNAME=$(nvram get ppp_username)
PASSWORD=$(nvram get ppp_passwd)
REDIAL=$(nvram get ppp_redialperiod)
REDIAL=${REDIAL:+lcp-echo-interval $REDIAL}
IDLETIME=$(nvram get ppp_idletime)
IDLETIME=${IDLETIME:+lcp-echo-failure $IDLETIME}
MTU=$(nvram get ppp_mtu)
MTU=${MTU:-1492}
ifconfig $IFNAME up
/usr/sbin/pppd nodetach \
plugin rp-pppoe.so \
connect /bin/true \
usepeerdns \
defaultroute \
linkname $type \
ipparam $type \
user "$USERNAME" \
password "$PASSWORD" \
mtu $MTU mru $MTU \
$IDLETIME \
$REDIAL \
nic-$IFNAME
# Read settings again (might have changed)
[ -e /etc/config/network ] && . /etc/config/network
done &