commit 2663148a92fec38ae86cf5738a5ba4af13700152 Author: Nick Mathewson nickm@torproject.org Date: Wed Jun 17 15:13:12 2020 -0400
Make sure hs-v3-ipv6 has enough authorities too. --- networks/hs-v3-ipv6 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/networks/hs-v3-ipv6 b/networks/hs-v3-ipv6 index 0ea857b..a363991 100644 --- a/networks/hs-v3-ipv6 +++ b/networks/hs-v3-ipv6 @@ -20,7 +20,7 @@ HS6 = Node(tag="h", hs=1, torrc="hs-v3-only-v6.tmpl") # connections: # a minimum path length of 3, plus the client-nominated rendezvous point, # plus a seperate introduction point -NODES = Authority6.getN(2) + NonExitRelay6.getN(3) + \ +NODES = Authority6.getN(3) + NonExitRelay6.getN(3) + \ Client.getN(1) + Client6.getN(1) + HS6.getN(1)
ConfigureNodes(NODES)