-
-
Save heatxsink/f2d3d27d5f8b14c398d60ca5d7167f31 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### hostapd configuration file, loosely based on http://pisarenko.net/blog/2015/02/01/beginners-guide-to-802-dot-11ac-setup/ | |
### for Realtek RTL8812AU via driver https://github.com/abperiasamy/rtl8812AU_8821AU_linux | |
### and hostap 2.5 | |
### Operates at 135 Mbps in 802.11n/ht mode. iperf measures ~8.00 MBytes/sec 67.1 Mbits/sec | |
### I was not able to get 802.11ac/vht mode with additional side-channels configured with the driver. | |
ctrl_interface=/var/run/hostapd | |
ctrl_interface_group=0 | |
interface=wlan2 | |
driver=nl80211 | |
bridge=br0 | |
### IEEE 802.11 | |
ssid=<SOMESSID> | |
hw_mode=a | |
channel=36 | |
max_num_sta=128 | |
auth_algs=1 | |
### DFS | |
country_code=DE | |
ieee80211d=1 | |
ieee80211h=1 | |
### IEEE 802.11n | |
ieee80211n=1 | |
ht_capab=[HT20][HT40+][SHORT-GI-20][SHORT-GI-40][DSSS_CCK-40] | |
### IEEE 802.11ac | |
ieee80211ac=1 | |
#vht_oper_chwidth=1 | |
#vht_capab=[HT40-] | |
#vht_oper_centr_freq_seg0_idx=46 | |
### IEEE 802.11i | |
wpa=2 | |
wpa_key_mgmt=WPA-PSK | |
wpa_passphrase=<PASSPHRASE> | |
rsn_pairwise=CCMP | |
### WMM | |
wmm_enabled=1 | |
uapsd_advertisement_enabled=1 | |
wmm_ac_bk_cwmin=4 | |
wmm_ac_bk_cwmax=10 | |
wmm_ac_bk_aifs=7 | |
wmm_ac_bk_txop_limit=0 | |
wmm_ac_bk_acm=0 | |
wmm_ac_be_aifs=3 | |
wmm_ac_be_cwmin=4 | |
wmm_ac_be_cwmax=10 | |
wmm_ac_be_txop_limit=0 | |
wmm_ac_be_acm=0 | |
wmm_ac_vi_aifs=2 | |
wmm_ac_vi_cwmin=3 | |
wmm_ac_vi_cwmax=4 | |
wmm_ac_vi_txop_limit=94 | |
wmm_ac_vi_acm=0 | |
wmm_ac_vo_aifs=2 | |
wmm_ac_vo_cwmin=2 | |
wmm_ac_vo_cwmax=3 | |
wmm_ac_vo_txop_limit=47 | |
wmm_ac_vo_acm=0 | |
### TX queue parameters | |
tx_queue_data3_aifs=7 | |
tx_queue_data3_cwmin=15 | |
tx_queue_data3_cwmax=1023 | |
tx_queue_data3_burst=0 | |
tx_queue_data2_aifs=3 | |
tx_queue_data2_cwmin=15 | |
tx_queue_data2_cwmax=63 | |
tx_queue_data2_burst=0 | |
tx_queue_data1_aifs=1 | |
tx_queue_data1_cwmin=7 | |
tx_queue_data1_cwmax=15 | |
tx_queue_data1_burst=3.0 | |
tx_queue_data0_aifs=1 | |
tx_queue_data0_cwmin=3 | |
tx_queue_data0_cwmax=7 | |
tx_queue_data0_burst=1.5 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment