mirror of
https://github.com/aircrack-ng/rtl8812au.git
synced 2025-01-07 06:35:29 +00:00
Update README.md
This commit is contained in:
parent
59c97a6d9f
commit
506ee20b05
60
README.md
60
README.md
@ -1,11 +1,14 @@
|
|||||||
# rtl8812au
|
# rtl8812au
|
||||||
|
|
||||||
## Realtek 8812AU driver v5.2.20 with monitor mode and packet injection
|
## Realtek 8812AU driver v5.2.20 with monitor mode and frame injection
|
||||||
|
|
||||||
Only supports 8812AU chipset, not the 8814AU or the 8821AU.
|
Only supports 8812AU chipset, not the 8814AU or the 8821AU at this point.
|
||||||
|
|
||||||
|
### Changelogs and TODO
|
||||||
|
Check the "docs/" folder for more information.
|
||||||
|
Both Realtek changelog is added and our personal changelog and TODO is in there.
|
||||||
|
|
||||||
### Building
|
### Building / Installing
|
||||||
|
|
||||||
To build and install module manually:
|
To build and install module manually:
|
||||||
```sh
|
```sh
|
||||||
@ -25,6 +28,44 @@ To use dkms uninstall and remove:
|
|||||||
$ sudo ./dkms-remove.sh
|
$ sudo ./dkms-remove.sh
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Notes
|
||||||
|
Download
|
||||||
|
```
|
||||||
|
git clone -b v5.1.5 https://github.com/aircrack-ng/rtl8812au.git
|
||||||
|
cd rtl*
|
||||||
|
```
|
||||||
|
Package / Build dependencies (Kali)
|
||||||
|
```
|
||||||
|
sudo apt-get install build-essential
|
||||||
|
sudo apt-get install bc
|
||||||
|
sudo apt-get install libelf-dev
|
||||||
|
sudo apt-get install linux-headers-`uname -r`
|
||||||
|
```
|
||||||
|
For Raspberry (RPI) also
|
||||||
|
```
|
||||||
|
sudo apt install raspberrypi-kernel-headers
|
||||||
|
```
|
||||||
|
|
||||||
|
### For setting monitor mode
|
||||||
|
1. Fix problematic interference in monitor mode.
|
||||||
|
```
|
||||||
|
airmon-ng check kill
|
||||||
|
```
|
||||||
|
You may also uncheck the box "Automatically connect to this network when it is avaiable" in nm-connection-editor. This only works if you have a saved wifi connection.
|
||||||
|
|
||||||
|
2. Set interface down
|
||||||
|
```
|
||||||
|
sudo ip link set wlan0 down
|
||||||
|
```
|
||||||
|
3. Set monitor mode
|
||||||
|
```
|
||||||
|
sudo iw dev wlan0 set type monitor
|
||||||
|
```
|
||||||
|
4. Set interface up
|
||||||
|
```
|
||||||
|
sudo ip link set wlan0 up
|
||||||
|
```
|
||||||
|
|
||||||
### LED control
|
### LED control
|
||||||
|
|
||||||
#### You can now control LED behaviour statically by Makefile, for example:
|
#### You can now control LED behaviour statically by Makefile, for example:
|
||||||
@ -56,9 +97,12 @@ $ cat /proc/net/rtl8812au/$(your interface name)/led_enable
|
|||||||
|
|
||||||
### NetworkManager
|
### NetworkManager
|
||||||
|
|
||||||
As others have noted, people using NetworkManager need to add this stanza to /etc/NetworkManager/NetworkManager.conf
|
Newer versions of NetworkManager switches to random MAC address. Some users would prefer to use a fixed address.
|
||||||
|
Simply add these lines below
|
||||||
```sh
|
|
||||||
[device]
|
|
||||||
wifi.scan-rand-mac-address=no
|
|
||||||
```
|
```
|
||||||
|
[device]
|
||||||
|
wifi.scan-rand-mac-address=no
|
||||||
|
```
|
||||||
|
at the end of file /etc/NetworkManager/NetworkManager.conf and restart NetworkManager with the command:
|
||||||
|
```
|
||||||
|
sudo service NetworkManager restart
|
||||||
|
Loading…
Reference in New Issue
Block a user