Tinc: Difference between revisions
From charlesreid1
(Created page with "https://silvenga.com/deploy-a-tinc-mesh-vpn-running-tap/") |
No edit summary |
||
| Line 1: | Line 1: | ||
https://silvenga.com/deploy-a-tinc-mesh-vpn-running-tap/ | https://silvenga.com/deploy-a-tinc-mesh-vpn-running-tap/ | ||
http://www.allsundry.com/2011/04/10/tinc-better-than-openvpn/ | |||
All the setup you need: | |||
<pre> | |||
In /etc/netname/tinc.conf: | |||
Name = host1 | |||
ConnectTo = host2 | |||
In /etc/netname/tinc-up | |||
ifconfig $INTERFACE 192.168.XX.1 netmask 255.255.0.0 | |||
# Generate keypairs for host | |||
tincd -n netname -K | |||
# Create file for this host. Prepend to /etc/netname/hosts/host1 | |||
Address = host1.full.domain.com | |||
Subnet = 192.168.XX.0/24 | |||
</pre> | |||
Revision as of 14:33, 19 January 2018
https://silvenga.com/deploy-a-tinc-mesh-vpn-running-tap/
http://www.allsundry.com/2011/04/10/tinc-better-than-openvpn/
All the setup you need:
In /etc/netname/tinc.conf: Name = host1 ConnectTo = host2 In /etc/netname/tinc-up ifconfig $INTERFACE 192.168.XX.1 netmask 255.255.0.0 # Generate keypairs for host tincd -n netname -K # Create file for this host. Prepend to /etc/netname/hosts/host1 Address = host1.full.domain.com Subnet = 192.168.XX.0/24