firewall icon indicating copy to clipboard operation
firewall copied to clipboard

Configure firewalld and system-config-firewall

Results 10 firewall issues
Sort by recently updated
recently updated
newest added

This PR is for the purpose of triggering periodic CI testing. We don't currently have a way to trigger CI without a PR, so this PR serves that purpose.

**What would you like to be added**: The `firewall` variable is not ansible-lint compliant: ```Ansible - name: Test hosts: localhost tasks: - name: Configure Firewall for Web Console ansible.builtin.include_role: name:...

Since replacing previous rules causes firewalld restart it is not suitable for most production environments. In case not replacing previous rules the defined configuration may not be what is in...

**What would you like to be added**: I could'nt come up with an easy solution for dynamically overwrite or not overwrite the whole firewall config depending on a boolean. Why...

**What would you like to be added**: I want to manage des protocols of a zone by using this role. `#> firewall-cmd --zone=block --add-protocol=ipv6-icmp` **Why is this needed**: For Ipv6...

**What would you like to be added**: I would like to add and modify policies in the same way services are modified. ```yaml firewall: - policy: test priority: -15000 target:...

**What happened**: I am using the firewall role with the following definition: ```yml firewall: # Wipe existing config and replace with the config defined below. - previous: replaced # For...

Some roles produce ansible/test logs which are too large to sensibly/comfortably view in the main workflow log view. Show only the interesting failures there (the lines around `fatal:`) and upload...

Feature: Allow for includes to be specified for services. Includes are described at https://firewalld.org/documentation/man-pages/firewalld.service.html Reason: This makes firewalld services more explicit and easier / quicker to read when there are...

**What would you like to be added**: Allow for `includes` when defining a custom service (https://firewalld.org/documentation/man-pages/firewalld.service.html), e.g. ```yml - name: Run firewall role ansible.builtin.include_role: name: fedora.linux_system_roles.firewall vars: firewall_disable_conflicting_services: true firewall:...