diff --git a/ansible/firewall.yml b/ansible/firewall.yml
index d099aaa7e2324c8357a0fd3721122cb8fd786fcd..c133fb01184d71459298976fdde4b594183a77e4 100644
--- a/ansible/firewall.yml
+++ b/ansible/firewall.yml
@@ -1,6 +1,6 @@
 ---
 - name: Ensure firewall is configured
-  hosts: seed-hypervisor:seed:overcloud
+  hosts: seed-hypervisor:seed:overcloud:infra-vms
   tags:
     - config
     - firewall
diff --git a/ansible/group_vars/all/infra-vms b/ansible/group_vars/all/infra-vms
index 0d197791d9860fd354d55ac38f2ed3280f689f64..aa9e19e1d345b222b91d189ffc1739ac801d2e48 100644
--- a/ansible/group_vars/all/infra-vms
+++ b/ansible/group_vars/all/infra-vms
@@ -171,3 +171,24 @@ infra_vm_sysctl_parameters: {}
 # List of users to create. This should be in a format accepted by the
 # singleplatform-eng.users role.
 infra_vm_users: "{{ users_default }}"
+
+###############################################################################
+# Infrastructure VM node firewalld configuration.
+
+# Whether to install and enable firewalld.
+infra_vm_firewalld_enabled: false
+
+# A list of zones to create. Each item is a dict containing a 'zone' item.
+infra_vm_firewalld_zones: []
+
+# A firewalld zone to set as the default. Default is unset, in which case the
+# default zone will not be changed.
+infra_vm_firewalld_default_zone:
+
+# A list of firewall rules to apply. Each item is a dict containing arguments
+# to pass to the firewalld module. Arguments are omitted if not provided, with
+# the following exceptions:
+# - offline: true
+# - permanent: true
+# - state: enabled
+infra_vm_firewalld_rules: []
diff --git a/ansible/group_vars/infra-vms/firewall b/ansible/group_vars/infra-vms/firewall
new file mode 100644
index 0000000000000000000000000000000000000000..089926ec592d673762ccb73070a00eb1f15bc0d4
--- /dev/null
+++ b/ansible/group_vars/infra-vms/firewall
@@ -0,0 +1,21 @@
+---
+###############################################################################
+# Infra VM node firewalld configuration.
+
+# Whether to install and enable firewalld.
+firewalld_enabled: "{{ infra_vm_firewalld_enabled }}"
+
+# A list of zones to create. Each item is a dict containing a 'zone' item.
+firewalld_zones: "{{ infra_vm_firewalld_zones }}"
+
+# A firewalld zone to set as the default. Default is unset, in which case the
+# default zone will not be changed.
+firewalld_default_zone: "{{ infra_vm_firewalld_default_zone }}"
+
+# A list of firewall rules to apply. Each item is a dict containing arguments
+# to pass to the firewalld module. Arguments are omitted if not provided, with
+# the following exceptions:
+# - offline: true
+# - permanent: true
+# - state: enabled
+firewalld_rules: "{{ infra_vm_firewalld_rules }}"
diff --git a/doc/source/configuration/reference/hosts.rst b/doc/source/configuration/reference/hosts.rst
index de19ab6315c9afc1013bccca20176100581cf2ef..1203e6fa06f41dc4b8b3c6a5f0504dbb0b0db45f 100644
--- a/doc/source/configuration/reference/hosts.rst
+++ b/doc/source/configuration/reference/hosts.rst
@@ -348,6 +348,7 @@ The following variables can be used to set whether to enable firewalld:
 
 * ``seed_hypervisor_firewalld_enabled``
 * ``seed_firewalld_enabled``
+* ``infra_vm_firewalld_enabled``
 * ``compute_firewalld_enabled``
 * ``controller_firewalld_enabled``
 * ``monitoring_firewalld_enabled``
@@ -358,6 +359,7 @@ list of zones to create. Each item is a dict containing a ``zone`` item:
 
 * ``seed_hypervisor_firewalld_zones``
 * ``seed_firewalld_zones``
+* ``infra_vm_firewalld_zones``
 * ``compute_firewalld_zones``
 * ``controller_firewalld_zones``
 * ``monitoring_firewalld_zones``
@@ -368,6 +370,7 @@ unset, in which case the default zone will not be changed:
 
 * ``seed_hypervisor_firewalld_default_zone``
 * ``seed_firewalld_default_zone``
+* ``infra_vm_firewalld_default_zone``
 * ``compute_firewalld_default_zone``
 * ``controller_firewalld_default_zone``
 * ``monitoring_firewalld_default_zone``
@@ -381,6 +384,7 @@ are omitted if not provided, with the following exceptions: ``offline``
 
 * ``seed_hypervisor_firewalld_rules``
 * ``seed_firewalld_rules``
+* ``infra_vm_firewalld_rules``
 * ``compute_firewalld_rules``
 * ``controller_firewalld_rules``
 * ``monitoring_firewalld_rules``
diff --git a/etc/kayobe/infra-vms.yml b/etc/kayobe/infra-vms.yml
index e5762b16117a6c38048905d88e9aa4817508c984..c4dedb8aa06b17b334602f7fcd8267bcb2228b08 100644
--- a/etc/kayobe/infra-vms.yml
+++ b/etc/kayobe/infra-vms.yml
@@ -141,6 +141,27 @@
 # singleplatform-eng.users role.
 #infra_vm_users:
 
+###############################################################################
+# Infrastructure VM node firewalld configuration.
+
+# Whether to install and enable firewalld.
+#infra_vm_firewalld_enabled:
+
+# A list of zones to create. Each item is a dict containing a 'zone' item.
+#infra_vm_firewalld_zones:
+
+# A firewalld zone to set as the default. Default is unset, in which case the
+# default zone will not be changed.
+#infra_vm_firewalld_default_zone:
+
+# A list of firewall rules to apply. Each item is a dict containing arguments
+# to pass to the firewalld module. Arguments are omitted if not provided, with
+# the following exceptions:
+# - offline: true
+# - permanent: true
+# - state: enabled
+#infra_vm_firewalld_rules:
+
 ###############################################################################
 # Dummy variable to allow Ansible to accept this file.
 workaround_ansible_issue_8743: yes
diff --git a/kayobe/cli/commands.py b/kayobe/cli/commands.py
index 71018d81acb8b0441ce70e03bc752366259ff398..0ceeb39e3c23ae2beffa977cc61dea14845353f8 100644
--- a/kayobe/cli/commands.py
+++ b/kayobe/cli/commands.py
@@ -884,6 +884,7 @@ class InfraVMHostConfigure(KayobeAnsibleMixin, VaultMixin,
     * Configure user accounts, group associations, and authorised SSH keys.
     * Disable SELinux.
     * Configure the host's network interfaces.
+    * Configure a firewall.
     * Set sysctl parameters.
     * Disable bootstrap interface configuration.
     * Configure timezone.
@@ -915,7 +916,7 @@ class InfraVMHostConfigure(KayobeAnsibleMixin, VaultMixin,
         if parsed_args.wipe_disks:
             playbooks += _build_playbook_list("wipe-disks")
         playbooks += _build_playbook_list(
-            "users", "dev-tools", "disable-selinux", "network",
+            "users", "dev-tools", "disable-selinux", "network", "firewall",
             "sysctl", "disable-glean", "disable-cloud-init", "time",
             "mdadm", "luks", "lvm", "docker-devicemapper", "docker")
         self.run_kayobe_playbooks(parsed_args, playbooks, limit="infra-vms")
diff --git a/kayobe/tests/unit/cli/test_commands.py b/kayobe/tests/unit/cli/test_commands.py
index b600ce7adbb67e617b04e35294bd20218b3e7ce1..fb207a5680aad5c44d28b8e81ba5cdae021bfca6 100644
--- a/kayobe/tests/unit/cli/test_commands.py
+++ b/kayobe/tests/unit/cli/test_commands.py
@@ -1000,6 +1000,7 @@ class TestCase(unittest.TestCase):
                     utils.get_data_files_path(
                         "ansible", "disable-selinux.yml"),
                     utils.get_data_files_path("ansible", "network.yml"),
+                    utils.get_data_files_path("ansible", "firewall.yml"),
                     utils.get_data_files_path("ansible", "sysctl.yml"),
                     utils.get_data_files_path("ansible", "disable-glean.yml"),
                     utils.get_data_files_path(