From a9be396cd6a98fd93af21c3d5b8d9788e50117f9 Mon Sep 17 00:00:00 2001 From: Milan Meduna Date: Wed, 18 Mar 2020 11:54:33 +0100 Subject: [PATCH] hostapd.conf example add --- hostapd.conf | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 hostapd.conf diff --git a/hostapd.conf b/hostapd.conf new file mode 100644 index 0000000..97b7ad8 --- /dev/null +++ b/hostapd.conf @@ -0,0 +1,33 @@ +interface=wlan1 +driver=nl80211 +bridge=br0 + +### IEEE 802.11 +ssid=YOUR_SSID +hw_mode=a +channel=36 +preamble=1 + +### DFS +country_code=CZ +ieee80211d=1 +ieee80211h=1 + +### IEEE 802.11n +ieee80211n=1 +ht_capab=[HT20][HT40+][SHORT-GI-20][SHORT-GI-40][DSSS_CCK-40][RX-STBC-1][MAX-AMSDU-7935] + +### IEEE 802.11ac +ieee80211ac=1 +vht_oper_chwidth=1 +vht_capab=[SHORT-GI-80][HTC-VHT][SU-BEAMFORMEE][BF-ANTENNA-1][TX-STBC][MAX-MPDU-11454] +vht_oper_centr_freq_seg0_idx=42 + +### IEEE 802.11i +wpa=2 +wpa_key_mgmt=WPA-PSK +wpa_passphrase=YOUR_PASSWORD +wpa_pairwise=CCMP + +### QOS +wmm_enabled=1 \ No newline at end of file