FAQ 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. The Onion Routing (TOR) Frequently Asked Questions
  2. --------------------------------------------------
  3. 1. General.
  4. 1.1. What is tor?
  5. Tor is an implementation of version 2 of Onion Routing.
  6. Onion Routing is a connection-oriented anonymizing communication
  7. service. Users build a layered block of asymmetric encryptions which
  8. describes a source-routed path through a set of nodes. Those nodes
  9. build a "virtual circuit," in which each node knows its predecessor and
  10. successor, but no others. Traffic flowing down the circuit is unwrapped
  11. by a symmetric key at each node which reveals the downstream node.
  12. Basically tor provides a distributed network of servers ('onion
  13. routers'). Users bounce their tcp streams (web traffic, ftp, ssh, etc)
  14. around the routers, and recipients, observers, and even the routers
  15. themselves have difficulty tracking the source of the stream.
  16. 1.2. Why's it called tor?
  17. Because tor is the onion routing system. I kept telling people I was
  18. working on onion routing, and they said "Neat. Which one?" Even if onion
  19. routing has become a standard household term, this is the actual onion
  20. routing project, started out of the Naval Research Lab.
  21. (Theories about recursive acronyms are ok too.)
  22. 2. Compiling and installing.
  23. [Read the README file for now; check back here once we've got packages/etc
  24. for you.]
  25. 3. Running tor.
  26. 3.1. What's this about roles? What kind of server should I run?
  27. The same executable ("or") functions as both client and server, depending
  28. on the value of the config variable named 'Role'. Role represents a
  29. combination of which tasks this particular tor server will do. The default
  30. Role (role 15) is an onion router: it listens for onion routers, listens
  31. for onion proxies, listens for application proxies, and it connects to
  32. all other onion routers it learns about. A directory server (role 63)
  33. does all of the above and also serves directory requests. A simple
  34. onion proxy, on the other hand (role 8), only listens for application
  35. proxies. See part 3.1 of the HACKING document for more technical details.
  36. 3.2. So I can just run a full onion router and join the network?
  37. No. Users should run just an onion proxy (use the 'oprc' config file).
  38. If you start up a full onion router, the rest of the routers in the
  39. system won't recognize you, so they will reject your handshake attempts.
  40. 3.3. How do I join the network then?
  41. If you just want to use the onion routing network, you can run a proxy
  42. and you're all set. If you want to run a router, you must convince
  43. the directory server operators (currently arma@mit.edu) that you're a
  44. trustworthy person. From there, the operators add you to the directory,
  45. which propagates out to the rest of the network. All nodes will know
  46. about you within an hour.
  47. 3.4. I want to run a directory server too.
  48. If you run a very reliable node, you plan to be around for a long time,
  49. and you want to spend some time ensuring that router operators are
  50. people we know and like, we may want you to run a directory server
  51. too. We must manually add you to the 'dirservers' file that's part of
  52. the distribution; users will only know about you when they upgrade to
  53. a new version. Of course, you can always just start up your router as a
  54. directory server too --- but users won't know to ask you for directories,
  55. and more importantly, you'll never learn from the real directory servers
  56. about recently joined routers.
  57. 4. Development.
  58. 4.1. Who's doing this?
  59. 4.2. Can I help?
  60. 4.3. I've got a bug.
  61. 5. Anonymity.
  62. 5.1. So I'm totally anonymous if I use tor?
  63. 5.2. Where can I learn more about anonymity?
  64. 6. Comparison to related projects.
  65. 6.1. Onion Routing.
  66. Tor *is* onion routing.
  67. 6.2. Freedom.
  68. 7. Protocol and application support.
  69. 7.1. http? ftp? udp? socks? mozilla?