Browse Source

Instructions for connecting to irc via onion address

Bob Mottram 9 years ago
parent
commit
6f8854d1ee
1 changed files with 25 additions and 0 deletions
  1. 25
    0
      doc/EN/usage.org

+ 25
- 0
doc/EN/usage.org View File

@@ -172,6 +172,31 @@ If you are using the [[http://www.irssi.org][irssi]] IRC client then you can use
172 172
 /connect yourdomainname
173 173
 /join freedombone
174 174
 #+END_SRC
175
+
176
+You can also connect via Tor, and this will help to protect your metadata from mass surveillance and will also allow you to connect even if you are behind a hostile firewall. Note however, that connecting to popular servers such as Freenode is hard to do via Tor (they may block exit nodes to try to stop trolls), so you might want to have a special irssi config file for only connecting to your server.
177
+
178
+Look up the onion address for IRC on your Freedombone system.
179
+
180
+#+BEGIN_SRC bash
181
+ssh username@domain -p 2222
182
+sudo control
183
+#+END_SRC
184
+
185
+Go to the /About/ screen and look for the IRC onion address, then exit back to your local system.
186
+
187
+#+BEGIN_SRC bash
188
+exit
189
+#+END_SRC
190
+
191
+Once you know the onion address for the IRC server you can then connect to it with:
192
+
193
+#+BEGIN_SRC bash
194
+usewithtor irssi
195
+/server add -auto myaddress.onion 6697
196
+/ignore * CTCPS
197
+/connect myaddress.onion
198
+/join freedombone
199
+#+END_SRC
175 200
 *** XChat
176 201
 If you are using the XChat client:
177 202