ipv6-exit-min 560 B

12345678910111213
  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. IPv6ExitRelay = Node(tag="r", relay=1, exit=1, torrc="relay-exit-v6-only.tmpl")
  5. Client = Node(tag="c", client=1, torrc="client.tmpl")
  6. # Since only 25% of relays get the guard flag,
  7. # TestingDirAuthVoteGuard * may need to be used in small networks
  8. # The minimum number of authorities/relays/exits is 3, the minimum path length
  9. NODES = Authority.getN(2) + IPv6ExitRelay.getN(1) + Client.getN(1)
  10. ConfigureNodes(NODES)