Displaying 1 result from an estimated 1 matches for "hqvpn".
2004 Feb 15
1
Problems getting tinc running
...Point-to-Point Protocol
inet addr:10.0.1.1 P-t-P:10.0.1.1 Mask:255.255.0.0
On the office server I have:
tinc-up
#!/bin/sh
ifconfig $INTERFACE 10.0.1.1 netmask 255.255.0.0
route add -host 10.0.1.1 dev $INTERFACE
route add -net 10.0.1.0 netmask 255.255.0.0 gw 10.0.1.1
tinc.conf
Name = hqvpn
Device = /dev/net/tun
onnectTo = home
PrivateKeyFile=/etc/tinc/rsa_key.priv
hosts/hqvpn
Compression = 9
Address = 1.2.3.4
Subnet = 10.0.0.0/24
public key.
hosts/home
Address = 5.6.7.8
Subnet = 10.0.1.10/32
public key.
At home I have:
tinc-up
#!/bin/sh
ifconfig $INTERFACE 10.0.1.10 netmask 255....