No commit activity in last 3 years
No release in over 3 years
Itamae resource plugin to manage firewalld.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Development

~> 1.7
>= 0
~> 10.0
~> 3.0.1

Runtime

~> 1.6.0
 Project Readme

Itamae::Plugin::Resource::Firewalld

Itamae resource plugin to manage firewalld.

Build Status Coverage Status Code Climate

Usage

service 'firewalld' do
  action [:start, :enable]
end

firewalld_zone 'external' do
  interfaces %w(enp0s8 enp0s9)
  services   %w(ssh)

  masquerade true

  notifies  :restart, 'service[firewalld]'
end

firewalld_zone 'public' do
  interfaces %w(enp0s3)
  services   %w(ssh https mysql)
  ports      %w(8080/tcp 4243/udp)

  default_zone true

  notifies :restart, 'service[firewalld]'
end

After itamae execute:

$ sudo firewall-cmd --list-all --zone external
external (active)
  interfaces: enp0s8 enp0s9
  sources:
  services: ssh
  ports:
  masquerade: yes
  forward-ports:
  icmp-blocks:
  rich rules:

$ sudo firewall-cmd --list-all --zone public
public (default, active)
  interfaces: enp0s3
  sources:
  services: https mysql ssh
  ports: 4243/udp 8080/tcp
  masquerade: no
  forward-ports:
  icmp-blocks:
  rich rules:

See also

Demonstration environment examples

Installation

Add this line to your application's Gemfile:

gem 'itamae-plugin-resource-firewalld'

And then execute:

$ bundle

Or install it yourself as:

$ gem install itamae-plugin-resource-firewalld

Features

firewalld_zone

Provides a firewalld_zone resource that operation of Zone:

firewalld_zone 'zone_name' do
  name          # [String]

  interfaces    # [Array of string]
  sources       # [Array of string]
  services      # [Array of string]
  ports         # [Array of string]
  forward_ports # [Array of string]
  icmp_blocks   # [Array of string]
  rich_rules    # [Array of string]

  masquerade    # [True / False]
  default_zone  # [True] Ignored other
end

firewalld_service

Provides a firewalld_service resource that can create or delete of Service:

firewalld_service 'my-service' do
  action      # [:create or :delete]

  short       # [String]
  description # [String]
  ports       # [Array of String]
  module_name # [String]
  to_ipv4     # [String]
  to_ipv6     # [String]
end

After itamae execute, /etc/firewalld/service/my-service.xml is created.

IMPORTANT

itamae-plugin-resource-firewalld's resource performs the processing firewall-cmd with --permanent .

TODO

Unimplemented:

  • Add a new zone and icmptype resource
  • Operation of Direct, Lockdown
  • Etc...

I'll be waiting for your pull request 🙇

Contributing

  1. Fork it ( https://github.com/gongo/itamae-plugin-resource-firewalld/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request