summaryrefslogtreecommitdiff
path: root/manifests/wireguard.pp
blob: 3baa5ecc6c1eec3a88e38465afb6d122b0cbe4ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# qrencode -t ansiutf8 < tunnel.conf
class profiles::wireguard (
  $port = 51871,
) {
  ensure_packages ([
    'wireguard-tools', # userspace utilities
  ])

  # TODO Where are these currently set in puppet?
  # sysctl -w net.ipv4.ip_forward=1
  # sysctl -w net.ipv6.conf.all.forwarding=1




}