Realtek RLT8812AU 无法启动监控模式

Realtek RLT8812AU 无法启动监控模式

我在 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

相关内容