From: mh Date: Mon, 28 Sep 2009 20:07:44 +0000 (+0200) Subject: add nfsd port X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=f3b1efbc3f39f9d4bf7ac8cda90f13038f9d756f;p=puppet-shorewall.git add nfsd port --- 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'; + } + }