lyrebird.1 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. .TH LYREBIRD 1 "2015-10-29"
  2. .SH NAME
  3. lyrebird \- pluggable transport proxy for Tor, implementing obfs4
  4. .SH SYNOPSIS
  5. .B lyrebird
  6. [\fIoptions\fR]
  7. .SH DESCRIPTION
  8. lyrebird is a tool that attempts to circumvent censorship by
  9. transforming the Tor traffic between the client and the bridge. This way
  10. censors, who usually monitor traffic between the client and the bridge,
  11. will see innocent-looking transformed traffic instead of the actual Tor
  12. traffic.
  13. .PP
  14. lyrebird implements the obfuscation protocols obfs2, obfs3,
  15. ScrambleSuit (client only), meek (client only) and obfs4.
  16. .PP
  17. lyrebird is currently only supported as a managed pluggable transport
  18. spawned as a helper process via the \fBtor\fR daemon.
  19. .SH OPTIONS
  20. .TP
  21. \fB\-h\fR, \fB\-\-help\fR
  22. Display usage information and exit.
  23. .TP
  24. \fB\-\-version\fR
  25. Display version information and exit.
  26. .TP
  27. \fB\-\-enableLogging\fR
  28. Enable logging.
  29. .TP
  30. \fB\-\-logLevel\fR=\fIlevel\fR
  31. Specify the maximum log severity to log out of "\fBERROR\fR", "\fBWARN\fR",
  32. "\fBINFO\fR", and "\fBDEBUG\fR".
  33. .TP
  34. \fB\-\-unsafeLogging\fR
  35. Disable the IP address scrubber when logging, storing personally identifiable
  36. information in the logs.
  37. .TP
  38. \fB\-\-obfs4\-distBias\fR
  39. When generating probability distributions for the obfs4 length and timing
  40. obfuscation, generate biased distributions similar to ScrambleSuit.
  41. .SH ENVIORNMENT
  42. lyrebird honors all of the enviornment variables as specified in the Tor
  43. Pluggable Transport Specification.
  44. .SH FILES
  45. .PP
  46. \fIDataDirectory\fR\fB/pt_state/lyrebird.log\fR
  47. .RS 4
  48. The log file, assuming logging is enabled.
  49. .RE
  50. .PP
  51. \fIDataDirectory\fR\fB/pt_state/obfs4_state.json\fR
  52. .RS 4
  53. The Bridge (server) auto-generated obfs4 bridge parameters file. This file
  54. will not be created if the administrator specifies them in the \fBtorrc\fR
  55. via a \fBServerTransportOptions\fR directive.
  56. .RE
  57. .PP
  58. \fIDataDirectory\fR\fB/pt_state/obfs4_bridgeline.txt\fR
  59. .RS 4
  60. The Bridge (server) obfs4 bridge's client parameters. This file is created
  61. and contains the \fBBridge\fR directive a client should add to their
  62. \fBtorrc\fR to connect to the running server's obfs4 instance.
  63. .RE
  64. .SH "CONFORMING TO"
  65. Tor Pluggable Transport Specification
  66. .SH NOTES
  67. Using the obfs4 protocol requires tor-0.2.5.x or later.
  68. .PP
  69. The obfs2 protocol is included for backwards compatibility purposes only, and
  70. should not be used in new deployments.
  71. .SH EXAMPLE
  72. To configure tor to be able to use obfs4 bridges (as a client), add lyrebird
  73. to the \fBtorrc\fR like thus:
  74. .PP
  75. .nf
  76. .RS
  77. # Use lyrebird to provide the obfs4 protocol.
  78. ClientTransportPlugin obfs4 exec /usr/bin/lyrebird
  79. .RE
  80. .fi
  81. .PP
  82. To configure tor to act as an obfs4 bridge (as the server), add lyrebird
  83. to the \fBtorrc\fR like thus:
  84. .PP
  85. .nf
  86. .RS
  87. #
  88. # In addition to the standard tor bridge configuration, add:
  89. #
  90. # Use lyrebird to provide the obfs4 protocol.
  91. ServerTransportPlugin obfs4 exec /usr/bin/lyrebird
  92. .RE
  93. .fi
  94. .SH "SEE ALSO"
  95. \fBtor (1), \fBtorrc (5), \fBobfsproxy (1), \fBobfs4proxy (1)