Lots of build fixes, please test!

Oleksij Rempel linux at rempel-privat.de
Tue Apr 16 12:37:56 EDT 2013


Am 16.04.2013 18:08, schrieb Eugene Krasnikov:
> I tested latest source tree in STA mode in noisy environment and
> AR9271 showed good results. Will test AR7010 in both STA and AP modes.
>
> P.S. It would be nice to have some kind of automatic testcases. E.g.
> use AR9271 in AP mode and AR7010 in client, connect them to each other
> and run some data between them with different encryption.

agree. Some set of scripts or configs will be good. There is here some 
thing, but i didn't tested them:
http://wireless.kernel.org/en/developers/Testing/wifi-test
need to find some time, to do it.
In attachment are some scripts and configs which i use.

-- 
Regards,
Oleksij
-------------- next part --------------
# Schnittstelle und Treiber
interface=wlan-test
driver=nl80211

# WLAN-Konfiguration
ssid=test_ap
channel=11
hw_mode=g

# ESSID sichtbar
ignore_broadcast_ssid=0

# Ländereinstellungen
country_code=DE
ieee80211d=1

supported_rates=10 20 55 110 120 180 240 360 480 540 65 130 195 260 390 520 585 650 780 1040 1170 1300

ieee80211n=1
# Übertragungsmodus / Bandbreite 40MHz
ht_capab=[HT40-][SHORT-GI-40][DSSS_CCK-40]

# Beacons
beacon_int=100
dtim_period=2

# MAC-Authentifizierung
macaddr_acl=0

# max. Anzahl der Clients
max_num_sta=255

# Größe der Datenpakete/Begrenzung
rts_threshold=2347
fragm_threshold=2346

# hostapd Log Einstellungen
logger_syslog=-1
logger_syslog_level=2
logger_stdout=-1
logger_stdout_level=2

# temporäre Konfigurationsdateien
dump_file=/tmp/hostapd.dump
ctrl_interface=/var/run/hostapd
ctrl_interface_group=0

# Authentifizierungsoptionen 
auth_algs=3

# wmm-Funktionalität
wmm_enabled=1

# Verschlüsselung / hier rein WPA2
wpa=2
#rsn_preauth=1
#rsn_preauth_interfaces=wlan1
wpa_key_mgmt=WPA-PSK
rsn_pairwise=CCMP

# Schlüsselintervalle / Standardkonfiguration
wpa_group_rekey=600
wpa_ptk_rekey=600
wpa_gmk_rekey=86400

# Zugangsschlüssel (PSK) / hier in Klartext (ASCII)
wpa_passphrase=12345678
-------------- next part --------------
#!/bin/bash

echo "tcp from client to server"
netperf -H $1 -t TCP_STREAM
echo "tcp from server to client"
netperf -H $1 -t TCP_MAERTS
echo "udp from client to server"
netperf -H $1 -t UDP_STREAM

echo "two tcp tasts at same time. both directions"
netperf -H $1 -t TCP_STREAM & netperf -H $1 -t TCP_MAERTS 

#iperf -c $1
#iperf -d -c $1
#iperf -u -c $1
#iperf -d -u -c $1
-------------- next part --------------
#!/bin/bash


sudo /etc/init.d/network-manager stop
sudo ifconfig wlan-test up
sudo ifconfig wlan-test 192.168.1.6
sudo hostapd ./hostapd.conf


More information about the ath9k_htc_fw mailing list