結果ホットスポットが一貫してブロードキャストされない原因は何ですか?

結果ホットスポットが一貫してブロードキャストされない原因は何ですか?

私はCoral開発ボードでDebianバリアントを実行しています。ホットスポットを作成すると、時々利用できなくなって再び表示されることがあります。場合によっては、ボードと携帯電話がすぐ隣にありますが、信号が2つのバーに落ちる場合があります。何がこんなに落ちるのでしょうか?

SSIDとその出力を生成するために使用したコマンドは次のとおりです。

$ sudo hostapd /etc/hostapd.conf
Configuration file: /etc/hostapd.conf
rfkill: Cannot open RFKILL control device
hotspot: interface state UNINITIALIZED->COUNTRY_UPDATE
Using interface hotspot with hwaddr 00:0a:f5:89:89:82 and ssid "my_hotspot"
hotspot: interface state COUNTRY_UPDATE->ENABLED
hotspot: AP-ENABLED 
hotspot: IEEE 802.11 driver had channel switch: freq=2447, ht=1, vht_ch=0x0, offset=0, width=1 (20 MHz), cf1=2447, cf2=0
hotspot: STA 1e:f4:5e:60:19:d4 IEEE 802.11: associated

一時的に下落する兆しは見えません。より多くの情報を知らせるコマンドを実行できますか?

以下は内容です/etc/hostapd.conf

#2.4GHz setup wifi 80211 b,g,n
interface=hotspot
driver=nl80211
ssid=my_hotspot
hw_mode=g
channel=8
wmm_enabled=0
macaddr_acl=0
auth_algs=1
ignore_broadcast_ssid=0
wpa=2
wpa_passphrase=password
wpa_key_mgmt=WPA-PSK
wpa_pairwise=CCMP TKIP
rsn_pairwise=CCMP

#80211n - Change GB to your WiFi country code
country_code=US
ieee80211n=1
ieee80211d=1

ベストアンサー1

数時間この構成を使用した後、この/etc/hostapd.conf構成ははるかに優れたパフォーマンスを発揮することがわかりました。

interface=hotspot
driver=nl80211
ssid=my_hotspot
hw_mode=g
channel=1
wme_enabled=1
ieee80211n=1
macaddr_acl=0
auth_algs=1
ignore_broadcast_ssid=0
wpa=2
wpa_passphrase=password
wpa_key_mgmt=WPA-PSK
wpa_pairwise=TKIP
rsn_pairwise=CCMP

おすすめ記事