2006-07-30 06:09:09 +03:00
|
|
|
scan_pppoe() {
|
|
|
|
scan_ppp "$@"
|
|
|
|
}
|
|
|
|
|
|
|
|
setup_interface_pppoe() {
|
|
|
|
local iface="$1"
|
|
|
|
local config="$2"
|
|
|
|
|
|
|
|
config_get device "$config" device
|
|
|
|
|
|
|
|
for module in slhc ppp_generic pppox pppoe; do
|
|
|
|
/sbin/insmod $module 2>&- >&-
|
|
|
|
done
|
|
|
|
|
2007-08-30 19:53:22 +03:00
|
|
|
# make sure the network state references the correct ifname
|
|
|
|
scan_ppp "$config"
|
|
|
|
config_get ifname "$config" ifname
|
|
|
|
uci set "/var/state/network.$config.ifname=$ifname"
|
|
|
|
|
2006-07-30 06:09:09 +03:00
|
|
|
config_get mtu "$cfg" mtu
|
2007-03-14 21:00:10 +02:00
|
|
|
mtu=${mtu:-1492}
|
2006-07-30 06:09:09 +03:00
|
|
|
start_pppd "$config" \
|
|
|
|
plugin rp-pppoe.so \
|
|
|
|
mtu $mtu mru $mtu \
|
|
|
|
"nic-$device"
|
|
|
|
}
|