Parcourir la source

Add support for using ipsets as sources in a zone

I wanted to be able to add an ipset as a source in the zone without using a rich rule.  I believe this change accomplishes that.  Tested and working on CentOS 7 (salt master and minion).
tags/v0.6.2
Paul Williams il y a 7 ans
Parent
révision
2fd70c9f41
Aucun compte lié à l'adresse e-mail de l'auteur
1 fichiers modifiés avec 10 ajouts et 0 suppressions
  1. +10
    -0
      firewalld/files/zone.xml

+ 10
- 0
firewalld/files/zone.xml Voir le fichier

@@ -23,6 +23,16 @@
{%- endif %}
{%- endfor %}
{%- endif %}
{%- if 'ipsets' in zone %}
{%- for v in zone.ipsets %}
{%- if 'comment' in v %}
<!-- {{ v.comment }} -->
<source ipset="{{ v.ipset }}" />
{%- else %}
<source ipset="{{ v }}" />
{%- endif %}
{%- endfor %}
{%- endif %}
{%- if 'services' in zone %}
{%- for v in zone.services %}
<service name="{{ v }}" />

Chargement…
Annuler
Enregistrer