exit-v6.i 803 B

123456789101112131415161718192021
  1. # 1. Allow exiting to IPv6 localhost and private networks by default
  2. # ------------------------------------------------------------------
  3. IPv6Exit 1
  4. # Each IPv6 tor instance is configured with Address [::1] by default
  5. # This currently only applies to bridges
  6. ExitPolicy accept6 [::1]:*
  7. # If you only want tor to connect to localhost, disable these lines:
  8. # This may cause network failures in some circumstances
  9. ExitPolicyRejectPrivate 0
  10. ExitPolicy accept6 private:*
  11. # 2. Optionally: Accept all IPv6 addresses, that is, the public internet
  12. # ----------------------------------------------------------------------
  13. # ExitPolicy accept6 *:*
  14. # 3. Finally, reject all IPv6 addresses which haven't been permitted
  15. # ------------------------------------------------------------------
  16. ExitPolicy reject6 *:*