Skip to content

Uninstall quagga Package

An XCCDF Rule

Description

The quagga package can be removed with the following command:

 $ sudo yum erase quagga

Rationale

Routing software is typically used on routers to exchange network topology information with other routers. If routing software is used when not required, system network information may be unnecessarily transmitted across the network.
If there is no need to make the router software available, removing it provides a safeguard against its activation.

ID
xccdf_org.ssgproject.content_rule_package_quagga_removed
Severity
Low
References
Updated



Remediation - Puppet

include remove_quagga

class remove_quagga {
  package { 'quagga':
    ensure => 'purged',
  }

Remediation - Ansible

- name: Ensure quagga is removed
  package:
    name: quagga
    state: absent
  tags:
  - NIST-800-53-CM-6(a)

Remediation - Anaconda Pre-Install Instructions


package --remove=quagga

Remediation - Shell Script


# CAUTION: This remediation script will remove quagga
#	   from the system, and may remove any packages
#	   that depend on quagga. Execute this
#	   remediation AFTER testing on a non-production
#	   system!