common.i 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. TestingTorNetwork 1
  2. ## Comprehensive Bootstrap Testing Options ##
  3. # These typically launch a working minimal Tor network in 25s-30s
  4. # See authority.tmpl for a partial explanation
  5. #AssumeReachable 0
  6. #Default PathsNeededToBuildCircuits 0.6
  7. #Disable TestingDirAuthVoteExit
  8. #Default V3AuthNIntervalsValid 3
  9. ## Rapid Bootstrap Testing Options ##
  10. # These typically launch a working minimal Tor network in 6s-10s
  11. # These parameters make tor networks bootstrap fast,
  12. # but can cause consensus instability and network unreliability
  13. # (Some are also bad for security.)
  14. AssumeReachable 1
  15. PathsNeededToBuildCircuits 0.25
  16. TestingDirAuthVoteExit *
  17. V3AuthNIntervalsValid 2
  18. ## Always On Testing Options ##
  19. # We enable TestingDirAuthVoteGuard to avoid Guard stability requirements
  20. TestingDirAuthVoteGuard *
  21. # We set TestingMinExitFlagThreshold to 0 to avoid Exit bandwidth requirements
  22. TestingMinExitFlagThreshold 0
  23. DataDirectory $dir
  24. RunAsDaemon 1
  25. ConnLimit $connlimit
  26. Nickname $nick
  27. ShutdownWaitLength 0
  28. PidFile ${dir}/pid
  29. Log notice file ${dir}/notice.log
  30. Log info file ${dir}/info.log
  31. # Turn this off to save space
  32. #Log debug file ${dir}/debug.log
  33. ProtocolWarnings 1
  34. SafeLogging 0
  35. DisableDebuggerAttachment 0
  36. ${authorities}