1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-11-10 17:24:05 +02:00

remove persist in pppoe script until reconnect works reliably in pppd

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@685 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd 2005-04-19 12:36:52 +00:00
parent 34cdab1974
commit b28cd70077

View File

@ -22,7 +22,7 @@ done
MTU=${MTU:+ mtu $MTU mru $MTU}
ifconfig $IFNAME up
echo -e "plugin rp-pppoe.so\npersist\nconnect /bin/true\nusepeerdns\ndefaultroute\nuser \"$USERNAME\"\npassword \"$PASSWORD\"\n$MTU\n$IDLETIME\n$REDIAL" > /tmp/.pppoe-data
echo -e "plugin rp-pppoe.so\nconnect /bin/true\nusepeerdns\ndefaultroute\nuser \"$USERNAME\"\npassword \"$PASSWORD\"\n$MTU\n$IDLETIME\n$REDIAL" > /tmp/.pppoe-data
/usr/sbin/pppd nodetach file /tmp/.pppoe-data $IFNAME
done
) &