clean up mtu handling in ppp init scripts
SVN-Revision: 2181
This commit is contained in:
parent
d78910fbec
commit
93d8e3112b
2 changed files with 2 additions and 4 deletions
|
@ -25,7 +25,6 @@ while :; do
|
||||||
IDLETIME=${IDLETIME:+lcp-echo-failure $IDLETIME}
|
IDLETIME=${IDLETIME:+lcp-echo-failure $IDLETIME}
|
||||||
MTU=$(nvram get ppp_mtu)
|
MTU=$(nvram get ppp_mtu)
|
||||||
MTU=${MTU:-1500}
|
MTU=${MTU:-1500}
|
||||||
MTU=${MTU:+ mtu $MTU mru $MTU}
|
|
||||||
|
|
||||||
/usr/sbin/pppd nodetach \
|
/usr/sbin/pppd nodetach \
|
||||||
plugin pppoatm.so ${VPI:-8}.${VCI:-35} \
|
plugin pppoatm.so ${VPI:-8}.${VCI:-35} \
|
||||||
|
@ -34,7 +33,7 @@ while :; do
|
||||||
linkname $type \
|
linkname $type \
|
||||||
user "$USERNAME" \
|
user "$USERNAME" \
|
||||||
password "$PASSWORD" \
|
password "$PASSWORD" \
|
||||||
$MTU \
|
mtu $MTU mru $MTU
|
||||||
$IDLETIME \
|
$IDLETIME \
|
||||||
$REDIAL
|
$REDIAL
|
||||||
|
|
||||||
|
|
|
@ -24,7 +24,6 @@ while :; do
|
||||||
IDLETIME=${IDLETIME:+lcp-echo-failure $IDLETIME}
|
IDLETIME=${IDLETIME:+lcp-echo-failure $IDLETIME}
|
||||||
MTU=$(nvram get ppp_mtu)
|
MTU=$(nvram get ppp_mtu)
|
||||||
MTU=${MTU:-1492}
|
MTU=${MTU:-1492}
|
||||||
MTU=${MTU:+ mtu $MTU mru $MTU}
|
|
||||||
|
|
||||||
ifconfig $IFNAME up
|
ifconfig $IFNAME up
|
||||||
/usr/sbin/pppd nodetach \
|
/usr/sbin/pppd nodetach \
|
||||||
|
@ -35,7 +34,7 @@ while :; do
|
||||||
linkname $type \
|
linkname $type \
|
||||||
user "$USERNAME" \
|
user "$USERNAME" \
|
||||||
password "$PASSWORD" \
|
password "$PASSWORD" \
|
||||||
$MTU \
|
mtu $MTU mru $MTU
|
||||||
$IDLETIME \
|
$IDLETIME \
|
||||||
$REDIAL \
|
$REDIAL \
|
||||||
nic-$IFNAME
|
nic-$IFNAME
|
||||||
|
|
Loading…
Reference in a new issue