Subversion Repositories configs

Rev

Rev 203 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
192 - 1
# firewalld config file
2
 
3
# default zone
4
# The default zone used if an empty zone string is used.
5
# Default: public
6
DefaultZone=public
7
 
8
# Clean up on exit
9
# If set to no or false the firewall configuration will not get cleaned up
209 - 10
# on exit or stop of firewalld.
192 - 11
# Default: yes
12
CleanupOnExit=yes
13
 
209 - 14
# Clean up kernel modules on exit
15
# If set to yes or true the firewall related kernel modules will be
16
# unloaded on exit or stop of firewalld. This might attempt to unload
17
# modules not originally loaded by firewalld.
18
# Default: yes
19
CleanupModulesOnExit=yes
20
 
192 - 21
# Lockdown
22
# If set to enabled, firewall changes with the D-Bus interface will be limited
23
# to applications that are listed in the lockdown whitelist.
24
# The lockdown whitelist file is lockdown-whitelist.xml
25
# Default: no
26
Lockdown=no
27
 
28
# IPv6_rpfilter
29
# Performs a reverse path filter test on a packet for IPv6. If a reply to the
30
# packet would be sent via the same interface that the packet arrived on, the
31
# packet will match and be accepted, otherwise dropped.
32
# The rp_filter for IPv4 is controlled using sysctl.
203 - 33
# Note: This feature has a performance impact. See man page FIREWALLD.CONF(5)
34
# for details.
192 - 35
# Default: yes
36
IPv6_rpfilter=yes
37
 
38
# IndividualCalls
39
# Do not use combined -restore calls, but individual calls. This increases the
40
# time that is needed to apply changes and to start the daemon, but is good for
41
# debugging.
42
# Default: no
43
IndividualCalls=no
44
 
45
# LogDenied
46
# Add logging rules right before reject and drop rules in the INPUT, FORWARD
47
# and OUTPUT chains for the default rules and also final reject and drop rules
48
# in zones. Possible values are: all, unicast, broadcast, multicast and off.
49
# Default: off
50
LogDenied=off
51
 
52
# FirewallBackend
53
# Selects the firewall backend implementation.
54
# Choices are:
55
#	- nftables (default)
56
#	- iptables (iptables, ip6tables, ebtables and ipset)
57
FirewallBackend=nftables
58
 
59
# FlushAllOnReload
60
# Flush all runtime rules on a reload. In previous releases some runtime
61
# configuration was retained during a reload, namely; interface to zone
62
# assignment, and direct rules. This was confusing to users. To get the old
63
# behavior set this to "no".
64
# Default: yes
65
FlushAllOnReload=yes
66
 
67
# RFC3964_IPv4
68
# As per RFC 3964, filter IPv6 traffic with 6to4 destination addresses that
69
# correspond to IPv4 addresses that should not be routed over the public
70
# internet.
71
# Defaults to "yes".
72
RFC3964_IPv4=yes
73
 
74
# AllowZoneDrifting
75
# Older versions of firewalld had undocumented behavior known as "zone
76
# drifting". This allowed packets to ingress multiple zones - this is a
77
# violation of zone based firewalls. However, some users rely on this behavior
78
# to have a "catch-all" zone, e.g. the default zone. You can enable this if you
79
# desire such behavior. It's disabled by default for security reasons.
80
# Note: If "yes" packets will only drift from source based zones to interface
81
# based zones (including the default zone). Packets never drift from interface
82
# based zones to other interfaces based zones (including the default zone).
83
# Possible values; "yes", "no". Defaults to "yes".
84
AllowZoneDrifting=yes