https://github.com/Phoenix1747/RouteryPi には、RasberryPiを2.4Ghzネットワークのワイヤレスルーターとして使用する手順が含まれています。

これを変更して5Ghzを取得するにはどうすればよいですか? hw_modeをacに変更しようとしましたが、うまくいかないようです。hostapd設定ファイルのパラメーターに関する適切な情報はどこで入手できますか。設定ファイル?

コメント

  • 回答を収集しました'まったく役に立ちませんでした

回答

TL; DR

使用

hw_mode=a 

hostapdのマニュアルページはまったく役に立たないようです

もっと便利なページを見つけました https://wiki.gentoo.org/wiki/Hostapd 次の例

802.11a / n / ac WPA2-PSKとCCMPを使用

最近のハードウェア用のシンプルで安全なAP:
ファイル/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 

役立つコメント付き

hw_mode=a # a simply means 5GHz 

注意:明らかに新しいバージョン(v2.6 + )hostapdのcoのインラインコメントが好きではありませんnfigファイル

コメント

  • raspberrypi.org/documentation/configuration/wireless/ … には、構成ファイルに関するいくつかの役立つドキュメントも含まれています
  • FYI; hostapd v2.6では、'特にhw_mode行のインラインコメントは好きではありません。設定ファイル:/etc/hostapd/hostapd.conf 5行目:不明hw_mode ' a#a = 5Ghz、g = 2.4Ghz(どうやら)' 11bモードでのHT(IEEE 802.11n)は許可されておらず、構成ファイル' /etc/hostapd/hostapd.conf
  • @sirlark情報をありがとう

回答

私の hostapd.conf ラズベリーパイ3Bプラスラズビアンストレッチ付き:

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 

コメントを残す

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です