bridges+ipv6+hs-v2 1.1 KB

123456789101112131415161718192021222324
  1. Require("IPV6")
  2. # By default, Authorities are not configured as exits
  3. Authority = Node(tag="a", authority=1, relay=1, torrc="authority.tmpl")
  4. ExitRelay = Node(tag="r", relay=1, exit=1, torrc="relay.tmpl")
  5. Client = Node(tag="c", client=1, torrc="client.tmpl")
  6. BridgeAuthority = Node(tag="ba", authority=1, bridgeauthority=1,
  7. relay=1, torrc="bridgeauthority.tmpl")
  8. Bridge = Node(tag="br", bridge=1, relay=1, torrc="bridge.tmpl")
  9. BridgeIPv6 = Node(tag="br", bridge=1, relay=1, ipv6_addr="[::1]", torrc="bridge-v6.tmpl")
  10. BridgeClient = Node(tag="bc", client=1, bridgeclient=1, torrc="bridgeclient.tmpl")
  11. HSv2 = Node(tag="h", hs=1, torrc="hs-v2.tmpl")
  12. # We need 5 authorities/relays/exits to ensure we can build HS connections
  13. # We put the IPv6 bridge first to ensure that clients try IPv6 before IPv4
  14. # Unfortunately, this does not prevent clients falling back to IPv4
  15. # bridges+ipv6-min only has IPv6 bridges
  16. NODES = Authority.getN(3) + BridgeAuthority.getN(1) + \
  17. ExitRelay.getN(4) + \
  18. BridgeIPv6.getN(1) + Bridge.getN(1) + \
  19. Client.getN(1) + BridgeClient.getN(1) + \
  20. HSv2.getN(1)
  21. ConfigureNodes(NODES)