128-bridge-families.txt 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. Filename: 128-bridge-families.txt
  2. Title: Families of private bridges
  3. Author: Roger Dingledine
  4. Created: 2007-12-xx
  5. Status: Dead
  6. 1. Overview
  7. Proposal 125 introduced the basic notion of how bridge authorities,
  8. bridge relays, and bridge users should behave. But it doesn't get into
  9. the various mechanisms of how to distribute bridge relay addresses to
  10. bridge users.
  11. One of the mechanisms we have in mind is called 'families of bridges'.
  12. If a bridge user knows about only one private bridge, and that bridge
  13. shuts off for the night or gets a new dynamic IP address, the bridge
  14. user is out of luck and needs to re-bootstrap manually or wait and
  15. hope it comes back. On the other hand, if the bridge user knows about
  16. a family of bridges, then as long as one of those bridges is still
  17. reachable his Tor client can automatically learn about where the
  18. other bridges have gone.
  19. So in this design, a single volunteer could run multiple coordinated
  20. bridges, or a group of volunteers could each run a bridge. We abstract
  21. out the details of how these volunteers find each other and decide to
  22. set up a family.
  23. 2. Other notes.
  24. somebody needs to run a bridge authority
  25. it needs to have a torrc option to publish networkstatuses of its bridges
  26. it should also do reachability testing just of those bridges
  27. people ask for the bridge networkstatus by asking for a url that
  28. contains a password. (it's safe to do this because of begin_dir.)
  29. so the bridge users need to know a) a password, and b) a bridge
  30. authority line.
  31. the bridge users need to know the bridge authority line.
  32. the bridge authority needs to know the password.
  33. 3. Current state
  34. I implemented a BridgePassword config option. Bridge authorities
  35. should set it, and users who want to use those bridge authorities
  36. should set it.
  37. Now there is a new directory URL "/tor/networkstatus-bridges" that
  38. directory mirrors serve if BridgeAuthoritativeDir is set and it's a
  39. begin_dir connection. It looks for the header
  40. Authorization: Basic %s
  41. where %s is the base-64 bridge password.
  42. I never got around to teaching clients how to set the header though,
  43. so it may or may not, and may or may not do what we ultimate want.
  44. I've marked this proposal dead; it really never should have left the
  45. ideas/ directory. Somebody should pick it up sometime and finish the
  46. design and implementation.