authority.i 1.4 KB

1234567891011121314151617181920212223242526272829303132
  1. AuthoritativeDirectory 1
  2. V3AuthoritativeDirectory 1
  3. ContactInfo auth${nodenum}@test.test
  4. # Speed up the consensus cycle as fast as it will go
  5. # Voting Interval can be:
  6. # 10, 12, 15, 18, 20, 24, 25, 30, 36, 40, 45, 50, 60, ...
  7. # Testing Initial Voting Interval can be:
  8. # 5, 6, 8, 9, or any of the possible values for Voting Interval,
  9. # as they both need to evenly divide 30 minutes.
  10. # If clock desynchronisation is an issue, use an interval of at least:
  11. # 18 * drift in seconds, to allow for a clock slop factor
  12. TestingV3AuthInitialVotingInterval 5
  13. V3AuthVotingInterval 10
  14. # VoteDelay + DistDelay must be less than VotingInterval
  15. TestingV3AuthInitialVoteDelay 2
  16. V3AuthVoteDelay 2
  17. TestingV3AuthInitialDistDelay 2
  18. V3AuthDistDelay 2
  19. # This is autoconfigured by chutney, so you probably don't want to use it
  20. #TestingV3AuthVotingStartOffset 0
  21. # Work around situations where the Exit, Guard and HSDir flags aren't being set
  22. # These flags are all set eventually, but it takes Guard up to ~30 minutes
  23. # We could be more precise here, but it's easiest just to vote everything
  24. # Clients are sensible enough to filter out Exits without any exit ports,
  25. # and Guards and HSDirs without ORPorts
  26. # If your tor doesn't recognise TestingDirAuthVoteExit/HSDir,
  27. # either update your chutney to a 2015 version,
  28. # or update your tor to a later version, most likely 0.2.6.2-final
  29. # See common.i in the Comprehensive/Rapid sections for the relevant options