summaryrefslogtreecommitdiff
path: root/README
blob: 6e9b207aa2ced0876fb0523a0a133a493a3e46cc (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
Dependencies
============

Linux
-----

build-essential
libgcrypt11-dev
libboost1.35-dev
libboost-thread1.35-dev
libboost-system1.35-dev
libboost-regex1.35-dev
asciidoc (only for manpage)

Windows
-------
OpenSSL
 Developer: 
 	http://www.slproweb.com/download/Win32OpenSSL-0_9_8j.exe
 Runtime Only: 
 	http://www.slproweb.com/download/Win32OpenSSL_Light-0_9_8j.exe
Boost 1.35: 
	http://www.boostpro.com/download/boost_1_35_0_setup.exe
Microsoft Visual C++ 2008 Redistributable Package (x86):
	http://www.microsoft.com/downloads/details.aspx?familyid=9B2DA534-3E03-4391-8A4D-074B9F2BC1BF

OpenBSD
-------

libgcrypt
libgpg-error
boost
gmake



Installation
============

Getting the source via subversion:
----------------------------------
svn co http://anytun.org/svn/anytun/

Building from source
--------------------

# cd src
# ./configure
# make

Notes: 
  - on OpenBSD you have to use gmake instead of make

Errors:
-------

Note: Cannot open TUN/TAP dev /dev/net/tun: No such file or directory (errno=2)
Cannot open TUN/TAP dev /dev/anytun0: No such file or directory (errno=2)

Solution: Enabling tun/tap device
------------------------------------

modprobe tun
cd /dev
./MAKEDEV tun

edit /etc/modules and add the line
tun
to load the module automatically