wfb-ng/scripts/tx.sh

14 lines
213 B
Bash
Raw Normal View History

2017-04-07 11:38:41 -03:00
#!/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