mirror of
https://github.com/ansible-lockdown/RHEL9-CIS.git
synced 2025-12-24 14:23:05 +00:00
11 lines
477 B
Django/Jinja
11 lines
477 B
Django/Jinja
#
|
|
# hosts.allow This file contains access rules which are used to
|
|
# allow or deny connections to network services that
|
|
# either use the tcp_wrappers library or that have been
|
|
# started through a tcp_wrappers-enabled xinetd.
|
|
#
|
|
# See 'man 5 hosts_options' and 'man 5 hosts_access'
|
|
# for information on rule syntax.
|
|
# See 'man tcpd' for information on tcp_wrappers
|
|
#
|
|
ALL: {% for iprange in rhel9cis_host_allow -%}{{ iprange }}{% if not loop.last %}, {% endif %}{% endfor %}
|