diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2011-10-04 23:37:53 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2011-10-04 23:37:53 +0000 |
commit | 64f4a89e7c4f3e0ad20eec5c6ca96746438d342c (patch) | |
tree | cdb05707a5d982801817b57d1535bcd297419d0b | |
parent | 5659ec69182f34d66f59df41a55b4f6415a1e07d (diff) | |
download | upstream-64f4a89e7c4f3e0ad20eec5c6ca96746438d342c.tar.gz upstream-64f4a89e7c4f3e0ad20eec5c6ca96746438d342c.tar.bz2 upstream-64f4a89e7c4f3e0ad20eec5c6ca96746438d342c.zip |
ppp: implement pppoe specific uci options "ac" and "service" which map to "rp_pppoe_ac" and "rp_pppoe_service"
SVN-Revision: 28366
-rw-r--r-- | package/ppp/files/pppoe.sh | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/package/ppp/files/pppoe.sh b/package/ppp/files/pppoe.sh index 99409f3f08..cd6f1db5c8 100644 --- a/package/ppp/files/pppoe.sh +++ b/package/ppp/files/pppoe.sh @@ -5,15 +5,26 @@ stop_interface_pppoe() { setup_interface_pppoe() { local iface="$1" local config="$2" - + for module in slhc ppp_generic pppox pppoe; do /sbin/insmod $module 2>&- >&- done - config_get mtu "$config" mtu - mtu=${mtu:-1492} + local mtu + config_get mtu "$config" mtu 1492 + + local ac + config_get ac "$config" ac + + local service + config_get service "$config" service + + # NB: the first nic-* argument will be moved to the + # end of the argument list by start_pppd() start_pppd "$config" \ "nic-$iface" \ + ${ac:+rp_pppoe_ac "$ac"} \ + ${service:+rp_pppoe_service "$service"} \ plugin rp-pppoe.so \ mtu $mtu mru $mtu } |