-sane defaults
[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 = 1234:1::1
8
9 # Prefix for our IPv6 subnet on the TUN interface. 
10 IPV6PREFIX = 32
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 IPV4ADDR = 10.10.1.1
15
16 # Netmask for the IPv4 subnet on the TUN interface.
17 IPV4MASK = 255.255.0.0
18
19
20 # Name of the (virtual) tunnel interface the exit daemon will manage
21 TUN_IFNAME = exit-gnunet
22
23 # Name of the "real" interface that IPv4 traffic from this system will
24 # leave from; this is the name of the interface where we need to
25 # enable NAT on postrouting (typically something like 'eth0' or 'eth1'
26 # or 'wlan0').  Not needed if EXIT_IPv4 is disabled AND if all
27 # offered services run on 'localhost'.  In this case, the value
28 # of the option can instead be set to "%" (to not enable NAT on any
29 # interface).
30 EXIT_IFNAME = eth0
31
32 # Set this to YES to allow exiting this system via IPv4 to the Internet
33 EXIT_IPV4 = NO
34
35 # Set this to YES to allow exiting this system via IPv6 to the Internet
36 EXIT_IPV6 = NO
37
38 # For IPv4-services offered by this peer, we need to at least enable IPv4
39 ENABLE_IPV4 = YES
40
41 # For IPv6-services offered by this peer, we need to at least enable IPv6
42 ENABLE_IPV6 = YES
43
44
45 # Maximum number of concurrent connections this exit supports.
46 MAX_CONNECTIONS = 256