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
# 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"
+ set_interface_ifname "$config" "$ifname"
config_get mtu "$cfg" mtu
mtu=${mtu:-1492}
start_pppd "$config" \
plugin rp-pppoe.so \
mtu $mtu mru $mtu \
- "nic-$device"
+ "nic-$iface"
}