From charlesreid1

Revision as of 00:50, 22 January 2018 by Admin (talk | contribs) (Created page with "Procedure for adding a new node (Mac): Install: <pre> $ brew install tinc </pre> Prep directory structure: <pre> mkdir -p /usr/local/etc/tinc/master/ cd /usr/local/etc/tin...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Procedure for adding a new node (Mac):

Install:

$ brew install tinc

Prep directory structure:

mkdir -p /usr/local/etc/tinc/master/
cd /usr/local/etc/tinc/master/

Edit tinc.conf:

$ cat tinc.conf
Name = cronus
AddressFamily = any
Mode = switch
ConnectTo = jupiter

Edit tinc-up and tinc-down:

$ cat tinc-up
#!/bin/sh
ifconfig $INTERFACE 10.6.0.3 netmask 255.255.0.0

$ cat tinc-down
#!/bin/sh
ifconfig $INTERFACE down