Projet

Général

Profil

Paste
Télécharger au format
Statistiques
| Branche: | Révision:

root / manifests / rules / out / wireguard.pp @ 79e9a23f

Historique | Voir | Annoter | Télécharger (221 octets)

1
# manage out wireguard
2
class nftables::rules::out::wireguard (
3
  Array[Integer,1]
4
    $ports = [51820],
5
) {
6
  nftables::rule{
7
    'default_out-wireguard':
8
      content => "udp dport {${join($ports,', ')}} accept",
9
  }
10
}