]> git.meshlink.io Git - meshlink/commitdiff
Remove sample tinc configuration.
authorGuus Sliepen <guus@meshlink.io>
Sat, 12 Apr 2014 13:15:13 +0000 (15:15 +0200)
committerGuus Sliepen <guus@meshlink.io>
Sat, 12 Apr 2014 13:15:13 +0000 (15:15 +0200)
doc/sample-config/hosts/alpha [deleted file]
doc/sample-config/hosts/beta [deleted file]
doc/sample-config/rsa_key.priv [deleted file]
doc/sample-config/tinc-down [deleted file]
doc/sample-config/tinc-up [deleted file]
doc/sample-config/tinc.conf [deleted file]

diff --git a/doc/sample-config/hosts/alpha b/doc/sample-config/hosts/alpha
deleted file mode 100644 (file)
index 0f5e56a..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-# Sample host configuration file
-
-# The real IP address of this tinc host. Can be used by other tinc hosts.
-Address = 123.234.35.67
-
-# Portnumber for incoming connections. Default is 655.
-Port = 655
-
-# Subnet on the virtual private network that is local for this host.
-Subnet = 192.168.1.0/24
-
-# The public key generated by `tincd -n example -K' is stored here
------BEGIN RSA PUBLIC KEY-----
-...
------END RSA PUBLIC KEY-----
diff --git a/doc/sample-config/hosts/beta b/doc/sample-config/hosts/beta
deleted file mode 100644 (file)
index 6f70d4f..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-# Sample host configuration file
-# This file was generated by host beta.
-
-# The real IP address of this tinc host. Can be used by other tinc hosts.
-Address = 123.45.67.189
-
-# Portnumber for incoming connections. Default is 655.
-Port = 6500
-
-# Subnet on the virtual private network that is local for this host.
-Subnet = 192.168.2.0/24
-
-# The public key generated by `tincd -n example -K' is stored here
------BEGIN RSA PUBLIC KEY-----
-...
------END RSA PUBLIC KEY-----
diff --git a/doc/sample-config/rsa_key.priv b/doc/sample-config/rsa_key.priv
deleted file mode 100644 (file)
index ac13536..0000000
+++ /dev/null
@@ -1 +0,0 @@
-# Generate this file with `tincd -n example -K`
diff --git a/doc/sample-config/tinc-down b/doc/sample-config/tinc-down
deleted file mode 100644 (file)
index 65b049e..0000000
+++ /dev/null
@@ -1,4 +0,0 @@
-#!/bin/sh
-# This file closes down the tap device.
-
-ifconfig $INTERFACE down
diff --git a/doc/sample-config/tinc-up b/doc/sample-config/tinc-up
deleted file mode 100644 (file)
index 2d8b4d6..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/sh
-# This file sets up the tap device.
-# It gives you the freedom to do anything you want with it.
-# Use the correct name for the tap device:
-# The environment variable $INTERFACE is set to the right name
-# on most platforms, but if it doesn't work try to set it manually.
-
-# Give it the right ip and netmask. Remember, the subnet of the
-# tap device must be larger than that of the individual Subnets
-# as defined in the host configuration file!
-ifconfig $INTERFACE 192.168.1.1 netmask 255.255.0.0
diff --git a/doc/sample-config/tinc.conf b/doc/sample-config/tinc.conf
deleted file mode 100644 (file)
index 25a61a7..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-# Sample tinc configuration file
-
-# This is a comment.
-# Spaces and tabs are eliminated.
-# The = sign isn't strictly necessary any longer, though you may want
-# to leave it in as it improves readability :)
-# Variable names are treated case insensitive.
-
-# The name of this tinc host. Required.
-Name = alpha
-
-# The internet host to connect with.
-# Comment these out to make yourself a listen-only connection
-# You must use the name of another tinc host.
-# May be used multiple times for redundance.
-ConnectTo = beta
-
-# The tap device tinc will use.
-# Default is /dev/tap0 for ethertap or FreeBSD,
-# /dev/tun0 for Solaris and OpenBSD,
-# and /dev/net/tun for Linux tun/tap device.
-Device = /dev/net/tun