Browse Source

Disable v3 onion services in mixed networks

This is a workaround until 23498 is implemented.
teor 6 years ago
parent
commit
99b7c5e8e8
1 changed files with 5 additions and 3 deletions
  1. 5 3
      networks/mixed+hs-v23

+ 5 - 3
networks/mixed+hs-v23

@@ -11,14 +11,16 @@ OldClient = Node(tag="cOLD", client=1, torrc="client.tmpl", tor=OLD_TOR)
 HSv2 = Node(tag="h", hs=1, torrc="hs.tmpl")
 OldHSv2 = Node(tag="hOLD", hs=1, torrc="hs.tmpl", tor=OLD_TOR)
 # Old tor versions don't have HSv3 support yet
-HSv3 = Node(tag="h", hs=1, torrc="hs-v3.tmpl")
+# And chutney doesn't know how to tell old clients to avoid v3 services
+# See 23498
+#HSv3 = Node(tag="h", hs=1, torrc="hs-v3.tmpl")
 
 # We need 8 authorities/relays/exits to ensure at least 2 get the guard flag
 # in 0.2.6
 NODES = Authority.getN(2) + OldAuthority.getN(2) + \
         Relay.getN(2) + OldRelay.getN(2) + \
         Client.getN(1) + OldClient.getN(1) + \
-        HSv2.getN(1) + OldHSv2.getN(1) + \
-        HSv3.getN(1)
+        HSv2.getN(1) + OldHSv2.getN(1)
+#        HSv3.getN(1)
 
 ConfigureNodes(NODES)