Change mtu value for pppoa and pppoe (#945)

SVN-Revision: 6566
lede-17.01
Florian Fainelli 2007-03-14 19:00:10 +00:00
parent 80840457a5
commit a6481bb35b
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 \