tor_multipath_voip/scripts/rrh-client

11 lines
508 B
Plaintext
Raw Normal View History

2019-03-28 15:59:03 +00:00
#!/bin/bash
mkdir -p ./log
tor -f /etc/torrc > ./log/client-tor-stdout.log 2> ./log/client-tor-stderr.log &
sleep 2
mkdir -p ./shared
2019-04-03 07:54:52 +00:00
valgrind --leak-check=full donar -a rr -b -h -c -o ./shared/onion_services.pub -r 9000 > ./log/client-donar-stdout.log 2> ./log/client-donar-stderr.log &
2019-03-28 15:59:03 +00:00
sleep 2
measlat -h 127.13.3.7 -p 9000 > /dev/null 2>&1 # Used to wait for connections
2019-04-18 12:34:38 +00:00
dump_circuits > ./log/circuits.txt
2019-03-28 15:59:03 +00:00
measlat -h 127.13.3.7 -p 9000 -c $1 -i $2 -s $3 > ./res/rrh.csv 2> ./log/client-measlat-stderr.log