wfb-ng/scripts/tx_standalone.sh

15 lines
264 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 dev $WLAN set monitor otherbss
iw reg set BO
2017-04-07 11:38:41 -03:00
ifconfig $WLAN up
iw dev $WLAN set bitrates ht-mcs-5 1 sgi-5
iw dev $WLAN set channel $CHANNEL5G HT40+
2017-04-07 11:38:41 -03:00
./tx $WLAN