blob: 3141141df6d4c5771d2d196769fcaa6be899cc5d (
plain)
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
|
# network.conf: Tinc App network interface configuration file.
# Keys can be repeated to specify multiple values.
# Doc: https://tincapp.pacien.org/doc.html#network-interface
# IP address of this node
#Address = 10.0.0.2/32
# Traffic to route through the VPN
#Route = 10.0.0.0/24
# or, to route everything:
#Route = 0.0.0.0/0
# DNS server(s)
#DNSServer = 10.0.0.1
# Search domain(s) to associate to the DNS resolver(s)
#SearchDomain = mynet
# Applications allowed or disallowed to use the VPN connection
#AllowApplication = com.example.app
# or
#DisallowApplication = com.example.app
# Allow applications to bypass the VPN connection
#AllowBypass = false
# Automatic reconnection on network change
#ReconnectOnNetworkChange = true
|