ipv6-exit-min 544 B

123456789101112
  1. # By default, Authorities are not configured as exits
  2. Authority = Node(tag="a", authority=1, relay=1, torrc="authority.tmpl")
  3. IPv6ExitRelay = Node(tag="r", relay=1, exit=1, torrc="relay-exit-v6-only.tmpl")
  4. Client = Node(tag="c", client=1, torrc="client.tmpl")
  5. # Since only 25% of relays get the guard flag,
  6. # TestingDirAuthVoteGuard * may need to be used in small networks
  7. # The minimum number of authorities/relays/exits is 3, the minimum path length
  8. NODES = Authority.getN(2) + IPv6ExitRelay.getN(1) + Client.getN(1)
  9. ConfigureNodes(NODES)