apt-get install hostapd これでは5GHzは対応していないようだ
またwifiアダプタはhostapdに対応していないと☓
hostapdを入れ替える
# wget http://www.adafruit.com/downloads/adafruit_hostapd.zip # unzip adafruit_hostapd.zip # mv /usr/sbin/hostapd /usr/sbin/hostapd.ORIG # mv hostapd /usr/sbin # chmod 755 /usr/sbin/hostapd
# vi /etc/hostapd/hostapd.conf
interface=wlan0 ssid=raspberry-5GHz #bridge=br0 #driver=rtl871xdrv # WPA and WPA2 configuration macaddr_acl=0 auth_algs=1 ignore_broadcast_ssid=0 wpa=3 wpa_passphrase=パスワード wpa_key_mgmt=WPA-PSK wpa_pairwise=TKIP rsn_pairwise=CCMP # Hardware configuration #driver=rtl871xdrv #driver=nl80211 ieee80211n=1 channel=44 #hw_mode=g hw_mode=a
コメント