20200726: Difference between revisions
From charlesreid1
No edit summary |
(→Notes) |
||
| Line 8: | Line 8: | ||
* dns record | * dns record | ||
===Tinc=== | |||
On bespin: | |||
<pre> | |||
$ cat tinc.conf | |||
Name = bespin | |||
AddressFamily = any | |||
Mode = switch | |||
ConnectTo = dorky | |||
$ cat tinc-up | |||
#!/bin/sh | |||
ifconfig $INTERFACE 10.6.0.10 netmask 255.255.0.0 | |||
$ cat tinc-down | |||
#!/bin/sh | |||
ifconfig $INTERFACE down | |||
$ ls hosts/ | |||
bespin | |||
dorky | |||
</pre> | |||
==Related== | ==Related== | ||
Revision as of 20:28, 26 July 2020
Notes
- pod private wiki requires a domain
- that requires network interfaces and ip addresses to be set up
- installing tinc natively, whole point is to avoid fuss
- vpn.charlesreid1.party
- certificate
- dns record
Tinc
On bespin:
$ cat tinc.conf Name = bespin AddressFamily = any Mode = switch ConnectTo = dorky $ cat tinc-up #!/bin/sh ifconfig $INTERFACE 10.6.0.10 netmask 255.255.0.0 $ cat tinc-down #!/bin/sh ifconfig $INTERFACE down $ ls hosts/ bespin dorky