Skip to content

Latest commit

 

History

History
36 lines (30 loc) · 757 Bytes

multiple-networks.md

File metadata and controls

36 lines (30 loc) · 757 Bytes

Multiple tinc VPN networks

It's possible to set up multiple tinc networks in parallel by using the role multiple times:

- hosts: group1
  roles:
    - role: matthiaslohr.tincvpn
      vars:
        tincvpn_network: "net1"
        tincvpn_subnet: "192.168.255.0/24"

- hosts: group2
  roles:
    - role: matthiaslohr.tincvpn
      vars:
        tincvpn_network: "net2"
        tincvpn_subnet: "192.168.42.0/24"
        tincvpn_port: 10655

You can specify node's VPN ip addresses in the inventory for each network:

[all]
node1 tincvpn_net1_ip=192.168.255.1 tincvpn_net2_ip=192.168.42.1
node2 tincvpn_net1_ip=192.168.255.2
node3                                incvpn_net2_ip=192.168.42.3

[group1]
node1
node2

[group2]
node1
node3