tor_multipath_voip/scripts/2021/torexitna

24 lines
380 B
Plaintext
Raw Normal View History

2021-01-27 08:12:36 +00:00
#!/bin/bash
while true; do
SOCK_PORT=$1
2021-01-28 09:49:39 +00:00
/usr/local/bin/tor3 \
2021-01-27 08:12:36 +00:00
--UseEntryGuards 0 \
--SocksPort "127.0.0.1:$SOCK_PORT IsolateDestPort IsolateDestAddr IsolateClientAddr" \
--DataDirectory /tmp/tor$SOCK_PORT &
sleep 5
/usr/local/bin/measlat \
-t tor \
-q $SOCK_PORT \
2021-02-01 20:14:02 +00:00
-h $(curl ifconfig.me) \
2021-01-27 08:12:36 +00:00
-p 443 \
-c 135000 \
-i 40 \
-s 172 \
2021-02-01 20:14:02 +00:00
-m torexitna
2021-01-27 08:12:36 +00:00
kill $!
done