aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpacien2019-06-13 19:54:21 +0200
committerpacien2019-06-13 19:54:21 +0200
commitc108e36cb28fb6147315908485eeb667dc5e27bf (patch)
treef4c365aa07991d4fcd09a98cb8c2e8735f34f22e
parentb8feb46660794501d4fa6d12c300169ca2c82478 (diff)
downloadtincapp-c108e36cb28fb6147315908485eeb667dc5e27bf.tar.gz
add some keys to default configuration file
-rw-r--r--app/src/main/res/raw/network.conf35
1 files changed, 17 insertions, 18 deletions
diff --git a/app/src/main/res/raw/network.conf b/app/src/main/res/raw/network.conf
index 7db306a..3141141 100644
--- a/app/src/main/res/raw/network.conf
+++ b/app/src/main/res/raw/network.conf
@@ -1,20 +1,5 @@
1# Tinc App, an Android binding and user interface for the tinc mesh VPN daemon 1# network.conf: Tinc App network interface configuration file.
2# Copyright (C) 2017-2018 Pacien TRAN-GIRARD 2# Keys can be repeated to specify multiple values.
3#
4# This program is free software: you can redistribute it and/or modify
5# it under the terms of the GNU General Public License as published by
6# the Free Software Foundation, either version 3 of the License, or
7# (at your option) any later version.
8#
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU General Public License for more details.
13#
14# You should have received a copy of the GNU General Public License
15# along with this program. If not, see <https://www.gnu.org/licenses/>.
16
17# network.conf: VPN network interface configuration file
18# Doc: https://tincapp.pacien.org/doc.html#network-interface 3# Doc: https://tincapp.pacien.org/doc.html#network-interface
19 4
20# IP address of this node 5# IP address of this node
@@ -22,8 +7,22 @@
22 7
23# Traffic to route through the VPN 8# Traffic to route through the VPN
24#Route = 10.0.0.0/24 9#Route = 10.0.0.0/24
25# or 10# or, to route everything:
26#Route = 0.0.0.0/0 11#Route = 0.0.0.0/0
27 12
28# DNS server(s) 13# DNS server(s)
29#DNSServer = 10.0.0.1 14#DNSServer = 10.0.0.1
15
16# Search domain(s) to associate to the DNS resolver(s)
17#SearchDomain = mynet
18
19# Applications allowed or disallowed to use the VPN connection
20#AllowApplication = com.example.app
21# or
22#DisallowApplication = com.example.app
23
24# Allow applications to bypass the VPN connection
25#AllowBypass = false
26
27# Automatic reconnection on network change
28#ReconnectOnNetworkChange = true