case "$iftype" in
bridge)
[ -x /usr/sbin/brctl ] && {
- ifconfig "$iface" up 2>/dev/null >/dev/null
ifconfig "br-$config" 2>/dev/null >/dev/null && {
$DEBUG brctl addif "br-$config" "$iface"
# Bridge existed already. No further processing necesary
# result in another setup_interface() call, so we simply stop processing
# the current event at this point.
}
+ ifconfig "$iface" up 2>/dev/null >/dev/null
return 1
}
;;
[ -z "$network" ] && return
config_get addr "$CONFIG_SECTION" bssid
+ addr=$(echo "$addr" | tr 'A-F' 'a-f')
[ "$addr" = "$remote" ] && {
local cfg="$CONFIG_SECTION"
config_get key "$cfg" key
config_get ssid "$cfg" ssid
- [ "$encryption" == "psk" ] && \
- nas4not lan "$iface" up auto aes "$encryption" "$key" "$ssid"
+ [ "$encryption" != "none" ] && {
+ sleep 1
+ nas4not lan "$iface" up auto aes "$encryption" "$key" "$ssid"
+ }
+
}
}
append vif_post_up "enabled 1" "$N"
config_get ifname "$vif" ifname
- append if_up "ifconfig $ifname up" ";$N"
+ #append if_up "ifconfig $ifname up" ";$N"
local net_cfg bridge
net_cfg="$(find_net_config "$vif")"
[ -z "$net_cfg" ] || {