From 3bc3cca757448549c4973f499932b48aaea6f218 Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Sat, 5 Mar 2016 11:52:31 -0300 Subject: Make traffic shaping optional --- manifests/shaping.pp | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 manifests/shaping.pp (limited to 'manifests/shaping.pp') diff --git a/manifests/shaping.pp b/manifests/shaping.pp new file mode 100644 index 0000000..63bd464 --- /dev/null +++ b/manifests/shaping.pp @@ -0,0 +1,46 @@ +class firewall::shaping( + $device = hiera('firewall::device', 'eth0'), + $in_bandwidth = hiera('firewall::in_bandwidth', '1000mbps'), + $out_bandwidth = hiera('firewall::out_bandwidth', '1000mbps') +) { + # + # Traffic shaping + # + shorewall::tcdevices { "${device}": + in_bandwidth => "$in_bandwidth", + out_bandwidth => "$out_bandwidth", + } + + shorewall::tcrules { "ssh-tcp": + order => "1", + source => "0.0.0.0/0", + destination => "0.0.0.0/0", + protocol => "tcp", + ports => "22", + } + + shorewall::tcrules { "ssh-udp": + order => "1", + source => "0.0.0.0/0", + destination => "0.0.0.0/0", + protocol => "udp", + ports => "22", + } + + shorewall::tcclasses { "ssh": + order => "1", + interface => "${device}", + rate => "4*full/100", + ceil => "full", + priority => "1", + } + + shorewall::tcclasses { "default": + order => "2", + interface => "${device}", + rate => "6*full/100", + ceil => "full", + priority => "2", + options => "default", + } +} -- cgit v1.2.3