From: Guus Sliepen Date: Sat, 12 Apr 2014 13:15:13 +0000 (+0200) Subject: Remove sample tinc configuration. X-Git-Url: http://git.meshlink.io/?p=meshlink;a=commitdiff_plain;h=ac77178a4e9b98bdf0ed194bc7dc36c8fbca8a14 Remove sample tinc configuration. --- diff --git a/doc/sample-config/hosts/alpha b/doc/sample-config/hosts/alpha deleted file mode 100644 index 0f5e56a9..00000000 --- a/doc/sample-config/hosts/alpha +++ /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 index 6f70d4f7..00000000 --- a/doc/sample-config/hosts/beta +++ /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 index ac135363..00000000 --- a/doc/sample-config/rsa_key.priv +++ /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 index 65b049e2..00000000 --- a/doc/sample-config/tinc-down +++ /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 index 2d8b4d6b..00000000 --- a/doc/sample-config/tinc-up +++ /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 index 25a61a72..00000000 --- a/doc/sample-config/tinc.conf +++ /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