blob: c978f80311b9b94bd1a761bd5f1427897e6b77eb (
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
|
Dependencies
============
Anytun can be built by using either libgcrypt or the openssl-crypto library.
The latter is more performant in most cases but there are some license
issues when using this library.
Linux
-----
using libgcrypt:
libgcrypt11-dev
using ssl crypto lib:
libssl-dev
common:
build-essential
libboost-serialization1.35-dev
libboost-thread1.35-dev
libboost-system1.35-dev
libboost-regex1.35-dev
asciidoc (only for manpage)
Freebsd
-------
using libgcrypt:
security/libgcrypt
using ssl crypto lib:
<nothing here>
common:
devel/boost
devel/gmake
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
As it can take some time to install everything from boost here is a
complete list of libraries which have to be installed in order to build anytun:
* Serialization
* Thread
* date_time
* System
* regex
Microsoft Visual C++ 2008 Redistributable Package (x86):
http://www.microsoft.com/downloads/details.aspx?familyid=9B2DA534-3E03-4391-8A4D-074B9F2BC1BF
Installation
============
Getting the source via subversion:
----------------------------------
svn co http://svn.anytun.org/anytun/trunk anytun
cd anytun
Building from source
--------------------
using libgcrypt:
# cd src
# ./configure
# make
using ssl crypto library:
# cd src
# ./configure --use-ssl-crypto
# make
Notes:
- try './configure --help' for further information
- if using openssl pre 0.9.8 you have to disable passphrase
because openssl had no SHA256 implementation prior to this
version
- on FreeBSD you have to use gmake instead of make
Installing
----------
# sudo make install
This will install anytun under the --prefix defined with configure.
Uninstalling
------------
# sudo make remove
This removes everytthing except for the config files
# sudo make purge
This also removes the config files
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
|