forked from ansible-lockdown/RHEL9-CIS
12 lines
477 B
Text
12 lines
477 B
Text
|
|
#
|
||
|
|
# 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 %}
|