web-dev-qa-db-ja.com

Hostapdnl80211がインターフェース-19の設定に失敗しました

Debianlinuxでhostapdを実行しようとしています。 Olimex OLinuXino A13WiFiでRealtekrtl8188 usbwifiカードを使用しています。ただし、コマンドhostapd -dd /etc/hostapd/hostapd.confを実行すると、エラーが発生します。

root@a13-OLinuXino:~# hostapd -dd /etc.hostapd/hostapd.conf
random: Trying to read entropy from /dev/random
Configuration file: /etc/hostapd.conf
Could not open file /sys/class/net/wlan12/phy80211/name: No such file or directory
rfkill: Cannot open RFKILL control device
nl80211: RFKILL status not available
netlink: Operstate: Linkmode=0, operstate=6
nl80211: Set mode ifindex 3 iftype 2 (STATION)
nl80211: Failed to set interface 3 to mode 2: -19 (No such device)
nl80211: Try mode change after setting interface down
nl80211: Set mode ifindex 3 iftype 2 (STATION)
nl80211: Failed to set interface 3 to mode 2: -19 (No such device)
nl80211: Interface mode change to 2 from 0 failed
nl80211 driver initialization failed.

これはhostapdの設定ファイルです:

root@a13-OLinuXino:~# cat /etc/hostapd/hostapd.conf
interface=wlan12
bridge=br0
driver=nl80211
country_code=NL
ssid=NAME
hw_mode=g
channel=3
wpa=2
wpa_passphrase=PASSWORD
wpa_key_mgmt=WPA-PSK
wpa_pairwise=TKIP
rsn_pairwise=CCMP
auth_algs=1
macaddr_acl=0

どんな助けでも大歓迎です!

2
B.Schuurman

driver=nl80211ファイルのdriver=rtl871xdrv/etc/hostapd/hostapd.conf に変更する必要があります。

RTL8188CUS(またはそのバリアント)として認識されるRT8188CやRT8192CなどのWifiチップは、hostapdの標準のnl80211ドライバーをサポートしていません。

RTL8188CUS(またはそのバリアント)として自分自身を識別するwifiチップのAPモード(hostapd経由)のサポート。特定のwifiチップがrtl871xdrvと呼ばれる特別なバージョンのhostapdドライバーで動作すると誰かが主張するのを見たり聞いたりした場合は、これがそれです。

または、nl80211をサポートするカスタムhostapdバージョンをインストールできます。

apt-get remove hostapd
git clone https://github.com/jenssegers/RTL8188-hostapd.git
cd RTL8188-hostapd/hostapd
make
make install
1
GAD3R