fix ifname in network state for pppoe and pptp, add a workaround for isps sending...
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Thu, 30 Aug 2007 16:53:22 +0000 (16:53 +0000)
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Thu, 30 Aug 2007 16:53:22 +0000 (16:53 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8552 3c298f89-4303-0410-b956-a3cf2f4a3e73

package/ppp/files/pppoe.sh
package/pptp/files/pptp.sh

index 86bddddf59d33bfa119a842c0c349ec6b345c3cc..ba6a8768daec33884591fe964c41c216ea9460c5 100644 (file)
@@ -12,6 +12,11 @@ setup_interface_pppoe() {
                /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"
+
        config_get mtu "$cfg" mtu
        mtu=${mtu:-1492}
        start_pppd "$config" \
index 4d03af0085e8aa49b5b7028fde9325b8c6bf8aae..f1c46c9a39cf9c2f06ff2693e920acef7b9ac936 100644 (file)
@@ -3,8 +3,8 @@ scan_pptp() {
 }
 
 setup_interface_pptp() {
-       local iface="$1"
        local config="$2"
+       local ifname
        
        config_get device "$config" device
        config_get ipproto "$config" ipproto
@@ -12,7 +12,18 @@ setup_interface_pptp() {
        for module in slhc ppp_generic ppp_async ip_gre; do
                /sbin/insmod $module 2>&- >&-
        done
-       setup_interface "$iface" "$config" "${ipproto:-dhcp}"
+       sleep 1
+
+       setup_interface "$device" "$config" "${ipproto:-dhcp}"
+
+       # fix up the netmask
+       config_get netmask "$config" netmask
+       [ -z "$netmask" -o -z "$device" ] || ifconfig $device netmask $netmask
+
+       # 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"
 
        config_get mtu "$cfg" mtu
        config_get server "$cfg" server