Tinc/NewNode
From charlesreid1
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