Displaying 1 result from an estimated 1 matches for "devtun".
2017 Aug 29
1
Behavior like -R and -L SSH
...o like RDP servers, etc.
Internal Devices <-- Customer Site with a rasperry pi --> Internet -->
Public Server <-- Laptop, PC, whatever
Here is my config (I don't have a "Laptop , PC , whatever" config yet):
Server with public IPv4 address:
/etc/tinc/tinc.conf
  Name = devtun
  AddressFamily = ipv4
  Interface = tuu0
  Mode = router
/etc/tinc/devtun/tinc-up
  #!/bin/sh
  ifconfig $INTERFACE 192.168.2.1/29
  route add -net 192.168.0.0/24 gw 192.168.2.1 dev $INTERFACE
/etc/tinc/devtun/hosts/devtun
  TunnelServer = yes
  Address = 10.0.10.3
  Subnet = 192.168.2.1/32...