Install SuSEfirewall2 Package
An XCCDF Rule
Description
The SuSEfirewall2
package can be installed with the following command:
$ sudo zypper install SuSEfirewall2
Rationale
The SuSEfirewall2 package should be installed to provide access control methods.
- ID
- xccdf_org.ssgproject.content_rule_package_SuSEfirewall2_installed
- Severity
- Medium
- References
- Updated
Remediation - OS Build Blueprint
[[packages]]
name = "SuSEfirewall2"
version = "*"
Remediation - Ansible
- name: Ensure SuSEfirewall2 is installed
package:
name: SuSEfirewall2
state: present
tags:
- CCE-83157-8
Remediation - Puppet
include install_SuSEfirewall2
class install_SuSEfirewall2 {
package { 'SuSEfirewall2':
ensure => 'installed',
}
Remediation - Shell Script
zypper install -y "SuSEfirewall2"