]> gitweb.fluxo.info Git - puppet-shorewall.git/commitdiff
add nfsd port
authormh <mh@immerda.ch>
Mon, 28 Sep 2009 20:07:44 +0000 (22:07 +0200)
committerMicah Anderson <micah@riseup.net>
Mon, 7 Dec 2009 16:33:57 +0000 (11:33 -0500)
manifests/rules/nfsd.pp

index 23ed33c4cfa23b30e2fbf2d9012645e926e0380f..bd509cf28a4bf5b6c141298aeb8bd89be1f67f96 100644 (file)
@@ -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';
+    }
+
 }