summaryrefslogtreecommitdiffstats
path: root/package/broadcom-wl
diff options
context:
space:
mode:
authorFlorian Fainelli <florian@openwrt.org>2008-08-09 00:18:25 +0000
committerFlorian Fainelli <florian@openwrt.org>2008-08-09 00:18:25 +0000
commit22aa7c6406cf09a7b87047071e82a9f0c49fbcd2 (patch)
tree69e2d9960f1732df52f246ee3e3d3b49c07a5804 /package/broadcom-wl
parent753e5b492d6f220b28c9d07b142783cd75216f36 (diff)
downloadmaster-31e0f0ae-22aa7c6406cf09a7b87047071e82a9f0c49fbcd2.tar.gz
master-31e0f0ae-22aa7c6406cf09a7b87047071e82a9f0c49fbcd2.tar.bz2
master-31e0f0ae-22aa7c6406cf09a7b87047071e82a9f0c49fbcd2.zip
Support encrypted WDS connections (#2463)
SVN-Revision: 12251
Diffstat (limited to 'package/broadcom-wl')
-rw-r--r--package/broadcom-wl/files/etc/hotplug.d/net/20-broadcom_wds15
1 files changed, 14 insertions, 1 deletions
diff --git a/package/broadcom-wl/files/etc/hotplug.d/net/20-broadcom_wds b/package/broadcom-wl/files/etc/hotplug.d/net/20-broadcom_wds
index d60a316294..90978ee769 100644
--- a/package/broadcom-wl/files/etc/hotplug.d/net/20-broadcom_wds
+++ b/package/broadcom-wl/files/etc/hotplug.d/net/20-broadcom_wds
@@ -31,7 +31,20 @@ setup_broadcom_wds() {
[ "$encryption" != "none" ] && {
sleep 1
- nas4not lan "$iface" up auto aes "$encryption" "$key" "$ssid"
+ case "$encryption" in
+ psk|PSK)
+ nas4not "$network" "$iface" up auto tkip psk "$key" "$ssid"
+ ;;
+ psk2|PSK2)
+ nas4not "$network" "$iface" up auto aes psk "$key" "$ssid"
+ ;;
+ psk+psk2|psk2+psk|PSK+PSK2|PSK2+PSK)
+ nas4not "$network" "$iface" up auto aes+tkip psk "$key" "$ssid"
+ ;;
+ *)
+ nas4not lan "$iface" up auto aes "$encryption" "$key" "$ssid"
+ ;;
+ esac
}
}
}