Browse Source

Add support for inet6 ipsets.

tags/v0.6.2
Valentin Bud 6 years ago
parent
commit
d1d7a9186c
2 changed files with 20 additions and 1 deletions
  1. +5
    -0
      firewalld/files/ipset.xml
  2. +15
    -1
      pillar.example

+ 5
- 0
firewalld/files/ipset.xml View File

@@ -27,6 +27,11 @@
<option name="hashsize" value="{{ v }}"/>
{%- endfor %}
{%- endif %}
{%- if 'family' in ipset.options %}
{%- for v in ipset.options.family %}
<option name="family" value="{{ v }}"/>
{%- endfor %}
{%- endif %}
{%- endif %}
{%- if 'entries' in ipset %}
{%- for v in ipset.entries %}

+ 15
- 1
pillar.example View File

@@ -63,6 +63,21 @@ firewalld:
- 1024
entries:
- 10.0.0.1
fail2ban-ssh-ipv6:
short: fail2ban-ssh-ipv6
description: fail2ban-ssh-ipv6 ipset
type: 'hash:ip'
options:
family:
- inet6
maxelem:
- 65536
timeout:
- 300
hashsize:
- 1024
entries:
- 2a01::1

zones:
public:
@@ -119,4 +134,3 @@ firewalld:
MYPASSTHROUGH:
ipv: ipv4
args: "-t raw -A MYCHAIN -j DROP"


Loading…
Cancel
Save