summaryrefslogtreecommitdiffstats
path: root/package/ppp/files/pppoa.sh
diff options
context:
space:
mode:
Diffstat (limited to 'package/ppp/files/pppoa.sh')
-rw-r--r--package/ppp/files/pppoa.sh8
1 files changed, 7 insertions, 1 deletions
diff --git a/package/ppp/files/pppoa.sh b/package/ppp/files/pppoa.sh
index 9b8a919ac..8c66250da 100644
--- a/package/ppp/files/pppoa.sh
+++ b/package/ppp/files/pppoa.sh
@@ -13,10 +13,16 @@ setup_interface_pppoa() {
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:-1500}
start_pppd "$config" \
- plugin pppoatm.so ${vpi:-8}.${vci:-35} \
+ plugin pppoatm.so ${vpi:-8}.${vci:-35} ${ENCAPS} \
mtu $mtu mru $mtu
}