aboutsummaryrefslogtreecommitdiff
path: root/net/kadnode/files/kadnode.config
diff options
context:
space:
mode:
authorMoritz Warning <moritzwarning@web.de>2017-12-20 13:05:33 +0100
committerMoritz Warning <moritzwarning@web.de>2018-01-14 22:33:45 +0100
commit46304b2f58291e74b3a7c8198fb142990307e25d (patch)
treee0ad87daaebafd8e9bc14527e87ed48705b68c67 /net/kadnode/files/kadnode.config
parentc34edc217185d98d169402ee0ed8b87e70bb2071 (diff)
kadnode: add new package
Signed-off-by: Moritz Warning <moritzwarning@web.de>
Diffstat (limited to 'net/kadnode/files/kadnode.config')
-rwxr-xr-xnet/kadnode/files/kadnode.config58
1 files changed, 58 insertions, 0 deletions
diff --git a/net/kadnode/files/kadnode.config b/net/kadnode/files/kadnode.config
new file mode 100755
index 000000000..3a79fc55b
--- /dev/null
+++ b/net/kadnode/files/kadnode.config
@@ -0,0 +1,58 @@
+##
+## KadNode is a P2P DNS resolver to resolve domains using the BitTorrent network.
+##
+
+config kadnode
+ option enabled 1
+
+
+## ECC Key usage:
+## 1. Create public/secret key pair with `kadnode --bob-create-key /etc/kadnode_secret.pem`
+## 2. Put the secret key file on the router that you want to resolve to and use it for option bob_load_key.
+## 3. Use the public key hex output with .p2p attached on other devices to resovle to the router IP address via kadnode.
+
+## Secret key for public key links
+# list bob_load_key '/etc/kadnode_secret.pem'
+
+
+## TLS usage:
+## For resolving domains, put credentials on the router and use option tls_client_cert.
+## For announcing domains, put the certificates and secret key on router and use option tls_server_cert.
+
+## Folder of CA certificates
+## Install package 'ca-certificates' for the official CA set.
+# list tls_client_cert '/etc/ssl/certs'
+
+## Server credentials
+# list tls_server_cert '/ect/mynode.crt,/etc/mynode.key'
+
+
+## Add domains to be announced.
+## Note: Only needed in special situations since tls_server_cert and bob_load_key announce automatically its associated domains.
+# list announce 'web.myname.p2p'
+
+## Load and store good nodes every 24h and on start/shutdown.
+# option peerfile '/etc/kadnode/peers.txt'
+
+## Add static peers addresses.
+ list peer 'bttracker.debian.org:6881'
+ list peer 'router.bittorrent.com:6881'
+
+## Bind the DHT to this port.
+# option port '6881'
+
+## Limit DHT communication to this interface.
+# option ifname 'eth0'
+
+## Verbosity: quiet, verbose or debug
+# option verbosity 'quiet'
+
+## Local port to accept forwarded requests.
+# option dns_port '3535'
+
+## Disable multicast peer discovery on the LAN.
+# option lpd_disable '1'
+
+## Disable port forwarding when this router is behind another
+## router in a private network that supports UPnP/NAT-PMP.
+# option fwd_disable '1'