浏览代码

Merge pull request #8 from hoonetorg/firewalld04

firewalld 0.4 settings
tags/v0.6.2
Niels Abspoel 8 年前
父节点
当前提交
9d783b178a
共有 1 个文件被更改,包括 18 次插入0 次删除
  1. +18
    -0
      firewalld/files/firewalld.conf

+ 18
- 0
firewalld/files/firewalld.conf 查看文件

@@ -32,3 +32,21 @@ Lockdown={{ firewalld.lockdown|default('no') }}
# The rp_filter for IPv4 is controlled using sysctl.
# Default: yes
IPv6_rpfilter={{ firewalld.IPv6_rpfilter|default('yes') }}
{%- if firewalld.get('IndividualCalls', False) %}

# IndividualCalls
# Do not use combined -restore calls, but individual calls. This increases the
# time that is needed to apply changes and to start the daemon, but is good for
# debugging.
# Default: no
IndividualCalls={{ firewalld.IndividualCalls|default('no') }}
{%- endif %}
{%- if firewalld.get('LogDenied', False) %}

# LogDenied
# Add logging rules right before reject and drop rules in the INPUT, FORWARD
# and OUTPUT chains for the default rules and also final reject and drop rules
# in zones. Possible values are: all, unicast, broadcast, multicast and off.
# Default: off
LogDenied={{ firewalld.LogDenied|default('off') }}
{%- endif %}

正在加载...
取消
保存