root / manifests / rules / out / kerberos.pp @ 03d9e7da
Historique | Voir | Annoter | Télécharger (258 octets)
1 | 215aee13 | Steve Traylen | # @summary allows outbound access for kerberos |
---|---|---|---|
2 | class nftables::rules::out::kerberos { |
||
3 | |||
4 | nftables::rule{ |
||
5 | 'default_out-kerberos_udp': |
||
6 | 9785cd54 | Steve Traylen | content => 'udp dport 88 accept'; |
7 | 215aee13 | Steve Traylen | 'default_out-kerberos_tcp': |
8 | 9785cd54 | Steve Traylen | content => 'tcp dport 88 accept'; |
9 | 215aee13 | Steve Traylen | } |
10 | |||
11 | } |