mirror of
https://github.com/svpcom/wfb-ng.git
synced 2025-02-21 16:03:49 -04:00
14 lines
213 B
Bash
14 lines
213 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
WLAN=$1
|
||
|
CHANNEL5G="149"
|
||
|
|
||
|
echo "Setting $WLAN to channel $CHANNEL5G"
|
||
|
ifconfig $WLAN down
|
||
|
iw reg set BO
|
||
|
iw dev $WLAN set monitor otherbss
|
||
|
ifconfig $WLAN up
|
||
|
iwconfig $WLAN channel $CHANNEL5G
|
||
|
|
||
|
./tx $WLAN
|