aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2017-01-04 22:11:55 +0100
committerChristian Grothoff <christian@grothoff.org>2017-01-04 22:11:55 +0100
commit5672e0e27b671fa878143e5eed8a9b677588b178 (patch)
tree91a9a5bbeac95a3a65b08484d3295ee3cd03e8b8 /doc
parent60c6dfd1fe22a01a3f7723e7e2bb18d52895c527 (diff)
downloadgnunet-5672e0e27b671fa878143e5eed8a9b677588b178.tar.gz
gnunet-5672e0e27b671fa878143e5eed8a9b677588b178.zip
move functionality of publishing namestore zone in DHT from GNS service to new zonemaster service
Diffstat (limited to 'doc')
-rw-r--r--doc/man/gnunet-nat.110
-rw-r--r--doc/structure.dot5
2 files changed, 9 insertions, 6 deletions
diff --git a/doc/man/gnunet-nat.1 b/doc/man/gnunet-nat.1
index 5bdbb21eb..a834a1d96 100644
--- a/doc/man/gnunet-nat.1
+++ b/doc/man/gnunet-nat.1
@@ -81,13 +81,15 @@ We are bound to "127.0.0.1:8080" on UDP and want to obtain all applicable IP add
81 81
82\fBICMP-based NAT traversal:\fR 82\fBICMP-based NAT traversal:\fR
83 83
84Watch for connection reversal request: 84Watch for connection reversal request (you must be bound to NAT range or to wildcard, 0.0.0.0), only works for IPv4:
85 85
86 # gnunet-nat FIXME 86 # gnunet-nat -Wt -i 192.168.178.12:8080
87 87
88Initiate connection reversal request: 88Initiate connection reversal request from peer at external IPv4 address 1.2.3.4 while we are running ourselves at 2.3.4.5:8080 (must use IPv4 addresses):
89 89
90 # gnunet-nat FIXME 90 # gnunet-nat -t -r 1.2.3.4:8080 -i 2.3.4.5:8080
91
92 # gnunet-nat -t -r 1.2.3.4:8080 -i 0.0.0.0:8080 ### TEST THIS!
91 93
92\fBManual hole punching:\fR 94\fBManual hole punching:\fR
93 95
diff --git a/doc/structure.dot b/doc/structure.dot
index 2a30c7c17..e244d20b8 100644
--- a/doc/structure.dot
+++ b/doc/structure.dot
@@ -41,8 +41,9 @@ splines = true;
41 dv -> ats; 41 dv -> ats;
42 dns -> tun; 42 dns -> tun;
43 dns -> dnsstub; 43 dns -> dnsstub;
44 gns [shape=house]; 44 zonemaster [shape=house];
45 gns -> namestore; 45 zonemaster -> namestore;
46 zonemaster -> dht;
46 gns -> dns; 47 gns -> dns;
47 gns -> dht; 48 gns -> dht;
48 gns -> block [style=dotted,color=blue]; 49 gns -> block [style=dotted,color=blue];