summaryrefslogtreecommitdiff
path: root/puppet/modules/site_shorewall/manifests/monitor.pp
blob: af9f8bfe70a561af87389ba3e389193238e62d63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
class site_shorewall::monitor {

  include site_shorewall::defaults

  shorewall::rule {
      'net2fw-https':
        source      => 'net',
        destination => '$FW',
        action      => 'HTTPS(ACCEPT)',
        order       => 200;
      'net2fw-http':
        source      => 'net',
        destination => '$FW',
        action      => 'HTTP(ACCEPT)',
        order       => 200;
  }

}