diff options
Diffstat (limited to 'types')
-rw-r--r-- | types/chains.pp | 1 | ||||
-rw-r--r-- | types/policies.pp | 1 | ||||
-rw-r--r-- | types/protocols.pp | 3 |
3 files changed, 4 insertions, 1 deletions
diff --git a/types/chains.pp b/types/chains.pp index 3ddf0f8..e916359 100644 --- a/types/chains.pp +++ b/types/chains.pp @@ -1 +1,2 @@ +# @summary a type that allows the default iptables chains type Ferm::Chains = Enum['INPUT', 'FORWARD', 'OUTPUT'] diff --git a/types/policies.pp b/types/policies.pp index ffc8a6e..03be6ce 100644 --- a/types/policies.pp +++ b/types/policies.pp @@ -1 +1,2 @@ +# @summary a list of allowed default policies for a chain type Ferm::Policies = Enum['ACCEPT','DROP', 'REJECT'] diff --git a/types/protocols.pp b/types/protocols.pp index 2ab2cf4..ee3ac2b 100644 --- a/types/protocols.pp +++ b/types/protocols.pp @@ -1 +1,2 @@ -type Ferm::Protocols = Enum['icmp', 'tcp', 'udp', 'all'] +# @summary a list of allowed protocolls to match +type Ferm::Protocols = Enum['icmp', 'tcp', 'udp', 'udplite', 'icmpv6', 'esp', 'ah', 'sctp', 'mh', 'all'] |