diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2015-03-30 10:08:45 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2015-03-30 10:08:45 -0300 |
commit | bdc206ee9e4bb7d61f09dd7bd3f02fce7535f996 (patch) | |
tree | 24e2c3e16f7efc28dd2e83c36a10381cbd11442f /manifests | |
parent | cf16f46e37457179e02f49abbd6f7c2eda28f88a (diff) | |
download | puppet-firewall-bdc206ee9e4bb7d61f09dd7bd3f02fce7535f996.tar.gz puppet-firewall-bdc206ee9e4bb7d61f09dd7bd3f02fce7535f996.tar.bz2 |
Increase default bandwidth
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/init.pp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index 52dd6e1..4f9abef 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', '2mbit'), - $out_bandwidth = hiera('firewall::out_bandwidth', '2mbit'), + $in_bandwidth = hiera('firewall::in_bandwidth', '100mbit'), + $out_bandwidth = hiera('firewall::out_bandwidth', '100mbit'), $device_options = hiera('firewall::device_options', 'tcpflags,blacklist,routefilter,nosmurfs,logmartians') ) { class { 'shorewall': } |