clean up mtu handling in ppp init scripts
[openwrt.git] / openwrt / package / ppp / files / ifup.pppoa
index dc08aa5..fc2e82e 100644 (file)
@@ -10,7 +10,7 @@ type=$1
        exit
 }
 
-for module in slhc ppp_generic pppox pppoatm; do
+for module in slhc ppp_generic pppoatm; do
        /sbin/insmod $module 2>&- >&-
 done
 
@@ -24,10 +24,8 @@ while :; do
   IDLETIME=$(nvram get ppp_idletime)
   IDLETIME=${IDLETIME:+lcp-echo-failure $IDLETIME}
   MTU=$(nvram get ppp_mtu)
-  MTU=${MTU:-1492}
-  MTU=${MTU:+ mtu $MTU mru $MTU}
+  MTU=${MTU:-1500}
 
-  ifconfig $IFNAME up
   /usr/sbin/pppd nodetach \
        plugin pppoatm.so ${VPI:-8}.${VCI:-35} \
        usepeerdns \
@@ -35,7 +33,7 @@ while :; do
        linkname $type \
        user "$USERNAME" \
        password "$PASSWORD" \
-       $MTU \
+       mtu $MTU mru $MTU
        $IDLETIME \
        $REDIAL
   
This page took 0.025538 seconds and 4 git commands to generate.