summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGDR! <gdr@go2.pl>2014-12-11 19:30:14 +0100
committerGDR! <gdr@go2.pl>2014-12-11 19:30:14 +0100
commitaada851bb2c5576ba9afb1a486ea4b01e0c05ac3 (patch)
tree93349a6011bf069e72ca8f691b49cb07d04ef5f1
parent6309f33775840f21b85051a46d14a1b67d9a9415 (diff)
Bare bones documentation
-rw-r--r--BUILD.md7
-rw-r--r--README.md59
2 files changed, 66 insertions, 0 deletions
diff --git a/BUILD.md b/BUILD.md
new file mode 100644
index 0000000..c0d340c
--- /dev/null
+++ b/BUILD.md
@@ -0,0 +1,7 @@
1* Install libsodium http://doc.libsodium.org/installation/README.html
2* Install libtoxcore (libtoxav and the DNS client are not required) https://github.com/irungentoo/toxcore/blob/master/INSTALL.md
3* git clone https://github.com/gjedeer/tuntox.git
4* cd tuntox
5* make
6
7The makefile creates a static binary by default. If you're not a fan of static binaries, remove "-static" from LDFLAGS. One reason to do so may be if you'd like to resolve hostnames on the tuntox server (invoke client with -L 80:reddit.com:80 instead of -L 80:198.41.208.138:80). Static linking breaks hostname resolution, but IMHO the pros overweight the cons.
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..a3c35e3
--- /dev/null
+++ b/README.md
@@ -0,0 +1,59 @@
1## Introduction
2
3Tuntox is a program which forwards TCP connections over the [Tox](https://tox.im/) protocol. This allows low-latency access to distant machines behind a NAT you can't control or with a dynamic IP address.
4
5Tuntox is a single binary which may run in client mode or server mode. As a rule of thumb, run the server on the remote machine you want to access and the client on your local computer from which you want to access the server.
6
7**Tuntox is an early work in progress program**. It won't kill your goats but it may segfault, leak memory or have security issues (although I tried to make it rather secure). It won't be as fast as it could be because of the tremendous amount of debug output.
8
9If you don't know what Tox is - it's an instant messenger protocol which is fully P2P, supports audio/video calls and file transfers. Unlike Skype it's fully open and unlike, say, XMPP - the calls and file transfers actually work. Go download a client from http://utox.org/ or read more at https://tox.im/
10
11## Binary
12
13Get the binaries from Releases tab on github. Just download the correct file for your architecture, execute chmod +x and you're done. The binaries are signed with my PGP key, [11C1 B15A 5D5D D662 E469 928A EBDA 6B97 4ED3 D2B7](https://keybase.io/gdr).
14
15## Running the server
16
17Run the Tuntox server on a laptop which connects via 3G, on your home computer behind six NATs or on your Raspberry Pi. No ports need to be forwarded to its public IP - the machine will be accessible via the Tox overlay network.
18
19 ./tuntox
20
21runs the server in the foreground. When the server starts, it will print its Tox ID to the output - note it, you will need it later to access the machine from outside.
22
23If you terminate the server (Ctrl-C) and start again, it will generate a new Tox ID and you'll need to write it down again. It kind of defeats the purpose, so you'll want to help the server store its Tox ID somewhere. By default it saves a file in /etc/tuntox/, so if you create this directory and chown it so that it's accessible to tuntox, it will have a fixed Tox ID.
24
25Alternatively you may use the -C switch instead:
26
27 ./tuntox -C /path/to/the/config/directory/
28
29Tuntox currently does not fork, so if you want it to run at system startup, add something like this to /etc/rc.local:
30
31 /path/to/tuntox &
32
33Or, if you run something like supervisord or systemd, you're welcome to contribute a configuration file for the system of your choice (see #3, #4, #6)
34
35## Client
36
37So, the laptop now has the Tuntox server installed. How do you connect to it?
38
39 ./tuntox -i <ToxID> -L 2222:127.0.0.1:22
40
41where <ToxID> is the ID you noted down when setting up the server. You didn't forget to write it down, did you?
42
43After you run this command, open a second terminal window and execute:
44
45 ssh -p 2222 myuser@localhost
46
47Magic, port 2222 on your localhost is now the SSH server on the machine which runs the Tuntox server.
48
49The -L switch works (almost) the same way it does in SSH. For the uninitiated, -L A:B:C means "forward port C on ip B to port A on localhost". Unlike SSH, you can't use hostnames for B (unless you link the binary dynamically).
50
51## Security / threat model
52
53The Tuntox server generates a new Tox ID on every startup, or saves its private key in a file. Anyone who wants to connect to this server needs its Tox ID, which consists of the publicly-known pubkey and a secret 32-bit "antispam" value. Anyone with access to the full Tox ID is automatically accepted with no further authorization and can forward ports (or exploit buffer overflows :).
54
55Therefore, posession of the server's Tox ID should be considered equivalent to posession of an Unix account with SSH access.
56
57Currently there are no measures for preventing brute force attacks against the 32-bit antispam value that the author is aware of. They may or may not be released by the libtoxcore team and are not in the scope of this tool.
58
59Tuntox is piggybacking on the Tox protocol, which itself has not been audited by security researchers. Tox crypto has been implemented with libsodium (which is based on Bernstein's NaCl) and thus uses the ecliptic curve 25519 for key exchange and salsa20 for stream encryption. According to the author's best knowledge, libsodium makes it as hard as possible to get crypto wrong, but we don't know until Tox has been audited.