diff options
Diffstat (limited to 'manifests/rules')
| -rw-r--r-- | manifests/rules/nfsd.pp | 17 | 
1 files changed, 17 insertions, 0 deletions
diff --git a/manifests/rules/nfsd.pp b/manifests/rules/nfsd.pp index 23ed33c..bd509cf 100644 --- a/manifests/rules/nfsd.pp +++ b/manifests/rules/nfsd.pp @@ -95,4 +95,21 @@ class shorewall::rules::nfsd {          order           => 240,          action          => 'ACCEPT';      } +    shorewall::rule { 'net-me-rpc.nfsd-tcp': +        source          => 'net', +        destination     => '$FW', +        proto           => 'tcp', +        destinationport => '2049', +        order           => 240, +        action          => 'ACCEPT'; +    } +    shorewall::rule { 'net-me-rpc.nfsd-udp': +        source          => 'net', +        destination     => '$FW', +        proto           => 'udp', +        destinationport => '2049', +        order           => 240, +        action          => 'ACCEPT'; +    } +  }  | 
