diff options
author | varac <varacanero@zeromail.org> | 2013-03-07 17:16:09 +0100 |
---|---|---|
committer | varac <varacanero@zeromail.org> | 2013-07-09 14:16:59 +0200 |
commit | 4ceba14f444e41dc7dcc9f2176f4bf464f5286cd (patch) | |
tree | c43b285681745059e5575e667aed40c2ea6070e7 /puppet | |
parent | 1d1afa65b9072cbc59b45d2fcdc77707e31a97ae (diff) |
shorewall rules for site_mx
Diffstat (limited to 'puppet')
-rw-r--r-- | puppet/modules/site_shorewall/manifests/mx.pp | 24 | ||||
-rw-r--r-- | puppet/modules/site_shorewall/manifests/service/smtp.pp | 13 |
2 files changed, 37 insertions, 0 deletions
diff --git a/puppet/modules/site_shorewall/manifests/mx.pp b/puppet/modules/site_shorewall/manifests/mx.pp new file mode 100644 index 00000000..5ec95fdd --- /dev/null +++ b/puppet/modules/site_shorewall/manifests/mx.pp @@ -0,0 +1,24 @@ +class site_shorewall::mx { + + include site_shorewall::defaults + + $smtpd_ports = '25' + + # define macro for incoming services + file { '/etc/shorewall/macro.leap_mx': + content => "PARAM - - tcp ${smtpd_ports} ", + notify => Service['shorewall'], + require => Package['shorewall'] + } + + + shorewall::rule { + 'net2fw-mx': + source => 'net', + destination => '$FW', + action => 'leap_mx(ACCEPT)', + order => 200; + } + + include site_shorewall::service::smtp +} diff --git a/puppet/modules/site_shorewall/manifests/service/smtp.pp b/puppet/modules/site_shorewall/manifests/service/smtp.pp new file mode 100644 index 00000000..7fbdf14e --- /dev/null +++ b/puppet/modules/site_shorewall/manifests/service/smtp.pp @@ -0,0 +1,13 @@ +class site_shorewall::service::smtp { + + include site_shorewall::defaults + + shorewall::rule { + 'fw2net-http': + source => '$FW', + destination => 'net', + action => 'SMTP(ACCEPT)', + order => 200; + } + +} |