Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
The Tor Project
Network Health
sbws
Commits
07a2a94c
Commit
07a2a94c
authored
Apr 19, 2018
by
Matt Traudt
Browse files
Deduplicate simple testnet script 01-gen-configs.sh
parent
7599e9d0
Changes
10
Show whitespace changes
Inline
Side-by-side
tests/testnets/simple-ipv4/00-common.sh
deleted
120000 → 0
View file @
7599e9d0
../simple.common/00-common.sh
\ No newline at end of file
tests/testnets/simple-ipv4/00-common.sh
0 → 100644
View file @
07a2a94c
ip_space
=
"127.10.0."
socksport
=
"2000"
controlport
=
"2001"
orport
=
"2002"
dirport
=
"2003"
auth_torrc_section
=
"auth.torrc.part"
sbws_server_host
=
"127.0.0.1"
tests/testnets/simple-ipv4/01-gen-configs.sh
deleted
100755 → 0
View file @
7599e9d0
#!/usr/bin/env bash
set
-e
which tor
||
exit
1
which tor-gencert
||
exit
1
source
00-common.sh
function
get_fingerprint
{
dir
=
$1
[
-f
$dir
/torrc
]
||
exit
2
tor
--ignore-missing-torrc
-f
$dir
/torrc
--Address
8.8.8.8
\
--list-fingerprint
|
tail
-n
1 |
cut
-d
' '
-f
2-
\
|
sed
's|\ ||g'
}
function
get_v3ident
{
dir
=
$1
cert
=
$dir
/keys/authority_certificate
[
-f
$cert
]
||
exit
2
grep
fingerprint
$cert
|
cut
-d
' '
-f
2
}
next_ip
=
"1"
scanner_tor_socks_proxy_ip
=
""
scanner_tor_socks_proxy_nick
=
""
echo
-n
''
>
$auth_torrc_section
rm
-fr
auth?/ relay?/
exit
?/ config
*
.ini datadir/
*
.log
for
A
in
auth1 auth2 auth3
do
mkdir
-pv
$A
/keys
chmod
700
$A
ip
=
${
ip_space
}${
next_ip
}
[
"
$scanner_tor_socks_proxy_ip
"
==
""
]
&&
scanner_tor_socks_proxy_ip
=
"
$ip
"
[
"
$scanner_tor_socks_proxy_nick
"
==
""
]
&&
scanner_tor_socks_proxy_nick
=
"
$A
"
echo
-n
''
| tor-gencert
--create-identity-key
--passphrase-fd
0
-m
24
-a
$ip
:
$dirport
echo
"
DataDirectory
$A
PidFile
$A
/tor.pid
Log notice file
$A
/notice.log
ShutdownWaitLength 2
ExitRelay 0
AuthoritativeDirectory 1
V3AuthoritativeDirectory 1
Address
$ip
SocksPort
$ip
:
$socksport
ControlPort
$ip
:
$controlport
ControlSocket
$(
pwd
)
/
$A
/control_socket
CookieAuthentication 1
ORPort
$ip
:
$orport
DirPort
$ip
:
$dirport
Nickname
$A
ContactInfo pastly@torproject.org
"
>
$A
/torrc
mv
-v
authority_
*
$A
/keys/
fp
=
$(
get_fingerprint
$A
)
v3ident
=
$(
get_v3ident
$A
)
echo
"DirAuthority
$A
orport=
$orport
no-v2 v3ident=
$v3ident
$ip
:
$dirport
$fp
"
\
>>
$auth_torrc_section
next_ip
=
$((
next_ip+1
))
done
for
A
in
relay1 relay2 relay3 relay4 relay5 relay6 relay7
do
mkdir
-pv
$A
chmod
700
$A
ip
=
${
ip_space
}${
next_ip
}
echo
"
DataDirectory
$A
PidFile
$A
/tor.pid
Log notice file
$A
/notice.log
ShutdownWaitLength 2
ExitRelay 0
Address
$ip
SocksPort
$ip
:
$socksport
ControlPort
$ip
:
$controlport
ControlSocket
$(
pwd
)
/
$A
/control_socket
CookieAuthentication 1
ORPort
$ip
:
$orport
DirPort
$ip
:
$dirport
Nickname
$A
ContactInfo pastly@torproject.org
"
>
$A
/torrc
next_ip
=
$((
next_ip+1
))
done
for
A
in
exit1 exit2 exit3
do
mkdir
-pv
$A
chmod
700
$A
ip
=
${
ip_space
}${
next_ip
}
echo
"
DataDirectory
$A
PidFile
$A
/tor.pid
Log notice file
$A
/notice.log
ShutdownWaitLength 2
ExitRelay 1
IPv6Exit 1
ExitPolicy accept *:*
ExitPolicy reject *:*
Address
$ip
SocksPort
$ip
:
$socksport
ControlPort
$ip
:
$controlport
ControlSocket
$(
pwd
)
/
$A
/control_socket
CookieAuthentication 1
ORPort
$ip
:
$orport
DirPort
$ip
:
$dirport
Nickname
$A
ContactInfo pastly@torproject.org
"
>
$A
/torrc
next_ip
=
$((
next_ip+1
))
done
for
torrc
in
./auth
*
/torrc
do
echo
"
TestingV3AuthInitialVotingInterval 5
V3AuthVotingInterval 10
TestingV3AuthInitialVoteDelay 2
V3AuthVoteDelay 2
TestingV3AuthInitialDistDelay 2
V3AuthDistDelay 2
"
>>
$torrc
done
for
torrc
in
./
{
auth,relay,exit
}
*
/torrc
do
cat
$auth_torrc_section
>>
$torrc
echo
"
TestingTorNetwork 1
NumCPUs 1
LogTimeGranularity 1
SafeLogging 0
"
>>
$torrc
done
rm
$auth_torrc_section
# Get a random port between 2000 and 62000 while handling the fact that $RANDOM
# doesn't go up that high
sbws_server_port
=
$((
((
RANDOM
<<
15
)|RANDOM) % 60000 + 2000 ))
echo "
[paths]
datadir =
\$
{sbws_home}/datadir
sbws_home =
$(
pwd
)
[tor]
control_type = socket
control_location =
\$
{paths:sbws_home}/
$scanner_tor_socks_proxy_nick
/control_socket
socks_host =
$scanner_tor_socks_proxy_ip
socks_port =
$socksport
[scanner]
nickname = SbwsTestnetScanner
measurement_threads = 4
download_toofast = 0.1
download_min = 1
download_target = 2
download_max = 5
num_rtts = 5
num_downloads = 3
[server]
bind_ip = 127.0.0.1
bind_port =
$sbws_server_port
[server.passwords]
scanner1 = 9Xa9Ulp9bD5GGLuFm6XYZBtc2VhWQlJgpRRF9SpmfoujrFwdRwBizpqcSMHix6Jc
scanner2 = gNeJoOiB7eya7QrpjtxlwSQO42eXazawJIEh5BbKJ1pZ0RFxT45Rbqv28wWyD4pk
scanner3 = Onqr54A6xavBV5yxd4KCNPIl5mR6UdnAb21XX8t3kbEvTd28o6HQxFA2Gim8kxil
[helpers]
exit1 = on
exit2 = on
exit3 = on
[helpers.exit1]
relay =
$(
get_fingerprint exit1
)
server_host = 127.0.0.1
server_port =
$sbws_server_port
password = gNeJoOiB7eya7QrpjtxlwSQO42eXazawJIEh5BbKJ1pZ0RFxT45Rbqv28wWyD4pk
[helpers.exit2]
relay =
$(
get_fingerprint exit2
)
server_host = 127.0.0.1
server_port =
$sbws_server_port
password = 9Xa9Ulp9bD5GGLuFm6XYZBtc2VhWQlJgpRRF9SpmfoujrFwdRwBizpqcSMHix6Jc
[helpers.exit3]
relay =
$(
get_fingerprint exit3
)
server_host = 127.0.0.1
server_port =
$sbws_server_port
password = Onqr54A6xavBV5yxd4KCNPIl5mR6UdnAb21XX8t3kbEvTd28o6HQxFA2Gim8kxil
" > config.ini
touch config.log.ini
tests/testnets/simple-ipv4/01-gen-configs.sh
0 → 120000
View file @
07a2a94c
../simple.common/01-gen-configs.sh
\ No newline at end of file
tests/testnets/simple-ipv6/00-common.sh
deleted
120000 → 0
View file @
7599e9d0
../simple.common/00-common.sh
\ No newline at end of file
tests/testnets/simple-ipv6/00-common.sh
0 → 100644
View file @
07a2a94c
ip_space
=
"127.10.0."
socksport
=
"2000"
controlport
=
"2001"
orport
=
"2002"
dirport
=
"2003"
auth_torrc_section
=
"auth.torrc.part"
sbws_server_host
=
"::1"
tests/testnets/simple-ipv6/01-gen-configs.sh
deleted
100755 → 0
View file @
7599e9d0
#!/usr/bin/env bash
set
-e
which tor
||
exit
1
which tor-gencert
||
exit
1
source
00-common.sh
function
get_fingerprint
{
dir
=
$1
[
-f
$dir
/torrc
]
||
exit
2
tor
--ignore-missing-torrc
-f
$dir
/torrc
--Address
8.8.8.8
\
--list-fingerprint
|
tail
-n
1 |
cut
-d
' '
-f
2-
\
|
sed
's|\ ||g'
}
function
get_v3ident
{
dir
=
$1
cert
=
$dir
/keys/authority_certificate
[
-f
$cert
]
||
exit
2
grep
fingerprint
$cert
|
cut
-d
' '
-f
2
}
next_ip
=
"1"
scanner_tor_socks_proxy_ip
=
""
scanner_tor_socks_proxy_nick
=
""
echo
-n
''
>
$auth_torrc_section
rm
-fr
auth?/ relay?/
exit
?/ config
*
.ini datadir/
*
.log
for
A
in
auth1 auth2 auth3
do
mkdir
-pv
$A
/keys
chmod
700
$A
ip
=
${
ip_space
}${
next_ip
}
[
"
$scanner_tor_socks_proxy_ip
"
==
""
]
&&
scanner_tor_socks_proxy_ip
=
"
$ip
"
[
"
$scanner_tor_socks_proxy_nick
"
==
""
]
&&
scanner_tor_socks_proxy_nick
=
"
$A
"
echo
-n
''
| tor-gencert
--create-identity-key
--passphrase-fd
0
-m
24
-a
$ip
:
$dirport
echo
"
DataDirectory
$A
PidFile
$A
/tor.pid
Log notice file
$A
/notice.log
ShutdownWaitLength 2
ExitRelay 0
AuthoritativeDirectory 1
V3AuthoritativeDirectory 1
Address
$ip
SocksPort
$ip
:
$socksport
ControlPort
$ip
:
$controlport
ControlSocket
$(
pwd
)
/
$A
/control_socket
CookieAuthentication 1
ORPort
$ip
:
$orport
DirPort
$ip
:
$dirport
Nickname
$A
ContactInfo pastly@torproject.org
"
>
$A
/torrc
mv
-v
authority_
*
$A
/keys/
fp
=
$(
get_fingerprint
$A
)
v3ident
=
$(
get_v3ident
$A
)
echo
"DirAuthority
$A
orport=
$orport
no-v2 v3ident=
$v3ident
$ip
:
$dirport
$fp
"
\
>>
$auth_torrc_section
next_ip
=
$((
next_ip+1
))
done
for
A
in
relay1 relay2 relay3 relay4 relay5 relay6 relay7
do
mkdir
-pv
$A
chmod
700
$A
ip
=
${
ip_space
}${
next_ip
}
echo
"
DataDirectory
$A
PidFile
$A
/tor.pid
Log notice file
$A
/notice.log
ShutdownWaitLength 2
ExitRelay 0
Address
$ip
SocksPort
$ip
:
$socksport
ControlPort
$ip
:
$controlport
ControlSocket
$(
pwd
)
/
$A
/control_socket
CookieAuthentication 1
ORPort
$ip
:
$orport
DirPort
$ip
:
$dirport
Nickname
$A
ContactInfo pastly@torproject.org
"
>
$A
/torrc
next_ip
=
$((
next_ip+1
))
done
for
A
in
exit1 exit2 exit3
do
mkdir
-pv
$A
chmod
700
$A
ip
=
${
ip_space
}${
next_ip
}
echo
"
DataDirectory
$A
PidFile
$A
/tor.pid
Log notice file
$A
/notice.log
ShutdownWaitLength 2
ExitRelay 1
IPv6Exit 1
ExitPolicy accept *:*
ExitPolicy reject *:*
Address
$ip
SocksPort
$ip
:
$socksport
ControlPort
$ip
:
$controlport
ControlSocket
$(
pwd
)
/
$A
/control_socket
CookieAuthentication 1
ORPort
$ip
:
$orport
DirPort
$ip
:
$dirport
Nickname
$A
ContactInfo pastly@torproject.org
"
>
$A
/torrc
next_ip
=
$((
next_ip+1
))
done
for
torrc
in
./auth
*
/torrc
do
echo
"
TestingV3AuthInitialVotingInterval 5
V3AuthVotingInterval 10
TestingV3AuthInitialVoteDelay 2
V3AuthVoteDelay 2
TestingV3AuthInitialDistDelay 2
V3AuthDistDelay 2
"
>>
$torrc
done
for
torrc
in
./
{
auth,relay,exit
}
*
/torrc
do
cat
$auth_torrc_section
>>
$torrc
echo
"
TestingTorNetwork 1
NumCPUs 1
LogTimeGranularity 1
SafeLogging 0
"
>>
$torrc
done
rm
$auth_torrc_section
# Get a random port between 2000 and 62000 while handling the fact that $RANDOM
# doesn't go up that high
sbws_server_port
=
$((
((
RANDOM
<<
15
)|RANDOM) % 60000 + 2000 ))
echo "
[paths]
datadir =
\$
{sbws_home}/datadir
sbws_home =
$(
pwd
)
[tor]
control_type = socket
control_location =
\$
{paths:sbws_home}/
$scanner_tor_socks_proxy_nick
/control_socket
socks_host =
$scanner_tor_socks_proxy_ip
socks_port =
$socksport
[scanner]
nickname = SbwsTestnetScanner
measurement_threads = 4
download_toofast = 0.1
download_min = 1
download_target = 2
download_max = 5
num_rtts = 5
num_downloads = 3
[server]
bind_ip = ::
bind_port =
$sbws_server_port
[server.passwords]
scanner1 = 9Xa9Ulp9bD5GGLuFm6XYZBtc2VhWQlJgpRRF9SpmfoujrFwdRwBizpqcSMHix6Jc
scanner2 = gNeJoOiB7eya7QrpjtxlwSQO42eXazawJIEh5BbKJ1pZ0RFxT45Rbqv28wWyD4pk
scanner3 = Onqr54A6xavBV5yxd4KCNPIl5mR6UdnAb21XX8t3kbEvTd28o6HQxFA2Gim8kxil
[helpers]
exit1 = on
exit2 = on
exit3 = on
[helpers.exit1]
relay =
$(
get_fingerprint exit1
)
server_host = ::1
server_port =
$sbws_server_port
password = gNeJoOiB7eya7QrpjtxlwSQO42eXazawJIEh5BbKJ1pZ0RFxT45Rbqv28wWyD4pk
[helpers.exit2]
relay =
$(
get_fingerprint exit2
)
server_host = ::1
server_port =
$sbws_server_port
password = 9Xa9Ulp9bD5GGLuFm6XYZBtc2VhWQlJgpRRF9SpmfoujrFwdRwBizpqcSMHix6Jc
[helpers.exit3]
relay =
$(
get_fingerprint exit3
)
server_host = ::1
server_port =
$sbws_server_port
password = Onqr54A6xavBV5yxd4KCNPIl5mR6UdnAb21XX8t3kbEvTd28o6HQxFA2Gim8kxil
" > config.ini
touch config.log.ini
tests/testnets/simple-ipv6/01-gen-configs.sh
0 → 120000
View file @
07a2a94c
../simple.common/01-gen-configs.sh
\ No newline at end of file
tests/testnets/simple.common/00-common.sh
deleted
100644 → 0
View file @
7599e9d0
ip_space
=
"127.10.0."
socksport
=
"2000"
controlport
=
"2001"
orport
=
"2002"
dirport
=
"2003"
auth_torrc_section
=
"auth.torrc.part"
tests/testnets/simple.common/01-gen-configs.sh
0 → 100755
View file @
07a2a94c
#!/usr/bin/env bash
set
-e
which tor
||
exit
1
which tor-gencert
||
exit
1
source
00-common.sh
function
get_fingerprint
{
dir
=
$1
[
-f
$dir
/torrc
]
||
exit
2
tor
--ignore-missing-torrc
-f
$dir
/torrc
--Address
8.8.8.8
\
--list-fingerprint
|
tail
-n
1 |
cut
-d
' '
-f
2-
\
|
sed
's|\ ||g'
}
function
get_v3ident
{
dir
=
$1
cert
=
$dir
/keys/authority_certificate
[
-f
$cert
]
||
exit
2
grep
fingerprint
$cert
|
cut
-d
' '
-f
2
}
next_ip
=
"1"
scanner_tor_socks_proxy_ip
=
""
scanner_tor_socks_proxy_nick
=
""
echo
-n
''
>
$auth_torrc_section
rm
-fr
auth?/ relay?/
exit
?/ config
*
.ini datadir/
*
.log
for
A
in
auth1 auth2 auth3
do
mkdir
-pv
$A
/keys
chmod
700
$A
ip
=
${
ip_space
}${
next_ip
}
[
"
$scanner_tor_socks_proxy_ip
"
==
""
]
&&
scanner_tor_socks_proxy_ip
=
"
$ip
"
[
"
$scanner_tor_socks_proxy_nick
"
==
""
]
&&
scanner_tor_socks_proxy_nick
=
"
$A
"
echo
-n
''
| tor-gencert
--create-identity-key
--passphrase-fd
0
-m
24
-a
$ip
:
$dirport
echo
"
DataDirectory
$A
PidFile
$A
/tor.pid
Log notice file
$A
/notice.log
ShutdownWaitLength 2
ExitRelay 0
AuthoritativeDirectory 1
V3AuthoritativeDirectory 1
Address
$ip
SocksPort
$ip
:
$socksport
ControlPort
$ip
:
$controlport
ControlSocket
$(
pwd
)
/
$A
/control_socket
CookieAuthentication 1
ORPort
$ip
:
$orport
DirPort
$ip
:
$dirport
Nickname
$A
ContactInfo pastly@torproject.org
"
>
$A
/torrc
mv
-v
authority_
*
$A
/keys/
fp
=
$(
get_fingerprint
$A
)
v3ident
=
$(
get_v3ident
$A
)
echo
"DirAuthority
$A
orport=
$orport
no-v2 v3ident=
$v3ident
$ip
:
$dirport
$fp
"
\
>>
$auth_torrc_section
next_ip
=
$((
next_ip+1
))
done
for
A
in
relay1 relay2 relay3 relay4 relay5 relay6 relay7
do
mkdir
-pv
$A
chmod
700
$A
ip
=
${
ip_space
}${
next_ip
}
echo
"
DataDirectory
$A
PidFile
$A
/tor.pid
Log notice file
$A
/notice.log
ShutdownWaitLength 2
ExitRelay 0
Address
$ip
SocksPort
$ip
:
$socksport
ControlPort
$ip
:
$controlport
ControlSocket
$(
pwd
)
/
$A
/control_socket
CookieAuthentication 1
ORPort
$ip
:
$orport
DirPort
$ip
:
$dirport
Nickname
$A
ContactInfo pastly@torproject.org
"
>
$A
/torrc
next_ip
=
$((
next_ip+1
))
done
for
A
in
exit1 exit2 exit3
do
mkdir
-pv
$A
chmod
700
$A
ip
=
${
ip_space
}${
next_ip
}
echo
"
DataDirectory
$A
PidFile
$A
/tor.pid
Log notice file
$A
/notice.log
ShutdownWaitLength 2
ExitRelay 1
IPv6Exit 1
ExitPolicy accept *:*
ExitPolicy reject *:*
Address
$ip
SocksPort
$ip
:
$socksport
ControlPort
$ip
:
$controlport
ControlSocket
$(
pwd
)
/
$A
/control_socket
CookieAuthentication 1
ORPort
$ip
:
$orport
DirPort
$ip
:
$dirport
Nickname
$A
ContactInfo pastly@torproject.org
"
>
$A
/torrc
next_ip
=
$((
next_ip+1
))
done
for
torrc
in
./auth
*
/torrc
do
echo
"
TestingV3AuthInitialVotingInterval 5
V3AuthVotingInterval 10
TestingV3AuthInitialVoteDelay 2
V3AuthVoteDelay 2
TestingV3AuthInitialDistDelay 2
V3AuthDistDelay 2
"
>>
$torrc
done
for
torrc
in
./
{
auth,relay,exit
}
*
/torrc
do
cat
$auth_torrc_section
>>
$torrc
echo
"
TestingTorNetwork 1
NumCPUs 1
LogTimeGranularity 1
SafeLogging 0
"
>>
$torrc
done
rm
$auth_torrc_section
# Get a random port between 2000 and 62000 while handling the fact that $RANDOM
# doesn't go up that high
sbws_server_port
=
$((
((
RANDOM
<<
15
)|RANDOM) % 60000 + 2000 ))
echo "
[paths]
datadir =
\$
{sbws_home}/datadir
sbws_home =
$(
pwd
)
[tor]
control_type = socket
control_location =
\$
{paths:sbws_home}/
$scanner_tor_socks_proxy_nick
/control_socket
socks_host =
$scanner_tor_socks_proxy_ip
socks_port =
$socksport
[scanner]
nickname = SbwsTestnetScanner
measurement_threads = 4
download_toofast = 0.1
download_min = 1
download_target = 2
download_max = 5
num_rtts = 5
num_downloads = 3
[server]
bind_ip =
$sbws_server_host
bind_port =
$sbws_server_port
[server.passwords]
scanner1 = 9Xa9Ulp9bD5GGLuFm6XYZBtc2VhWQlJgpRRF9SpmfoujrFwdRwBizpqcSMHix6Jc
scanner2 = gNeJoOiB7eya7QrpjtxlwSQO42eXazawJIEh5BbKJ1pZ0RFxT45Rbqv28wWyD4pk
scanner3 = Onqr54A6xavBV5yxd4KCNPIl5mR6UdnAb21XX8t3kbEvTd28o6HQxFA2Gim8kxil
[helpers]
exit1 = on
exit2 = on
exit3 = on
[helpers.exit1]
relay =
$(
get_fingerprint exit1
)
server_host =
$sbws_server_host
server_port =
$sbws_server_port
password = gNeJoOiB7eya7QrpjtxlwSQO42eXazawJIEh5BbKJ1pZ0RFxT45Rbqv28wWyD4pk
[helpers.exit2]
relay =
$(
get_fingerprint exit2
)
server_host =
$sbws_server_host