commit f5745c80ad6ef6072f42b56c9b6ab3e54a98355f Author: teor teor2345@gmail.com Date: Tue Feb 20 10:51:54 2018 +1100
Add a bwscanner network for testing bandwidth authorities
Closes #25228. Patch by juga. --- networks/bwscanner | 10 ++++++++++ 1 file changed, 10 insertions(+)
diff --git a/networks/bwscanner b/networks/bwscanner new file mode 100644 index 0000000..8ed1789 --- /dev/null +++ b/networks/bwscanner @@ -0,0 +1,10 @@ +# By default, Authorities are not configured as exits +Authority = Node(tag="a", authority=1, relay=1, torrc="authority.tmpl") +NonExitRelay = Node(tag="m", relay=1, torrc="relay-non-exit.tmpl") +ExitRelay = Node(tag="r", relay=1, exit=1, torrc="relay.tmpl") +Client = Node(tag="c", client=1, torrc="client_bwscanner.tmpl") + +NODES = Authority.getN(3) + \ + NonExitRelay.getN(21) + ExitRelay.getN(3) + Client.getN(1) + +ConfigureNodes(NODES)
tor-commits@lists.torproject.org