2010-05-01 17:54:37 +00:00
|
|
|
stop_interface_pppoe() {
|
|
|
|
stop_interface_ppp "$1"
|
2006-07-30 03:09:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
setup_interface_pppoe() {
|
|
|
|
local iface="$1"
|
|
|
|
local config="$2"
|
2011-10-04 23:37:53 +00:00
|
|
|
|
2006-07-30 03:09:09 +00:00
|
|
|
for module in slhc ppp_generic pppox pppoe; do
|
|
|
|
/sbin/insmod $module 2>&- >&-
|
|
|
|
done
|
|
|
|
|
2011-10-04 23:37:53 +00:00
|
|
|
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()
|
2006-07-30 03:09:09 +00:00
|
|
|
start_pppd "$config" \
|
2011-10-04 23:10:36 +00:00
|
|
|
"nic-$iface" \
|
2011-10-04 23:37:53 +00:00
|
|
|
${ac:+rp_pppoe_ac "$ac"} \
|
|
|
|
${service:+rp_pppoe_service "$service"} \
|
2006-07-30 03:09:09 +00:00
|
|
|
plugin rp-pppoe.so \
|
2011-10-04 23:10:36 +00:00
|
|
|
mtu $mtu mru $mtu
|
2006-07-30 03:09:09 +00:00
|
|
|
}
|