]> git.ipfire.org Git - thirdparty/libvirt.git/commit
network: explicitly allow icmp/icmpv6 in libvirt zonefile
authorLaine Stump <laine@laine.org>
Thu, 14 Feb 2019 19:33:34 +0000 (14:33 -0500)
committerLaine Stump <laine@laine.org>
Thu, 14 Feb 2019 20:06:42 +0000 (15:06 -0500)
commit41adfe8ca932e9fa34cd1b3f238c17b52e6b3888
tree7499d7b482302e7f73a08eaa2f6f7fc5de3ed638
parentfa5db009c98fd0363b69d225704b9346930fd926
network: explicitly allow icmp/icmpv6 in libvirt zonefile

The libvirt zonefile for firewalld (added in commit 3b71f2e4) does the
following:

1) lists specific services it wants to allow, then

2) uses a lower priority <reject/> rule to block all other services to
   the host, and then finally,

3) relies on the zone's default "accept" policy to, accept all
   forwarded traffic (since forwarded traffic is ignored by the
   slightly higher priority <reject/> rule in (2)).

I had assumed that icmp traffic was either being allowed at the top of
the rules, or that it would be ignored by the <reject/> rule and
passed by the default accept policy (similar to forwarded traffic),
but this assumption was incorrect; the <reject/> rule does block icmp
traffic. This became apparent when DHCPv6 which requires ICMPv6 in
addition to udp/dhcpv6) failed to work.

This all means that in order to achieve our original goal of "similar
behavior to a default reject policy, but also allowing forwarded
traffic", we need to add rules to allow all icmp and icmpv6 traffic to
the libvirt zone, and that's what this patch does.

This is a further refinement of the resolution to
https://bugzilla.redhat.com/1650320

Signed-off-by: Laine Stump <laine@laine.org>
Acked-by: Eric Garver <eric@garver.life>
src/network/libvirt.zone