projects
/
openwrt
/
staging
/
rmilecki.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2fa2775
)
fix vpi/vci setting for pppoa
author
Felix Fietkau
<nbd@openwrt.org>
Mon, 30 Oct 2006 23:58:01 +0000
(23:58 +0000)
committer
Felix Fietkau
<nbd@openwrt.org>
Mon, 30 Oct 2006 23:58:01 +0000
(23:58 +0000)
SVN-Revision: 5351
package/ppp/files/pppoa.sh
patch
|
blob
|
history
diff --git
a/package/ppp/files/pppoa.sh
b/package/ppp/files/pppoa.sh
index e6530b073ef0f5731a63f2afb1e3e464c18a0496..28e237b85f82516cfa204cff899841c4a007e6a8 100644
(file)
--- 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
}