Difference between revisions of "Tinc"

From Tmplab
(Yet Another Help For Basic tinc-vpn setup)
(Yet Another Help For Basic tinc-vpn setup)
Line 28: Line 28:
  
 
  #!/bin/bash
 
  #!/bin/bash
  ifconfig $INTERFACE 192.168.142.20 netmask 255.255.255.0
+
  ifconfig $INTERFACE 192.168.22.20 netmask 255.255.255.0
 +
 
 +
== tinc-down ==
 +
 
 +
#!/bin/bash
 +
ifconfig $INTERFACE down
  
 
====
 
====

Revision as of 01:16, 25 May 2016

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

==