Change mtu value for pppoa and pppoe (#945)

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6566 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
Florian Fainelli
2007-03-14 19:00:10 +00:00
parent 812529c2fa
commit 70a1d9498c
2 changed files with 2 additions and 2 deletions

View File

@@ -15,7 +15,7 @@ setup_interface_pppoa() {
done
config_get mtu "$cfg" mtu
mtu=${mtu:-1492}
mtu=${mtu:-1500}
start_pppd "$config" \
plugin pppoatm.so ${vpi:-8}.${vci:-35} \
mtu $mtu mru $mtu

View File

@@ -13,7 +13,7 @@ setup_interface_pppoe() {
done
config_get mtu "$cfg" mtu
mtu=${mtu:-1480}
mtu=${mtu:-1492}
start_pppd "$config" \
plugin rp-pppoe.so \
mtu $mtu mru $mtu \