Difference between revisions of "Tinc"
From Tmplab
Samneurohack (talk | contribs) (→Yet Another Help For Basic tinc-vpn setup) |
Samneurohack (talk | contribs) (→Configuration Directory Structure) |
||
Line 10: | Line 10: | ||
tinc-down | tinc-down | ||
hosts/ | hosts/ | ||
− | + | client1 | |
− | + | client2 | |
− | + | tincserver | |
== nets.boot == | == nets.boot == |
Revision as of 01:20, 25 May 2016
Contents
Yet Another Help For Basic tinc-vpn setup
Configuration Directory Structure
/etc/tinc/ nets.boot networkname/ tinc.conf tinc-up tinc-down hosts/ client1 client2 tincserver
nets.boot
networkname
tinc.conf
Name=Client1 Device=/dev/net/tun ConnectTo=TincServer AddressFamily = ipv4
tinc-up
#!/bin/bash ifconfig $INTERFACE 192.168.22.20 netmask 255.255.255.0
tinc-down
#!/bin/bash ifconfig $INTERFACE down
Client1
Name=client1 Subnet=192.168.22.2 -----BEGIN RSA PUBLIC KEY----- .... -----END RSA PUBLIC KEY-----
Client2
Name=client2 Subnet=192.168.22.3 -----BEGIN RSA PUBLIC KEY----- .... -----END RSA PUBLIC KEY-----