tor_multipath_voip/scripts/rr-server

11 lines
452 B
Plaintext
Raw Normal View History

2019-02-22 14:22:06 +00:00
#!/bin/bash
mkdir -p ./log
tor -f /etc/torrc > ./log/server-tor-stdout.log 2> ./log/server-tor-stderr.log &
2019-02-22 16:45:48 +00:00
sleep 2
mkdir -p ./shared
cd ./shared
2019-03-05 15:13:08 +00:00
pwd
2019-04-18 12:34:38 +00:00
( sleep 180; dump_circuits > ./log/server-circuits.txt ) &
2019-04-01 14:32:39 +00:00
valgrind --leak-check=full donar -a rr -b -s -e 9000 -v > ../log/server-donar-stdout.log 2> ../log/server-donar-stderr.log &
valgrind --leak-check=full udpecho -p 9000 -v > ../log/server-udpecho-stdout.log 2> ../log/server-udpecho-stderr.log