128-bridge-families.txt 2.4 KB

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