mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-12-26 19:16:46 +02:00
27ff368270
- 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 git-svn-id: svn://svn.openwrt.org/openwrt/trunk@23530 3c298f89-4303-0410-b956-a3cf2f4a3e73
40 lines
682 B
Bash
40 lines
682 B
Bash
coldplug_interface_pppoa() {
|
|
setup_interface_pppoa x "$1"
|
|
}
|
|
|
|
stop_interface_pppoa() {
|
|
stop_interface_ppp "$1"
|
|
}
|
|
|
|
setup_interface_pppoa() {
|
|
local config="$2"
|
|
|
|
local device
|
|
config_get device "$config" device
|
|
|
|
local vpi
|
|
config_get vpi "$config" vpi
|
|
|
|
local vci
|
|
config_get vci "$config" vci
|
|
|
|
for module in slhc ppp_generic pppoatm; do
|
|
/sbin/insmod $module 2>&- >&-
|
|
done
|
|
|
|
local encaps
|
|
config_get encaps "$config" encaps
|
|
|
|
case "$encaps" in
|
|
1|vc) encaps="vc-encaps" ;;
|
|
*) encaps="llc-encaps" ;;
|
|
esac
|
|
|
|
local mtu
|
|
config_get mtu "$config" mtu
|
|
|
|
start_pppd "$config" \
|
|
plugin pppoatm.so ${device:+$device.}${vpi:-8}.${vci:-35} \
|
|
${encaps} ${mtu:+mtu $mtu mru $mtu}
|
|
}
|