diff options
author | Felix Fietkau <nbd@openwrt.org> | 2006-10-30 23:58:01 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2006-10-30 23:58:01 +0000 |
commit | ab9a7a900e1af3d0ed7777f792c3ce9c159bba1c (patch) | |
tree | 1ef5afc9cba65b8ae76176d26114e64c0ed17a10 /package/ppp/files/pppoa.sh | |
parent | 2fa277537e12008a2c93b9e05111031d5e9b22cc (diff) | |
download | upstream-ab9a7a900e1af3d0ed7777f792c3ce9c159bba1c.tar.gz upstream-ab9a7a900e1af3d0ed7777f792c3ce9c159bba1c.tar.bz2 upstream-ab9a7a900e1af3d0ed7777f792c3ce9c159bba1c.zip |
fix vpi/vci setting for pppoa
SVN-Revision: 5351
Diffstat (limited to 'package/ppp/files/pppoa.sh')
-rw-r--r-- | package/ppp/files/pppoa.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/package/ppp/files/pppoa.sh b/package/ppp/files/pppoa.sh index e6530b073e..28e237b85f 100644 --- a/package/ppp/files/pppoa.sh +++ b/package/ppp/files/pppoa.sh @@ -7,6 +7,8 @@ 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>&- >&- @@ -15,6 +17,6 @@ setup_interface_pppoa() { config_get mtu "$cfg" mtu mtu=${mtu:-1492} start_pppd "$config" \ - plugin pppoatm.so ${atm_vpi:-8}.${atm_vci:-35} \ + plugin pppoatm.so ${vpi:-8}.${vci:-35} \ mtu $mtu mru $mtu } |