summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2016-01-12 15:47:58 -0200
committerSilvio Rhatto <rhatto@riseup.net>2016-01-12 15:47:58 -0200
commit6171b96c76116d1f1723f4ebb45f5b54cc36dad0 (patch)
tree02033d1a0ae4dd0c5bceff5f8ec0822b8b27435b
parent1da3a6387423c14aeaeb01368a212d7619cb6204 (diff)
downloadpuppet-firewall-6171b96c76116d1f1723f4ebb45f5b54cc36dad0.tar.gz
puppet-firewall-6171b96c76116d1f1723f4ebb45f5b54cc36dad0.tar.bz2
Increase default max bandwidth
-rw-r--r--manifests/init.pp4
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index 2bc59fa..b6a57c2 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -3,8 +3,8 @@ class firewall(
$device = hiera('firewall::device', 'eth0'),
$zone = hiera('firewall::zone', '-'),
$local_net = hiera('firewall::local_net', false),
- $in_bandwidth = hiera('firewall::in_bandwidth', '100mbps'),
- $out_bandwidth = hiera('firewall::out_bandwidth', '100mbps'),
+ $in_bandwidth = hiera('firewall::in_bandwidth', '1000mbps'),
+ $out_bandwidth = hiera('firewall::out_bandwidth', '1000mbps'),
$device_options = hiera('firewall::device_options', 'tcpflags,blacklist,routefilter,nosmurfs,logmartians'),
$vm_address = hiera('firewall::vm_address', '192.168.0.0/24'),
$vm_device = hiera('firewall::vm_device', false)