start-p2p-concurrent.sh 819 B

12345678910111213141516171819
  1. #!/bin/sh
  2. DIR="$( cd "$( dirname "$0" )" && pwd )"
  3. WPAS=$DIR/../../wpa_supplicant/wpa_supplicant
  4. WLANTEST=$DIR/../../wlantest/wlantest
  5. $DIR/stop-wifi.sh
  6. sudo modprobe mac80211_hwsim radios=3
  7. sudo iw wlan0 interface add sta0 type station
  8. sudo iw wlan1 interface add sta1 type station
  9. sudo iw wlan2 interface add sta2 type station
  10. mkdir -p $DIR/logs
  11. DATE=`date +%s`
  12. sudo ifconfig hwsim0 up
  13. sudo $WLANTEST -i hwsim0 -c -d > $DIR/logs/$DATE-hwsim0 &
  14. sudo $WPAS -Dnl80211 -iwlan0 -c $DIR/p2p0.conf -N -Dnl80211 -ista0 -c $DIR/sta-dummy.conf -ddKt > $DIR/logs/$DATE-log0 &
  15. sudo $WPAS -Dnl80211 -iwlan1 -c $DIR/p2p1.conf -N -Dnl80211 -ista1 -c $DIR/sta-dummy.conf -ddKt > $DIR/logs/$DATE-log1 &
  16. sudo $WPAS -Dnl80211 -iwlan2 -c $DIR/p2p2.conf -N -Dnl80211 -ista2 -c $DIR/sta-dummy.conf -ddKt > $DIR/logs/$DATE-log2 &
  17. sleep 1