summaryrefslogtreecommitdiff
path: root/puppet/modules/site_shorewall/manifests/eip.pp
diff options
context:
space:
mode:
Diffstat (limited to 'puppet/modules/site_shorewall/manifests/eip.pp')
-rw-r--r--puppet/modules/site_shorewall/manifests/eip.pp42
1 files changed, 42 insertions, 0 deletions
diff --git a/puppet/modules/site_shorewall/manifests/eip.pp b/puppet/modules/site_shorewall/manifests/eip.pp
new file mode 100644
index 00000000..bfa77206
--- /dev/null
+++ b/puppet/modules/site_shorewall/manifests/eip.pp
@@ -0,0 +1,42 @@
+class site_shorewall::eip {
+
+ # be safe for development
+ $shorewall_startup='0'
+
+ include site_shorewall::defaults
+
+ shorewall::interface {'tun0':
+ zone => 'eip',
+ rfc1918 => $shorewall_rfc1918_maineth,
+ options => 'tcpflags,blacklist,nosmurfs'; }
+ shorewall::zone {'eip':
+ type => 'ipv4'; }
+ shorewall::routestopped {'eth0':
+ interface => 'eth0'; }
+
+ shorewall::policy {
+ 'all-to-all':
+ sourcezone => 'all',
+ destinationzone => 'all',
+ policy => 'DROP',
+ order => 200;
+ }
+
+ shorewall::rule {
+ 'all2all-ping':
+ source => 'all',
+ destination => 'all',
+ action => 'Ping(ACCEPT)',
+ order => 200;
+ 'all2all-ssh':
+ source => 'all',
+ destination => 'all',
+ action => 'SSH(ACCEPT)',
+ order => 200;
+ 'all2all-openvpn':
+ source => 'all',
+ destination => 'all',
+ action => 'OpenVPN(ACCEPT)',
+ order => 200;
+ }
+}