+++ /dev/null
-# 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-----
+++ /dev/null
-# 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-----
+++ /dev/null
-# Generate this file with `tincd -n example -K`
+++ /dev/null
-#!/bin/sh
-# This file closes down the tap device.
-
-ifconfig $INTERFACE down
+++ /dev/null
-#!/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
+++ /dev/null
-# 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