diff --git a/CHANGELOG.md b/CHANGELOG.md index 0918a01..9c948ad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ cookbook-rb-firewall CHANGELOG =============== +## 0.1.0 + + - manegron + - [530f692] Merge pull request #2 from redBorder/fix_missing_ports + - [18d94f5] Add missing ports + ## 0.0.2 - Luis Blanco diff --git a/resources/attributes/default.rb b/resources/attributes/default.rb index 059914a..a66254d 100644 --- a/resources/attributes/default.rb +++ b/resources/attributes/default.rb @@ -5,14 +5,14 @@ 'home' => { 'tcp_ports' => [ 53, 443, 514, 2056, 2057, 2058, 2181, 2888, 3888, 4443, - 5432, 7946, 7980, 8080, 8081, 8083, 8084, 8300, 8301, - 8302, 8400, 8500, 9000, 9001, 9092, 27017, 50505], - 'udp_ports' => [123, 161, 162, 514, 1812, 1813, 2055, 5353, 6343], + 5432, 7946, 7980, 8001, 8080, 8081, 8083, 8084, 8300, 8301, + 8302, 8400, 8500, 9000, 9001, 9092, 11211, 27017, 50505], + 'udp_ports' => [53, 123, 161, 162, 514, 1812, 1813, 2055, 5353, 6343, 7946, 8301, 8302, 11211], 'protocols' => ['igmp'], }, 'public' => { - 'tcp_ports' => [53, 443, 514, 2056, 2057, 2058, 8080, 8081, 8083, 8084, 9000, 9001], - 'udp_ports' => [53, 161, 162, 123, 514, 2055, 6343, 5353], + 'tcp_ports' => [443, 514, 2056, 2057, 2058, 7779], + 'udp_ports' => [123, 161, 162, 514, 1812, 1813, 2055, 6343, 5353], 'protocols' => ['112'], 'rich_rules' => ['rule family="ipv4" source address="224.0.0.18" accept'], }, diff --git a/resources/metadata.rb b/resources/metadata.rb index c3d8070..b0c5a88 100644 --- a/resources/metadata.rb +++ b/resources/metadata.rb @@ -4,4 +4,4 @@ maintainer_email 'git@redborder.com' license 'AGPL-3.0' description 'Installs/Configures Firewall' -version '0.0.2' +version '0.1.0'