Check for the existance of libdl.
[tinc] / doc / tinc.conf.sample
1 # Sample tinc configuration file
2
3 # This is a comment.
4 # Lines can have a maximum of 80 characters.
5 # Spaces and tabs are eliminated.
6 # The = sign isn't strictly necessary any longer, though you may want
7 # to leave it in as it improves readability :)
8 # Variable names are treated case insensitive.
9
10 # The internet host to connect with
11 # comment these out to make yourself a listen-only connection
12 # You may use an IP address or its FQDN.
13 ConnectTo = 1.2.3.4
14
15 # Connect to which port of the `ConnectTo' host
16
17 # It is advised that you only connect to ports that are < 1024,
18 # because some malicious (non-root) user may run a fake tincd on ports
19 # above 1024.
20 # The default port is 655, the port that has been assigned to tinc
21 # by the IANA. If you want tincd to listen on any other port than 655,
22 # you can use ListenPort for the `server', and ConnectPort for the
23 # `client'.
24
25 # You may use the prefixes 0x or 0 to denote a hexadecimal or octal
26 # number respectively.
27 ConnectPort = 0x300
28
29 # Listen on which port
30 ListenPort = 200
31
32 # My own VPN IP
33 # You may use the /nn notation to indicate the number of bits used for
34 # the mask, /8 is equivalent to the netmask 255.0.0.0 (the first 8
35 # bits are set to 1).
36 MyOwnVPNIP = 10.x.x.x/8
37
38 # Which local file?
39 # Default is /dev/tap0
40 TapDevice = /dev/tap1