README 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617
  1. Welcome to GNUnet
  2. ToC
  3. ===
  4. * ToC
  5. * What is GNUnet?
  6. * Joining GNU
  7. * Dependencies
  8. o Build tools
  9. o Dependencies of GNUnet
  10. o Dependencies of optional components/functionality
  11. o Test suite dependencies
  12. o Recommended developer tools
  13. * Notes on setuid
  14. * Scope of Operating System support
  15. * How to install
  16. o binary packages
  17. o Building GNUnet from source
  18. o Notes on compiling from Git
  19. * Configuration
  20. * Usage
  21. * Hacking GNUnet
  22. * Running HTTP on port 80 and HTTPS on port 443
  23. * Further Reading
  24. * Stay tuned
  25. What is GNUnet?
  26. ===============
  27. GNUnet is peer-to-peer framework providing a network abstractions and
  28. applications focusing on security and privacy. So far, we have
  29. created applications for anonymous file-sharing, decentralized naming
  30. and identity management, decentralized and confidential telephony and
  31. tunneling IP traffic over GNUnet. GNUnet is currently developed by a
  32. worldwide group of independent free software developers. GNUnet is a
  33. GNU package (http://www.gnu.org/).
  34. This is an ALPHA release. There are known and significant bugs as
  35. well as many missing features in this release.
  36. GNUnet is free software released under the GNU Affero General Public
  37. License (v3 or later). For details see the COPYING file in this
  38. directory. If you fork this software, you MUST adjust GNUNET_AGPL_URL
  39. in src/include/gnunet_util_lib.h to point to the source code of your
  40. fork!
  41. Additional documentation about GNUnet can be found at
  42. https://gnunet.org/ and in the 'doc/' folder.
  43. Online documentation is provided at
  44. 'https://docs.gnunet.org' and 'https://tutorial.gnunet.org'.
  45. Joining GNU
  46. ===========
  47. This is a GNU program, developed by the GNU Project and part of the
  48. GNU Operating System. If you are the author of an awesome program and
  49. want to join us in writing Free Software, please consider making it an
  50. official GNU program and become a GNU maintainer. You can find
  51. instructions on how to do so at http://www.gnu.org/help/evaluation.
  52. We are looking forward to hacking with you!
  53. Dependencies:
  54. =============
  55. The dependencies for building GNUnet will require around 0.74 GiB
  56. diskspace. GNUnet itself will require 8 - 9.2 MiB depending on
  57. configuration.
  58. Build tools for compiling GNUnet from source:
  59. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  60. - gcc or clang
  61. - autoconf >= 2.69 (building from git)
  62. - automake >= 1.11.1 (building from git)
  63. - libtool >= 2.2
  64. - makeinfo >= 4.8
  65. - make[*3]
  66. - pkgconf or pkg-config
  67. - Texinfo >= 5.2 [*1]
  68. Direct dependencies of GNUnet:
  69. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  70. - Bash (for some scripts)
  71. - gettext
  72. - gnutls >= 3.2.12 (highly recommended a gnutls
  73. linked against libunbound)
  74. - curl (ideally built against gnutls) or gnurl:
  75. * libgnurl >= 7.35.0 (recommended, available from
  76. https://gnunet.org/en/gnurl.html)
  77. or
  78. * libcurl >= 7.35.0 (alternative to libgnurl)
  79. - libgcrypt >= 1.6
  80. - libunistring >= 0.9.2
  81. - libidn:
  82. * libidn2 (preferred)
  83. or
  84. * libidn >= 1.0
  85. - libmicrohttpd >= 0.9.63
  86. - libjansson
  87. - nss (certutil binary, for
  88. gnunet-gns-proxy-setup-ca)
  89. - openssl >= 1.0 (binary, used to generate
  90. X.509 certificate
  91. for gnunet-gns-proxy-setup-ca)
  92. - libltdl >= 2.2 (part of GNU libtool)
  93. - sqlite >= 3.8 (default database, required)
  94. - which (contrib/apparmor(?), gnunet-bugreport,
  95. and possibly more)
  96. - zlib
  97. - libsodium >= 1.0.17 (for elliptic curve cryptography)
  98. - certtool (gnutls or openssl) (certtool binary (for convenient
  99. installation of GNS proxy))
  100. Dependencies of optional components/functionality:
  101. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  102. - Database plugins (alternatives to sqlite):
  103. * mysql >= 5.1
  104. * postgres >= 9.5
  105. - Transport plugins:
  106. * bluez (bluetooth transport)
  107. - Conversation service:
  108. * libopus >= 1.0.1
  109. * libpulse >= 2.0
  110. * libogg >= 1.3.0
  111. - File-sharing metadata (highly recommended[*5]):
  112. * libextractor >= 0.6.1
  113. - NAT uPnP support:
  114. * miniupnpc
  115. - gnunet-qr (Read/write GNUnet URIs from/to QR codes):
  116. * libzbar >= 0.10
  117. - gnunet-bcd (GNS business card generator):
  118. * TeX Live >= 2012 (for gnunet-bcd[*])
  119. - Documentation:
  120. * TeX Live >= 2012 (for gnunet-bcd[*])
  121. * texi2mdoc (for automatic mdoc generation [*2], not
  122. the texi2mdoc script distributed with
  123. autogen but the texi2mdoc C application)
  124. - Attribute-Based Encryption (experimental):
  125. * libpbc >= 0.5.14
  126. * libgabe
  127. - PABC credential support
  128. * libpabc any (for re:claimID zero-knowledge privacy
  129. credentials)
  130. Additional dependencies to run the GNUnet testsuite:
  131. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  132. - Bash (for some tests[*4])
  133. - A Posix Shell (for some tests)
  134. - python >= 3.4 (3.4 and higher technically supported,
  135. at least python 3.7 tested to work)
  136. - base tools
  137. - mostly:
  138. - bc,
  139. - curl,
  140. - sed,
  141. - awk,
  142. - which
  143. Recommended software for developer tools:
  144. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  145. - awk (for linting tests)
  146. - Bash (for Docker and Vagrant)
  147. - grof (for linting of man pages)
  148. - mandoc (for linting of man pages, generation of
  149. html output of man pages (not part of
  150. the regular build))
  151. - perl5 (for some utilities)
  152. [*] Mandatory for compiling the info output of the documentation,
  153. a limited subset ('texlive-tiny' in Guix) is enough.
  154. [*1] The default configuration is to build the info output of the
  155. documentation, and therefore require texinfo. You can pass
  156. '--disable-documentation' to the configure script to change this.
  157. [*2] If you still prefer to have documentation, you can pass
  158. '--enable-texi2mdoc-generation' to build the mdocml ("mandoc")
  159. documentation (experimental stages in gnunet).
  160. If this proves to be reliable, we will
  161. include the mdocml output in the release tarballs.
  162. Contrary to the name, texi2mdoc does not require Texinfo,
  163. It is a standalone ISO C utility.
  164. [*3] GNU make introduced the != operator in version 4.0.
  165. GNU make was released in october 2013, reasonable to
  166. be widespread by now. If this is not working out for
  167. you, open a bug so that we can get a more portable
  168. fix in.
  169. [*4] We are committed to portable tools and solutions
  170. where possible. New scripts should be Posix sh
  171. compatible, current and older scripts are
  172. in the process of being rewritten to comply
  173. with this requirement.
  174. [*5] While libextractor ("LE") is optional, it is recommended to
  175. build gnunet against it. If you install it later,
  176. you won't benefit from libextractor.
  177. If you are a distributor, we recommend to split
  178. LE into basis + plugins rather than making LE
  179. an option as an afterthought by the user.
  180. LE itself is very small, but its dependency chain
  181. on first, second, third etc level can be big.
  182. There is a small effect on privacy if your LE build
  183. differs from one which includes all
  184. plugins (plugins are build as shared objects):
  185. if users publish a directory with a mixture of file
  186. types (for example mpeg, jpeg, png, gif) the
  187. configuration of LE could leak which plugins are
  188. installed for which filetypes are not providing
  189. more details.
  190. However, this leak is just a minor concern.
  191. Notes on setuid
  192. ===============
  193. For a correct functionality depending on the host OS, you need
  194. to run the equivalent of these steps after installation.
  195. Replace $(DESTDIR)$(libexecdir) with the appropriate paths,
  196. for example /usr/local/lib/gnunet/libexec/. Note that this
  197. obviously must be run as privileged user.
  198. chown root:root $(DESTDIR)$(libexecdir)/gnunet-helper-vpn
  199. chmod u+s $(DESTDIR)$(libexecdir)/gnunet-helper-vpn
  200. chown root:root $(DESTDIR)$(libexecdir)/gnunet-helper-transport-wlan
  201. chmod u+s $(DESTDIR)$(libexecdir)/gnunet-helper-transport-wlan
  202. chown root:root $(DESTDIR)$(libexecdir)/gnunet-helper-transport-bluetooth
  203. chmod u+s $(DESTDIR)$(libexecdir)/gnunet-helper-transport-bluetooth
  204. chown root $(DESTDIR)$(libexecdir)/gnunet-helper-dns
  205. chgrp $(GNUNETDNS_GROUP) $(DESTDIR)$(libexecdir)/gnunet-helper-dns
  206. chmod 4750 $(DESTDIR)$(libexecdir)/gnunet-helper-dns
  207. chgrp $(GNUNETDNS_GROUP) $(DESTDIR)$(libexecdir)/gnunet-service-dns
  208. chown gnunet:$(GNUNETDNS_GROUP) $(DESTDIR)$(libexecdir)/gnunet-service-dns
  209. chmod 2750 $(DESTDIR)$(libexecdir)/gnunet-service-dns
  210. chown root:root $(DESTDIR)$(libexecdir)/gnunet-helper-exit
  211. chmod u+s $(DESTDIR)$(libexecdir)/gnunet-helper-exit
  212. chown root:root $(DESTDIR)$(libexecdir)/gnunet-helper-nat-server
  213. chown root:root $(DESTDIR)$(libexecdir)/gnunet-helper-nat-client
  214. chmod u+s $(DESTDIR)$(libexecdir)/gnunet-helper-nat-server
  215. chmod u+s $(DESTDIR)$(libexecdir)/gnunet-helper-nat-client
  216. Scope of Operating System support
  217. =================================
  218. We actively support GNUnet on a broad range of Free Software Operating
  219. Systems.
  220. For proprietary Operating Systems, like for example Microsoft Windows
  221. or Apple OS X, we accept patches if they don't break anything for
  222. other Operating Systems.
  223. If you are implementing support for a proprietary Operating System,
  224. you should be aware that progress in our codebase could break
  225. functionality on your OS and cause unpredicted behavior we can
  226. not test. However, we do not break support on Operating Systems
  227. with malicious intent.
  228. Regressions which do occur on these Operating Systems are 3rd
  229. class issues and we expect users and developers of these
  230. Operating Systems to send proposed patches to fix regressions.
  231. For more information about our stand on some of the motivating
  232. points here, read the 'Philosophy' Chapter of our handbook.
  233. How to install?
  234. ===============
  235. binary packages
  236. ~~~~~~~~~~~~~~~
  237. We recommend to use binary packages provided by the package manager integrated
  238. within your Operating System. GNUnet is reportedly available for at least:
  239. ALT Linux, Archlinux, Debian, Deepin, Devuan, GNU Guix, Hyperbola,
  240. Kali Linux, LEDE/OpenWRT, Manjaro, Nix, Parabola, Pardus, Parrot,
  241. PureOS, Raspbian, Rosa, Trisquel, and Ubuntu.
  242. If GNUnet is available for your Operating System and it is missing,
  243. send us feedback so that we can add it to this list. Furthermore, if
  244. you are interested in packaging GNUnet for your Operating System,
  245. get in touch with us at gnunet-developers@gnu.org if you require
  246. help with this job.
  247. If you were using an Operating System with the apt package manager,
  248. GNUnet could be installed as simple as:
  249. $ apt-get install gnunet
  250. Generic installation instructions are in the INSTALL file in this
  251. directory.
  252. Building GNUnet from source
  253. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  254. IMPORTANT: You can read further notes about compilation from source in
  255. the handbook under doc/handbook/, which includes notes about specific
  256. requirements for operating systems as well. If you are a package
  257. maintainer for an Operating System we invite you to add your notes if
  258. you feel it is necessary and can not be covered in your Operating
  259. System's documentation.
  260. Two prominent examples which currently lack cross-compilation
  261. support in GNUnet (and native binaries) are MS Windows and Apple macOS.
  262. For macOS we recommend you to do the build process via Homebrew and a
  263. recent XCode installation. We don't recommend using GNUnet with any
  264. recent MS Windows system as it officially spies on its users (according
  265. to its T&C), defying some of the purposes of GNUnet.
  266. Note that some functions of GNUnet require "root" access. GNUnet will
  267. install (tiny) SUID binaries for those functions is you run "make
  268. install" as root. If you do not, GNUnet will still work, but some
  269. functionality will not be available (including certain forms of NAT
  270. traversal).
  271. GNUnet requires the GNU MP library (https://www.gnu.org/software/gmp/)
  272. and libgcrypt (https://www.gnupg.org/). You can specify the path to
  273. libgcrypt by passing "--with-gcrypt=PATH" to configure. You will also
  274. need either sqlite (http://www.sqlite.org/), MySQL
  275. (http://www.mysql.org/) or PostGres (http://www.postgres.org/).
  276. If you install from source, you need to install GNU libextractor first
  277. (download from https://www.gnu.org/software/libextractor/). We also
  278. recommend installing GNU libmicrohttpd (download from
  279. https://www.gnu.org/software/libmicrohttpd/). Furthermore we recommend
  280. libgnurl (from https://gnunet.org/en/gnurl.html).
  281. Then you can start the actual GNUnet compilation process with:
  282. $ export GNUNET_PREFIX=/usr/local/lib # or other directory of your choice
  283. # addgroup gnunetdns
  284. # adduser --system --home "/var/lib/gnunet" --group gnunet --shell /bin/sh
  285. # ./configure --prefix=$GNUNET_PREFIX/.. --with-extractor=$LE_PREFIX
  286. $ make
  287. And finally install GNUnet with:
  288. # make install
  289. Complete the process by either adjusting one of our example service files
  290. in 'contrib/services' or by running:
  291. # sudo -u gnunet gnunet-arm -s
  292. Note that you must read paragraph "Notes on setuid", which documents steps you
  293. have to follow after the installation, as a privileged user. We require some
  294. binaries to be setuid. The most portable approach across all supported
  295. platforms and targets is to let this be handled manually.
  296. The installation will work if you do not run these steps as root, but some
  297. components may not be installed in the perfect place or with the right
  298. permissions and thus won't work.
  299. This will create the users and groups needed for running GNUnet
  300. securely and then compile and install GNUnet to $GNUNET_PREFIX/../bin/,
  301. $GNUNET_PREFIX/ and $GNUNET_PREFIX/../share/ and start the system
  302. with the default configuration. It is strongly recommended that you
  303. add a user "gnunet" to run "gnunet-arm". You can then still run the
  304. end-user applications as another user.
  305. If you create a system user "gnunet", it is recommended that you edit
  306. the configuration file slightly so that data can be stored in the
  307. system user home directory at "/var/lib/gnunet". Depending on what
  308. the $HOME-directory of your "gnunet" user is, you might need to set
  309. the SERVICEHOME option in section "[PATHS]" to "/var/lib/gnunet" to
  310. do this. Depending on your personal preferences, you may also want to
  311. use "/etc/gnunet.conf" for the location of the configuration file in
  312. this case (instead of ~gnunet/.config/gnunet.conf"). In this case,
  313. you need to start GNUnet using "gnunet-arm -s -c /etc/gnunet.conf" or
  314. set "XDG_CONFIG_HOME=/etc/".
  315. You can avoid running 'make install' as root if you have extensive sudo rights
  316. (can run "chmod +s" and "chown" via 'sudo'). If you run 'make install' as a
  317. normal user without sudo rights (or the configure option), certain binaries
  318. that require additional privileges will not be installed properly (and
  319. autonomous NAT traversal, WLAN, DNS/GNS and the VPN will then not work).
  320. If you run 'configure' and 'make install' as root, GNUnet's build system will
  321. install "libnss_gns*" libraries to "/lib/" regardless (!) of the
  322. $GNUNET_PREFIX you might have specified, as those libraries must be in
  323. "/lib/". If you are packaging GNUnet for binary distribution, this may cause
  324. your packaging script to miss those plugins, so you might need to do some
  325. additional manual work to include those libraries in your binary package(s).
  326. Similarly, if you want to use the GNUnet Name System and did NOT run
  327. GNUnet's 'make install' process with privileged rights, the libraries will be
  328. installed to "$GNUNET_PREFIX" and you will have to move them to "/lib/"
  329. manually.
  330. Notes on compiling from Git
  331. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  332. Finally, if you are compiling the code from git, you have to
  333. run "sh ./bootstrap" before running "./configure". If you receive an error during
  334. the running of "sh ./bootstrap" that looks like "macro `AM_PATH_GTK'
  335. not found in library", you may need to run aclocal by hand with the -I
  336. option, pointing to your aclocal m4 macros, i.e.
  337. $ aclocal -I /usr/local/share/aclocal
  338. Configuration
  339. =============
  340. Note that additional, per-user configuration files can be created by
  341. each user. However, this is usually not necessary as there are few
  342. per-user options that normal users would want to modify. The defaults
  343. that are shipped with the installation are usually just fine.
  344. The gnunet-setup tool is particularly useful to generate the master
  345. configuration for the peer. gnunet-setup can be used to configure and
  346. test (!) the network settings, choose which applications should be run
  347. and configure databases. Other options you might want to control
  348. include system limitations (such as disk space consumption, bandwidth,
  349. etc). The resulting configuration files are human-readable and can
  350. theoretically be created or edited by hand.
  351. gnunet-setup is a separate download and requires somewhat recent
  352. versions of GTK+ and Glade. You can also create the configuration file
  353. by hand, but this is not recommended. For more general information
  354. about the GNU build process read the INSTALL file.
  355. GNUnet uses two types of configuration files, one that specifies the
  356. system-wide defaults (typically located in
  357. $GNUNET_PREFIX/../share/gnunet/config.d/) and a second one that overrides
  358. default values with user-specific preferences. The user-specific
  359. configuration file should be located in "~/.config/gnunet.conf" or its
  360. location can be specified by giving the "-c" option to the respective
  361. GNUnet application.
  362. For more information about the configuration (as well as usage) refer
  363. to the 'GNUnet User Handbook' chapter of the documentation, included
  364. in this software distribution.
  365. Usage
  366. =====
  367. For detailed usage notes, instructions and examples, refer to the
  368. included 'GNUnet Handbook'.
  369. First, you must obtain an initial list of GNUnet hosts. Knowing a
  370. single peer is sufficient since after that GNUnet propagates
  371. information about other peers. Note that the default configuration
  372. contains URLs from where GNUnet downloads an initial hostlist
  373. whenever it is started. If you want to create an alternative URL for
  374. others to use, the file can be generated on any machine running
  375. GNUnet by periodically executing
  376. $ cat $SERVICEHOME/data/hosts/* > the_file
  377. and offering 'the_file' via your web server. Alternatively, you can
  378. run the built-in web server by adding '-p' to the OPTIONS value
  379. in the "hostlist" section of gnunet.conf and opening the respective
  380. HTTPPORT to the public.
  381. If the solution with the hostlist URL is not feasible for your
  382. situation, you can also add hosts manually. Simply copy the hostkeys
  383. to "$SERVICEHOME/data/hosts/" (where $SERVICEHOME is the directory
  384. specified in the gnunet.conf configuration file). You can also use
  385. "gnunet-peerinfo -g" to GET a URI for a peer and "gnunet-peerinfo -p
  386. URI" to add a URI from another peer. Finally, GNUnet peers that use
  387. UDP or WLAN will discover each other automatically (if they are in the
  388. vicinity of each other) using broadcasts (IPv4/WLAN) or multicasts
  389. (IPv6).
  390. The local node is started using "gnunet-arm -s". We recommend to run
  391. GNUnet 24/7 if you want to maximize your anonymity, as this makes
  392. partitioning attacks harder.
  393. Once your peer is running, you should then be able to access GNUnet
  394. using the shell:
  395. $ gnunet-search KEYWORD
  396. This will display a list of results to the console. You can abort
  397. the command using "CTRL-C". Then use
  398. $ gnunet-download -o FILENAME GNUNET_URI
  399. to retrieve a file. The GNUNET_URI is printed by gnunet-search
  400. together with a description. To publish files on GNUnet, use the
  401. "gnunet-publish" command.
  402. The GTK user interface is shipped separately.
  403. After installing gnunet-gtk, you can invoke the setup tool and
  404. the file-sharing GUI with:
  405. $ gnunet-setup
  406. $ gnunet-fs-gtk
  407. For further documentation, see our webpage or the 'GNUnet User Handbook',
  408. included in this software distribution.
  409. Hacking GNUnet
  410. ==============
  411. Contributions are welcome. Please submit bugs you find to
  412. https://bugs.gnunet.org/ or our bugs mailinglist.
  413. Please make sure to run the script "contrib/scripts/gnunet-bugreport"
  414. and include the output with your bug reports. More about how to
  415. report bugs can be found in the GNUnet FAQ on the webpage. Submit
  416. patches via E-Mail to gnunet-developers@gnu.org, formatted with
  417. `git format-patch`.
  418. In order to run the unit tests by hand (instead of using "make check"),
  419. you need to set the environment variable "GNUNET_PREFIX" to the
  420. directory where GNUnet's libraries are installed.
  421. Before running any testcases, you must complete the installation.
  422. Quick summary:
  423. $ ./configure --prefix=$SOMEWHERE
  424. $ make
  425. $ make install
  426. $ export $GNUNET_PREFIX=$SOMEWHERE
  427. $ make check
  428. Some of the testcases require python >= 3.4, and the python module
  429. "pexpect" to be installed.
  430. If any testcases fail to pass on your system, run
  431. "contrib/scripts/gnunet-bugreport" (in the repository) or "gnunet-bugreport"
  432. when you already have GNUnet installed and report its output together with
  433. information about the failing testcase(s) to the Mantis bugtracking
  434. system at https://bugs.gnunet.org/.
  435. Running HTTP on port 80 and HTTPS on port 443
  436. =============================================
  437. In order to hide GNUnet's HTTP/HTTPS traffic perfectly, you might
  438. consider running GNUnet's HTTP/HTTPS transport on port 80/443.
  439. However, we do not recommend running GNUnet as root. Instead, forward
  440. port 80 to say 1080 with this command (as root, in your startup
  441. scripts):
  442. # iptables -t nat -A PREROUTING -p tcp -m tcp --dport 80 -j REDIRECT --to-ports 1080
  443. or for HTTPS
  444. # iptables -t nat -A PREROUTING -p tcp -m tcp --dport 443 -j REDIRECT --to-ports 4433
  445. Then set in the HTTP section of gnunet.conf the "ADVERTISED_PORT" to
  446. "80" and "PORT" to 1080 and similarly in the HTTPS section the
  447. "ADVERTISED_PORT" to "443" and "PORT" to 4433.
  448. You can do the same trick for the TCP and UDP transports if you want
  449. to map them to a privileged port (from the point of view of the
  450. network). However, we are not aware of this providing any advantages
  451. at this point.
  452. If you are already running an HTTP or HTTPS server on port 80 (or 443),
  453. you may be able to configure it as a "ReverseProxy". Here, you tell
  454. GNUnet that the externally visible URI is some sub-page on your website,
  455. and GNUnet can then tunnel its traffic via your existing HTTP server.
  456. This is particularly powerful if your existing server uses HTTPS, as
  457. it makes it harder for an adversary to distinguish normal traffic to
  458. your server from GNUnet traffic. Finally, even if you just use HTTP,
  459. you might benefit (!) from ISP's traffic shaping as opposed to being
  460. throttled by ISPs that dislike P2P. Details for configuring the
  461. reverse proxy are documented on our website.
  462. Further Reading
  463. ===============
  464. * Documentation
  465. An HTML version of the GNUnet manual is deployed at
  466. https://docs.gnunet.org
  467. which currently displays just GNUnet documentation. In the future
  468. we will add more reading material.
  469. * Academia / papers
  470. In almost 20 years various people in our community have written and
  471. collected a good number of papers which have been implemented in
  472. GNUnet or projects around GNUnet.
  473. There are currently 2 ways to get them:
  474. * Using git (NOTE: 1.1 GiB as of 2019-03-09):
  475. git clone https://git.gnunet.org/bibliography.git
  476. * Using the webbrowser:
  477. https://bib.gnunet.org/
  478. Notes on Packaging
  479. ==================
  480. * GNUnet installs binaries which should not be called by the user into
  481. $PREFIX/lib/gnunet/libexec. This folder must not be confused with the
  482. $PREFIX/libexec. GNUnet does not install anything into the libexec dir
  483. to compliant with https://refspecs.linuxfoundation.org/FHS_3.0/fhs/ch04s07.html
  484. Stay tuned
  485. ==========
  486. * https://gnunet.org/
  487. * https://bugs.gnunet.org
  488. * https://git.gnunet.org
  489. * http://www.gnu.org/software/gnunet/
  490. * http://mail.gnu.org/mailman/listinfo/gnunet-developers
  491. * http://mail.gnu.org/mailman/listinfo/help-gnunet
  492. * http://mail.gnu.org/mailman/listinfo/info-gnunet
  493. * http://mail.gnu.org/mailman/listinfo/gnunet-svn