Displaying 2 results from an estimated 2 matches for "envy13".
Did you mean:
envy17
2019 May 06
4
config help & pid file not existing issue
Tinc team:
I'm creating a vpn for my work laptop and vps and got trapped, here are my
config files:
on laptop:
*tinc.conf
Name = envy13
Device = /dev/net/tun
ConnectTo = main
*hosts/main
Address = <my vps ext ip address>
Port = 655
Subnet = 10.0.0.1/32
*hosts/envy13
Port = 655
Subnet = 10.0.0.2/32
*tinc-up
#!/bin/sh
ip link set myvpn up
ip addr add 10.0.0.2/32 dev myvpn
ip route add 10.0.0.0/24 via 10.0.0.2
*tinc-down
#!/...
2019 May 06
0
config help & pid file not existing issue
Hallo David,
Am Mon, 6 May 2019 16:43:28 +0800
schrieb David Penn <px920906 at gmail.com>:
> *tinc.conf
> Name = envy13
> Device = /dev/net/tun
I think, you do not need to specify "Device".
(I never did)
> ConnectTo = main
>
> *hosts/main
> Address = <my vps ext ip address>
> Port = 655
> Subnet = 10.0.0.1/32
>
> *hosts/envy13
> Port = 655
> Subnet = 10.0.0.2/32...