-fix
[oweals/gnunet.git] / src / exit / exit.conf
1 [exit]
2 CONFIG = $DEFAULTCONFIG
3 BINARY = gnunet-daemon-exit
4
5 # IPv6 address for the TUN interface (must be changed as this
6 # must be within the global IPv6 range of your system!)
7 IPV6ADDR = 2001:DB8::1
8
9 # Prefix for our IPv6 subnet on the TUN interface. 
10 IPV6PREFIX = 64
11
12 # IPv4 address to use on our TUN interface (may need to be
13 # changed to avoid conflicts with existing addresses on your system).
14 # Use RFC 3927-style link-local address
15 IPV4ADDR = 169.254.86.1
16
17 # Netmask for the IPv4 subnet on the TUN interface.
18 IPV4MASK = 255.255.255.0
19
20
21 # Name of the (virtual) tunnel interface the exit daemon will manage
22 TUN_IFNAME = exit-gnunet
23
24 # Name of the "real" interface that IPv4 traffic from this system will
25 # leave from; this is the name of the interface where we need to
26 # enable NAT on postrouting (typically something like 'eth0' or 'eth1'
27 # or 'wlan0').  Not needed if EXIT_IPv4 is disabled AND if all
28 # offered services run on 'localhost'.  In this case, the value
29 # of the option can instead be set to "%" (to not enable NAT on any
30 # interface).
31 EXIT_IFNAME = eth0
32
33 # Set this to YES to allow exiting this system via IPv4 to the Internet
34 EXIT_IPV4 = NO
35
36 # Set this to YES to allow exiting this system via IPv6 to the Internet
37 EXIT_IPV6 = NO
38
39 # For IPv4-services offered by this peer, we need to at least enable IPv4
40 ENABLE_IPV4 = YES
41
42 # For IPv6-services offered by this peer, we need to at least enable IPv6
43 ENABLE_IPV6 = YES
44
45
46 # Maximum number of concurrent connections this exit supports.
47 MAX_CONNECTIONS = 256