VirtualBox 上の Kali Linux でこの問題が発生しています。USB ネットワーク カードがあります:
root@kali:~# lsusb
Bus 001 Device 002: ID 0bda:8812 Realtek Semiconductor Corp. RTL8812AU 802.11a/b/g/n/ac WLAN Adapter
一週間かけて多くのドライバーをインストールしようとしましたが、同じエラーが発生します。
root@kali:~# airmon-ng start wlan0
PHY Interface Driver Chipset
phy0 wlan0 rtl8812au Realtek Semiconductor Corp. RTL8812AU
802.11a/b/g/n/ac WLAN Adapter cat: /sys/class/ieee80211/phy0/device/net/wlan0mon/type: No such file or directory
Newly created monitor mode interface wlan0mon is *NOT* in monitor
mode. Removing non-monitor wlan0mon interface...
WARNING: unable to start monitor mode, please run "airmon-ng check kill"
試してみましたがairmon-ng check kill
、うまくいきませんでした。良いドライバーを見つける方法はありますか?
答え1
わかったと思います。使用方法:https://github.com/kimocoder/rtl8812au
git clone [email protected]:kimocoder/rtl8812au.git
cd rtl8812au
git checkout v5.1.5
chmod +x dkms-install.sh
sudo ./dkms-install.sh
今は無視しairmon-ng
て自分でモニターを設定してください。
(私の場合、wlx00c0ca96172e が平均的な wlan1 です)
ip link set wlx00c0ca96172e down
iw dev wlx00c0ca96172e set type monitor
ip link set wlx00c0ca96172e up
今はairodump-ng wlx00c0ca96172e
うまくいっている
答え2
私はKaliをVirtualBox VMとしてインストールしており、AWUS036ACHドライバーを
apt install realtek-rtl88xxau-dkms
その後、次のコマンドを実行してモニター モードを有効にします。
ifconfig wlan0 down
iwconfig wlan0 mode monitor
ifconfig wlan0 up