summaryrefslogtreecommitdiff
path: root/puppet/modules/shorewall/manifests/rules/keyserver.pp
blob: 2ade9c1eff2ac5d0c7ecadb106f5acf12569082c (plain)
1
2
3
4
5
6
7
8
9
10
11
class shorewall::rules::keyserver {
	shorewall::rule {
		'net-me-tcp_keyserver':
      source      => 'net',
  		destination     => '$FW',
	  	proto           => 'tcp',
		  destinationport => '11371,11372',
   		order           => 240,
	    action          => 'ACCEPT';
	}
}