exit-v6.i 860 B

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