https://github.com/Phoenix1747/RouteryPi indeholder instruktioner til brug af en Rasberry Pi som en trådløs router til 2,4 GHz-netværk.

Hvordan kan jeg ændre dette for at få 5 GHz? Jeg forsøgte at ændre hw_mode til ac, men det ser ikke ud til at fungere. Hvor kan jeg få anstændig information om parametrene i hostapd config-filen, og hvordan skriver jeg en god konfigurationsfil?

Kommentarer

  • Jeg samler mit svar hjalp ' overhovedet ikke

Svar

TL; DR

brug

hw_mode=a 

Jeg ser, at mandsiderne til hostapd er ret ubrugelige

Jeg fandt en mere nyttig side https://wiki.gentoo.org/wiki/Hostapd med følgende eksempel

802.11a / n / ac med WPA2-PSK og CCMP

En enkel, men sikker AP til nyere hardware:
FIL /etc/hostapd/hostapd.conf

interface=wlan0 # the interface used by the AP hw_mode=a # a simply means 5GHz channel=0 # the channel to use, 0 means the AP will search for the channel with the least interferences ieee80211d=1 # limit the frequencies used to those allowed in the country country_code=FR # the country code ieee80211n=1 # 802.11n support ieee80211ac=1 # 802.11ac support wmm_enabled=1 # QoS support ssid=somename # the name of the AP auth_algs=1 # 1=wpa, 2=wep, 3=both wpa=2 # WPA2 only wpa_key_mgmt=WPA-PSK rsn_pairwise=CCMP wpa_passphrase=somepassword 

med den nyttige kommentar

hw_mode=a # a simply means 5GHz 

Bemærk: tilsyneladende senere versioner (v2.6 + ) af hostapd kan IKKE lide integrerede kommentarer i co nfig-fil

Kommentarer

  • raspberrypi.org/documentation/configuration/wireless/… indeholder også nyttig dokumentation om konfigurationsfilen
  • FYI; på hostapd v2.6 kan det ikke ' lide indbyggede kommentarer specifikt til linjen hw_mode; Konfigurationsfil: /etc/hostapd/hostapd.conf Linje 5: ukendt hw_mode ' a # a = 5Ghz, g = 2.4Ghz (tilsyneladende) ' HT (IEEE 802.11n) i 11b-tilstand er ikke tilladt, deaktivering af HT-funktioner 1-fejl fundet i konfigurationsfil ' /etc/hostapd/hostapd.conf'
  • @sirlark tak for informationen

Svar

Min hostapd.conf i hindbær pi 3B plus med raspbian stretch:

interface=wlan0 ssid=pi-5G macaddr_acl=0 ignore_broadcast_ssid=0 ## 2.4G #hw_mode=a #channel=7 ## 5G hw_mode=a channel=36 country_code=US ieee80211d=1 ieee80211n=1 ieee80211ac=1 wmm_enabled=1 ## wpa auth auth_algs=1 wpa=2 wpa_passphrase=11111111 wpa_key_mgmt=WPA-PSK wpa_pairwise=TKIP rsn_pairwise=CCMP 

Skriv et svar

Din e-mailadresse vil ikke blive publiceret. Krævede felter er markeret med *