aboutsummaryrefslogtreecommitdiff
path: root/template/tutorial-macos.html.j2
blob: 8bca8f508bdb5a4f74dce325e9db06bc37d08972 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
{% extends "common/base.j2" %}
{% block body_content %}
<div class="container">

  <h2>{{ _("Tutorial: GNUnet on macOS 10.14 (Mojave)") }}</h2>

  <h3>{{ _("Introduction") }}</h3>

  <p>
    Welcome to the hopefully painless GNUnet tutorial for macOS Mojave! It provides
    concrete instructions on how to install a current
    version of GNUnet. The goal is to support newcomers, either end users or
    developers, who want to get in touch with GNUnet for the first time. After
    installing GNUnet we will make sure that out new GNUnet installation is working
    correctly.
  </p>

  <h3>{{ _("Installation through homebrew") }}</h3>


  <h4>{{ _("Requirements") }}</h4>

  <p>
    First, install <a href="https://brew.sh">homebrew</a> and <a href="https://developer.apple.com/xcode/">XCode</a>.
    GNUnet is not yet in the official homebrew repos (we are working on it).
    So, you need to grab the formula from <a href="https://git.gnunet.org/gnunet.git/tree/contrib/gnunet.rb">here</a>
    and put it under the homebrew formula folder:
  </p><
  <code>
    $ cp gnunet.rb $(brew --repo homebrew/core)/Formula
  </code>

  <p>
    Then install:
  </p>

  <code>
    $ brew install gnunet
  </code>

  <p> If you want to install GNUnet from git, execute:</p>

  <code>
    $ brew install --HEAD gnunet
  </code>

  <h3>{{ _("Installation from source") }}</h3>

  <p>
    The following instructions are only really interesting for developers
    or if you need special build switches as you can install from git
    using homebrew (see above).<br/>
    First, install the dependencies:
  </p>

  <code>
    $ brew install git autoconf automake glpk gettext gnutls jansson libextractor libgcrypt libffi libidn2 libmicrohttpd libmpc libtool libunistring pkg-config unbound
  </code>

  <p>
    Next, create a directory in your. This directory is where we store
    the source code later. You should keep this directory after
    installation because it contains Makefiles that can be used for
    uninstalling GNUnet again (see chapter *Uninstall GNUnet and its
    dependencies*).
  </p>

  <code>
    $ mkdir ~/gnunet
  </code>

  <h4>{{ _("Get the source code") }}</h4>

  <code>
    $ cd ~<br>
    $ git clone --depth 1 https://gnunet.org/git/gnunet.git gnunet_src<br>
  </code>

  <h4>{{ _("Compile and Install") }}</h4>


  <p>
    You have a choice between two options:
    build the *production version* or *development version*. If
    you want to start writing GNUnet applications or join the GNUnet development
    choose the development version (it will print more debug output and contains
    debug symbols that can be displayed with a debugger). Otherwise choose the
    production version.
  </p>
  
  <h5>{{ _("Option 1: GNUnet for production / usage") }}</h5>

  <code>
  $ cd ~/gnunet_src<br>
  $ ./bootstrap<br>
  $ export GNUNET_PREFIX=~/gnunet<br>
  $ ./configure --prefix=$GNUNET_PREFIX --disable-documentation<br>
  </code>
  <p>
  You might see configure failing telling you that it ``cannot run C compiled programs.''.
  In this case, you might need to open/run Xcode once and you will be prompted to
  install additonal packages.
  Then, you might have to manually install the command line tools from here https://developer.apple.com/download/more/ (you need an Apple ID for this).
  Install those and execute
  </p>
  <code>
  $ open /Library/Developer/CommandLineTools/Packages/macOS_SDK_headers_for_macOS_10.14.pkg
  </code>
  <p>
    After configure passes, you need to add a 'gnunetdns' group using the macOS system preferences.
  Further, you need to add a user 'gnunet'. Then:
  </p>
  <code>
  $ make<br>
  $ sudo make install
  </code>

  <h5>{{ _("Option 2: GNUnet experimental") }}</h5>

  <p>
  Perform the same steps as for Option 1, but add the configure flat '--enable-experimental'
  </p>
  <!--
  <h4>{{ _("Install GNUnet plugin for name resolution") }}</h4>

  <p>
  Congratulations! GNUnet is now installed! Before we start it we
  need to create a configuration file. By default GNUnet looks in
  our home directory for the file `~/.gnunet/gnunet.conf`. We can
  start with an empty file for now:
  </p>

  <code>
  $ touch ~/.config/gnunet.conf
  </code>

  <p>
  Now we can start it with the command line tool
  `gnunet-arm` (Automatic Restart Manager).
  </p>

  <code>
  $ gnunet-arm -s
  </code>

  <p>
  It starts the default GNUnet services. We can list them with the
  `-I` option:
  </p>

  <code>
  $ gnunet-arm -I<br>
  Running services:<br>
  ats (gnunet-service-ats)<br>
  revocation (gnunet-service-revocation)<br>
  set (gnunet-service-set)<br>
  nat (gnunet-service-nat)<br>
  transport (gnunet-service-transport)<br>
  peerstore (gnunet-service-peerstore)<br>
  hostlist (gnunet-daemon-hostlist)<br>
  identity (gnunet-service-identity)<br>
  namecache (gnunet-service-namecache)<br>
  peerinfo (gnunet-service-peerinfo)<br>
  datastore (gnunet-service-datastore)<br>
  zonemaster (gnunet-service-zonemaster)<br>
  zonemaster-monitor (gnunet-service-zonemaster-monitor)<br>
  nse (gnunet-service-nse)<br>
  cadet (gnunet-service-cadet)<br>
  dht (gnunet-service-dht)<br>
  core (gnunet-service-core)<br>
  gns (gnunet-service-gns)<br>
  statistics (gnunet-service-statistics)<br>
  topology (gnunet-daemon-topology)<br>
  fs (gnunet-service-fs)<br>
namestore (gnunet-service-namestore)<br>
vpn (gnunet-service-vpn)
  </code>

  <p>
  For stopping GNUnet again we can use the `-e` option.
  </p>

  <code>
  $ gnunet-arm -e
  </code>


  <h3>{{ _("Make sure it works") }}</h3>

  <p>
  Let's try out some of GNUnet's use cases. Some should be done
  before others:
  </p>

  <ul>
  <li>filesharing</li>
  <li>A simple chat using CADET</li>
  <li>Name resolution using GNS on the command line</li>
  <li>Name resolution using GNS with a browser (do it on the command line first)</li>
  <li>Serving a website using VPN (do name resolution with a browser first)</li>
  </ul>

  <h4>{{ _("filesharing") }}</h4>

  <p>
  Let's publish a file in the GNUnet filesharing network. We use the keywords
  ("commons" and "state") so other people will be able to search for the file.
  </p>

  <p>
  We can choose any file and describe it with meaningful keywords (using the
                                                                   `-k` command line option).
  </p>

  <code>
  $ gnunet-publish -k commons -k state ostrom.pdf<br>
  Publishing `/home/myself/ostrom.pdf' done.<br>
  URI is `gnunet://fs/chk/M57SXDJ72EWS25CT6307KKJ8K0GCNSPTAZ649NA1NS10MJB4A1GZ9EN4Y02KST9VA5BHE8B335RPXQVBWVZ587Y83WQ7J3DHMBX30Q8.DHNGBN4CB2DBX1QRZ1R0B1Q18WTEAK4R94S9D57C9JMJJ3H7SSQDCV4D1218C4S2VP085AMQQSMG18FCP6NQMZQZJ91XR5NBX7YF0V0.42197237'.
  </code>


  <p>Finding the file by keyword works with `gnunet-search`.</p>

  <code>
  $ gnunet-search commons<br>
#1:<br>
  gnunet-download -o "ostrom.pdf" gnunet://fs/chk/M57SXDJ72EWS25CT6307KKJ8K0GCNSPTAZ649NA1NS10MJB4A1GZ9EN4Y02KST9VA5BHE8B335RPXQVBWVZ587Y83WQ7J3DHMBX30Q8.DHNGBN4CB2DBX1QRZ1R0B1Q18WTEAK4R94S9D57C9JMJJ3H7SSQDCV4D1218C4S2VP085AMQQSMG18FCP6NQMZQZJ91XR5NBX7YF0V0.42197237
  </code>

  <p>
  It gives us the command line call to download the file (and store it as
                                                          ostrom.pdf)!
  </p>

  <h4>{{ _("CADET (and Chat)") }}</h4>

  <p>
  We can use the `gnunet-cadet` command line tool to open a port and from
  another machine connect to this port and chat or transfer data. First we need
  our *peer ID* of the GNUnet peer opening the port.
  </p>

  <code>
  $ gnunet-peerinfo -s<br>
  I am peer `P4T5GHS1PCZ06R82D3KW8Z8J1113BQZWAWGYHTZ8G1ZXMWXQGAVG'.
  </code>


  <p>
  Now we open the port (it can be any string!):
    </p>

      <code>
      $ gnunet-cadet -o my-secret-port
      </code>

      <p>
      On the other machine we can connect using the peer ID and the port
      and start chatting!
      </p>

      <code>
      $ gnunet-cadet P4T5GHS1PCZ06R82D3KW8Z8J1113BQZWAWGYHTZ8G1ZXMWXQGAVG my-secret-port
      </code>

      <h4>{{ _("Name resolution using GNS on the command line") }}</h4>

      <p>
      GNS is the GNU name service, a fully decentralized alternatice to
      DNS. We'll publish an IP address in a GNS record try to resolve it
      on the command line. First we need an identity which is the
      equivalent to a zone in DNS. We'll call it "myself" and create it
      using the `gnunet-identity` command line tool. Instead of "myself"
      you can surely use your nick or any other name.
      </p>

      <code>
      $ gnunet-identity -C myself
      </code>

      <p>
      We can check if it worked using the same tool. We expect the name
      of our identity and the corresponding public key to be
      displayed.
      </p>

      <code>
      $ gnunet-identity -d<br>
      myself - HWTYD3P5D77JVFNVMZ1M5T10V4SZYNMY3PCGQCSVENKD6ZCRKPMG
      </code>

      <p>
      Now we add a public `A` record to our zone. It has the name "ccc", a value
      of "195.54.164.39" and it expires after one day.
      </p>

      <code>
      $ gnunet-namestore -z myself -a -e "1 d" -p -t A -n ccc -V 195.54.164.39
      </code>

      <p>
      Now we can query that record using the command line tool `gnunet-gns`.
      </p>

      <code>
      $ gnunet-gns -t A -u ccc.myself<br>
      ccc.myself:<br>
      Got `A' record: 195.54.164.39
      </code>

      <p>
      So it worked! But only resolving our own records is boring. So we
      can give our identity (the public key of it to be precise) to
      someone else so they can try to resolve our records, too. The
      other person (Bob) has to add it to his namestore like this:
      <p>

      <code>
      $ gnunet-namestore -z myself -a -e never -p -t PKEY -n alice -V HWTYD3P5D77JVFNVMZ1M5T10V4SZYNMY3PCGQCSVENKD6ZCRKPMG
      </code>

      <p>
      Our identity in Bobs namestore is a public record (-p) and never
      expires (-e never). Now Bob (let's assume he has called his identity
                                   myself, too) should be able to resolve our "ccc" record, too!
      </p>

      <code>
      $ gnunet-gns -t A -u ccc.alice.myself<br>
      ccc.alice.myself:<br>
      Got `A' record: 195.54.164.39
      </code>

      <p>
      It can continue like this. A friend of Bob would be able to
      resolve our records too because Bob published our identity in a
      public record. Bobs friend would simply use "ccc.alice.bob.myself"
      to resolve our "ccc" record.
      </p>


      <h4>{{ _("Name resolution using GNS with a browser") }}</h4>

      <p>
      In the previous use case "Name resolution using GNS on the
      command line" we got an idea about what GNS is about, but now
      let's use it with a browser, to make it actually useful. Currently
      Firefox and Chromium are known to work.
      </p>

      <p>
      Many websites enforce HTTPS and thus provide certificates for
      their hostnames (and not our GNS names). Browsers don't like wrong
      hostnames in certificates and will present error messages. So
      GNUnet has to trick them by generating own certificates for our
      GNS names. This means we need to create our own certificate
      authority and tell our browser about it. Luckily there's a script
      for it:
      </p>

      <code>
      $ gnunet-gns-proxy-setup-ca 
      </code>

      <p>
      After executing this script the Browser has to be restarted.
      </p>

      <p>
      GNUnet provides a proxy service (gnunet-gns-proxy) that the
      browser can send DNS and HTTP traffic to. It will try to resolve
      names with GNS first and forward the rest of the DNS traffic to
      the system's DNS resolver. It will also take care of the HTTP
      traffic, so the browser gets valid certificates and the web server
      will not be confused by our GNS hostnames. Our GNS namestore
      doesn't know about any DNS hostnames yet, so we have to store
      them, too. For our "ccc" A record, we have to store a LEHO (legacy
                                                                  hostname) record, too. It must contain the website's original DNS
      hostname:
      </p>

      <code>
      $ gnunet-namestore -z myself -a -e "1 d" -p -t LEHO -n ccc -V www.ccc.de
      </code>

      <p>
      Now let's start gnunet-gns-proxy.
      </p>

      <code>
      $ /usr/lib/gnunet/libexec/gnunet-gns-proxy
      </code>

      <p>
      Our browser has to be configured so it uses our proxy. In Firefox
      we have to set these options under "about:config":
      </p>

      <code>
      network.proxy.socks:            localhost<br>
      network.proxy.socks_port:       7777<br>
      network.proxy.socks_remote_dns  true<br>
      network.proxy.type:             1
      </code>

      <p>
      To tell Chromium to use the proxy, it has to be started with the
      "--proxy-server" command line option:
      </p>

      <code>
      $ chromium --proxy-server="socks5://127.0.0.1:7777"
      </code>

      <p>
      Now we should be able to resolve our GNS names in the browser! We
      just have to type "https://ccc.myself" into the address bar. If
      our friend Bob prepared his system, too, he can resolve our record
      by typing "ccc.alice.myself".
      </p>


      <h4>{{ _("VPN") }}</h4>

      <p>
      TBD
      </p>

      <h3>{{ _("Uninstall GNUnet and its dependencies") }}</h3>

      <code>
      $ cd ~/gnunet_installation/gnunet<br>
      $ sudo make uninstall<br>
      $ cd ~/gnunet_installation/libmicrohttpd<br>
      $ sudo make uninstall<br>
      $ sudo apt remove git libtool autoconf autopoint build-essential libgcrypt-dev libidn11-dev zlib1g-dev libunistring-dev libglpk-dev miniupnpc libextractor-dev libjansson-dev libcurl4-gnutls-dev libsqlite3-dev<br>
      $ sudo apt autoremove<br>
      $ sudo userdel -r gnunet<br>
      $ sudo groupdel gnunet<br>
      $ sudo groupdel gnunetdns<br>
      $ sudo mv /etc/nsswitch.conf.original /etc/nsswitch.conf<br>
      $ sudo rm /lib/$(uname -m)-linux-gnu/libnss_gns.so.2
      </code>

      <h3>{{ _("Appendix A: Optional GNUnet features") }}</h3>

      <p>
      TBD
      </p>

      <h3>{{ _("Troubleshooting") }}</h3>

      <h4>{{ _("You can't reach other people's nodes") }}</h4>

      <p>
      Should our computer not have reached the open GNUnet network automatically,
      we can manually instruct our node how to reach the nodes of our friends. This
      works by exchanging HELLO strings. This is how we get a hello string for our
      computer.
      </p>

      <code>
      $ gnunet-peerinfo -gn
      </code>

      <p>
      We can now pass this string to our friends "out of band" (using
                                                                whatever existing chat or messaging technology). If the string
      contains some private IP networks we don't want to share, we can
      carefully edit them out.
      </p>

      <p>
      Once we receive such strings from our friends, we can add them
      like this:
      </p>

      <code>
      gnunet-peerinfo -p <string>
      </code>


      <p>
      Now our GNUnet nodes can attempt reaching each other directly. This may
      still fail due to NAT traversal issues.
      </p>


      <!--
      <h4>{{ _("OMG you guys broke my internet") }}</h4>

      <p>
      We can replace `/etc/nsswitch.conf` with the backup we made earlier
      (`/etc/nsswitch.conf.original`). Now DNS resolution should work again without a
      running GNUnet.
      </p>

      <code>
      $ cp /etc/nsswitch.conf.original /etc/nsswitch.conf
      </code>
      -->

      </div>
{% endblock body_content %}