diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2010-10-19 06:42:37 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2010-10-19 06:42:37 +0000 |
commit | 6029e1b618943f601ffa73af95ea37a2875c1006 (patch) | |
tree | 6600f603bb1cfdfd84183b4bf2b4b872e9e8b2b1 /package/ppp/files | |
parent | 64f992524559dae48b46cc102fb0f5955e238305 (diff) | |
download | mtk-20170518-6029e1b618943f601ffa73af95ea37a2875c1006.zip mtk-20170518-6029e1b618943f601ffa73af95ea37a2875c1006.tar.gz mtk-20170518-6029e1b618943f601ffa73af95ea37a2875c1006.tar.bz2 |
ppp: - implement coldplugging for pppoa interfaces - honour device option to select the DSL adapter - don't set any default mtu, rely on pppd to negotiate it - bump pkg revision
SVN-Revision: 23530
Diffstat (limited to 'package/ppp/files')
-rw-r--r-- | package/ppp/files/pppoa.sh | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/package/ppp/files/pppoa.sh b/package/ppp/files/pppoa.sh index adbcdf9..59e35c2 100644 --- a/package/ppp/files/pppoa.sh +++ b/package/ppp/files/pppoa.sh @@ -1,9 +1,12 @@ +coldplug_interface_pppoa() { + setup_interface_pppoa x "$1" +} + stop_interface_pppoa() { stop_interface_ppp "$1" } setup_interface_pppoa() { - local iface="$1" local config="$2" local device @@ -29,9 +32,8 @@ setup_interface_pppoa() { local mtu config_get mtu "$config" mtu - mtu=${mtu:-1500} start_pppd "$config" \ - plugin pppoatm.so ${vpi:-8}.${vci:-35} ${encaps} \ - mtu $mtu mru $mtu + plugin pppoatm.so ${device:+$device.}${vpi:-8}.${vci:-35} \ + ${encaps} ${mtu:+mtu $mtu mru $mtu} } |