mirror of
https://github.com/svpcom/wfb-ng.git
synced 2025-02-20 23:43:49 -04:00
18 lines
293 B
Bash
Executable File
18 lines
293 B
Bash
Executable File
#!/bin/bash
|
|
|
|
WLANS=$@
|
|
CHANNEL5G="149"
|
|
|
|
for WLAN in $WLANS
|
|
do
|
|
echo "Setting $WLAN to channel $CHANNEL5G"
|
|
ifconfig $WLAN down
|
|
iw dev $WLAN set monitor otherbss
|
|
iw reg set BO
|
|
ifconfig $WLAN up
|
|
iw dev $WLAN set bitrates ht-mcs-5 1 sgi-5
|
|
iw dev $WLAN set channel $CHANNEL5G HT40+
|
|
done
|
|
|
|
./rx $WLANS
|