X-Git-Url: http://git.ozo.com/?a=blobdiff_plain;ds=sidebyside;f=package%2Fppp%2Ffiles%2Fpppoa.sh;h=8c66250da5c9aa8d2dd038c013ff1800fa3eaf44;hb=6630372cc899d243b22de133f2aeec28c3fd5239;hp=e6530b073ef0f5731a63f2afb1e3e464c18a0496;hpb=c4f3575368c5aeef4134d82125df2814d688cc2a;p=openwrt-10.03%2F.git diff --git a/package/ppp/files/pppoa.sh b/package/ppp/files/pppoa.sh index e6530b073..8c66250da 100644 --- a/package/ppp/files/pppoa.sh +++ b/package/ppp/files/pppoa.sh @@ -7,14 +7,22 @@ setup_interface_pppoa() { local config="$2" config_get device "$config" device + config_get vpi "$config" vpi + config_get vci "$config" vci for module in slhc ppp_generic pppoatm; do /sbin/insmod $module 2>&- >&- done + + config_get encaps "$config" encaps + case "$encaps" in + 1|vc) ENCAPS="vc-encaps" ;; + *) ENCAPS="llc-encaps" ;; + esac config_get mtu "$cfg" mtu - mtu=${mtu:-1492} + mtu=${mtu:-1500} start_pppd "$config" \ - plugin pppoatm.so ${atm_vpi:-8}.${atm_vci:-35} \ + plugin pppoatm.so ${vpi:-8}.${vci:-35} ${ENCAPS} \ mtu $mtu mru $mtu }