summaryrefslogtreecommitdiff
path: root/puppet/modules/site_config/manifests/eip.pp
diff options
context:
space:
mode:
Diffstat (limited to 'puppet/modules/site_config/manifests/eip.pp')
-rw-r--r--puppet/modules/site_config/manifests/eip.pp29
1 files changed, 29 insertions, 0 deletions
diff --git a/puppet/modules/site_config/manifests/eip.pp b/puppet/modules/site_config/manifests/eip.pp
new file mode 100644
index 00000000..95f9dbf4
--- /dev/null
+++ b/puppet/modules/site_config/manifests/eip.pp
@@ -0,0 +1,29 @@
+class site_config::eip {
+ include site_openvpn
+ include site_openvpn::keys
+
+ #$tor=hiera('tor')
+ #notice("Tor enabled: $tor")
+
+ #$openvpn_configs=hiera('openvpn_server_configs')
+ #create_resources('site_openvpn::server_config', $openvpn_configs)
+
+ site_openvpn::server_config { 'tcp_config':
+ port => '1194',
+ proto => 'tcp',
+ local => $::ipaddress_eth0_1,
+ server => '10.1.0.0 255.255.248.0',
+ push => '"dhcp-option DNS 10.1.0.1"',
+ management => '127.0.0.1 1000'
+ }
+ site_openvpn::server_config { 'udp_config':
+ port => '1194',
+ proto => 'udp',
+ local => $::ipaddress_eth0_1,
+ server => '10.2.0.0 255.255.248.0',
+ push => '"dhcp-option DNS 10.2.0.1"',
+ management => '127.0.0.1 1001'
+ }
+
+ include site_shorewall::eip
+}