firewalld / firewalld

Stateful zone based firewall daemon with D-Bus interface
GNU General Public License v2.0
877 stars 275 forks source link

Firewalld ignores permanent manual zone assignment on restart #547

Closed hexchain closed 4 years ago

hexchain commented 4 years ago

Arch Linux, firewalld 0.8.0-1, networkmanager 1.20.8-1.

I'm using NM to control Wi-Fi interfaces, and other interfaces, such as ZeroTier, are ignored and unmanaged, as set in /etc/NetworkManager/NetworkManager.conf.

If for example the ZT interface is assigned to "internal" in firewalld both at runtime and permanently, it is written to /etc/firewalld/internal.xml, and the zone is active:

% firewall-cmd --get-active-zones
internal
  interfaces: ztxxxx
work
  interfaces: wlp58s0

But after restarting firewalld, the ZT interface is not assigned to "internal" zone anymore, and the zone is no longer active, until firewall-cmd --reload.

erig0 commented 4 years ago

This sounds like NM is not notifying firewalld of the zone assignment after firewalld restarts. In cd97204a06f32, we made a change to proactively ask NM about assignments during a reload - this explains why the reload case works. I suppose we could do the same on a cold start().

@thom311, if firewalld restarts will NM re-send the interface to zone assignments when it comes back? i.e. call dbus method changeZoneOfInterface()

thom311 commented 4 years ago

I don't know what changeZoneOfInterface() is. NM only calls 3 possible D-Bus methods: addInterface(), changeZone(), removeInterface().

Anyway, so NM watches the D-Bus name owner of firewalld, and when firewalld reappears, it will should changeZone() on the interfaces where a Zone should be configured. So, yes, this could be NM's doing. Enable level=TRACE logging of NM and grep for firewall: to see whether that is indeed happening...

hexchain commented 4 years ago

Actually, the interface managed by NM gets its zone assigned correctly. It's the unmanaged interface that is ignored by firewalld.

~ % sudo systemctl start firewalld.service
~ % firewall-cmd --get-active-zones  # note that ztxxxx did not show up here
home
  interfaces: wlp58s0
~ % firewall-cmd --reload          
success
~ % firewall-cmd --get-active-zones
home
  interfaces: wlp58s0
internal
  interfaces: ztxxxx

Sorry for the vagueness.

erig0 commented 4 years ago

@hexchain, can you post you internal.xml and any firewalld warning/errors from the logs during a restart.

hexchain commented 4 years ago

@erig0 Sure.

internal.xml:

<?xml version="1.0" encoding="utf-8"?>                                                                                                                                                                 
<zone>                                                                                                                                                                                                 
  <short>Internal</short>                                                                                                                                                                              
  <description>For use on internal networks. You mostly trust the other computers on the networks to not harm your computer. Only selected incoming connections are accepted.</description>            
  <interface name="ztxxxx"/>                                                                   
</zone>                                                                                                                                                                                                
Firewalld startup log with --debug 1 ``` Nov 27 14:24:26 host systemd[1]: Starting firewalld - dynamic firewall daemon... Nov 27 14:24:26 host systemd[1]: Started firewalld - dynamic firewall daemon. Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: start() Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading firewalld config file '/etc/firewalld/firewalld.conf' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: CleanupOnExit is set to 'False' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: IPV6 rpfilter is disabled Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: LogDenied is set to 'off' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: FirewallBackend is set to 'nftables' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: FlushAllOnReload is set to 'True' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: RFC3964_IPv4 is set to 'True' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: ebtables-restore is not supporting the --noflush option, will therefore not be used Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading lockdown whitelist Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/address-unreachable.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/bad-header.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/beyond-scope.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/communication-prohibited.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/destination-unreachable.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/echo-reply.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/echo-request.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/failed-policy.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/fragmentation-needed.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/host-precedence-violation.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/host-prohibited.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/host-redirect.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/host-unknown.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/host-unreachable.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/ip-header-bad.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/neighbour-advertisement.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/neighbour-solicitation.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/network-prohibited.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/network-redirect.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/network-unknown.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/network-unreachable.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/no-route.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/packet-too-big.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/parameter-problem.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/port-unreachable.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/precedence-cutoff.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/protocol-unreachable.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/redirect.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/reject-route.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/required-option-missing.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/router-advertisement.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/router-solicitation.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/source-quench.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/source-route-failed.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/time-exceeded.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/timestamp-reply.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/timestamp-request.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/tos-host-redirect.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/tos-host-unreachable.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/tos-network-redirect.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/tos-network-unreachable.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/ttl-zero-during-reassembly.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/ttl-zero-during-transit.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/unknown-header-type.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/unknown-option.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading helper file '/usr/lib/firewalld/helpers/Q.931.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading helper file '/usr/lib/firewalld/helpers/RAS.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading helper file '/usr/lib/firewalld/helpers/amanda.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading helper file '/usr/lib/firewalld/helpers/ftp.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading helper file '/usr/lib/firewalld/helpers/h323.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading helper file '/usr/lib/firewalld/helpers/irc.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading helper file '/usr/lib/firewalld/helpers/netbios-ns.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading helper file '/usr/lib/firewalld/helpers/pptp.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading helper file '/usr/lib/firewalld/helpers/proto-gre.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading helper file '/usr/lib/firewalld/helpers/sane.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading helper file '/usr/lib/firewalld/helpers/sip.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading helper file '/usr/lib/firewalld/helpers/snmp.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading helper file '/usr/lib/firewalld/helpers/tftp.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/RH-Satellite-6.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/amanda-client.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/amanda-k5-client.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/amqp.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/amqps.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/apcupsd.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/audit.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/bacula-client.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/bacula.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/bb.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/bgp.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/bitcoin-rpc.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/bitcoin-testnet-rpc.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/bitcoin-testnet.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/bitcoin.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/bittorrent-lsd.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/ceph-mon.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/ceph.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/cfengine.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/cockpit.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/condor-collector.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/ctdb.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/dhcp.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/dhcpv6-client.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/dhcpv6.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/distcc.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/dns-over-tls.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/dns.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/docker-registry.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/docker-swarm.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/dropbox-lansync.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/elasticsearch.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/etcd-client.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/etcd-server.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/finger.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/freeipa-4.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/freeipa-ldap.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/freeipa-ldaps.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/freeipa-replication.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/freeipa-trust.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/ftp.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/ganglia-client.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/ganglia-master.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/git.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/grafana.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/gre.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/high-availability.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/http.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/https.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/imap.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/imaps.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/ipp-client.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/ipp.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/ipsec.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/irc.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/ircs.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/iscsi-target.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/isns.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/jenkins.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/kadmin.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/kdeconnect.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/kerberos.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/kibana.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/klogin.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/kpasswd.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/kprop.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/kshell.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/kube-apiserver.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/ldap.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/ldaps.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/libvirt-tls.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/libvirt.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/lightning-network.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/llmnr.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/managesieve.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/matrix.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/mdns.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/memcache.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/minidlna.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/mongodb.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/mosh.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/mountd.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/mqtt-tls.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/mqtt.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/ms-wbt.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/mssql.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/murmur.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/mysql.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/nfs.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/nfs3.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/nmea-0183.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/nrpe.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/ntp.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/nut.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/openvpn.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/ovirt-imageio.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/ovirt-storageconsole.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/ovirt-vmconsole.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/plex.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/pmcd.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/pmproxy.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/pmwebapi.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/pmwebapis.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/pop3.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/pop3s.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/postgresql.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/privoxy.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/prometheus.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/proxy-dhcp.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/ptp.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/pulseaudio.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/puppetmaster.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/quassel.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/radius.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/rdp.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/redis-sentinel.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/redis.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/rpc-bind.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/rsh.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/rsyncd.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/rtsp.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/salt-master.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/samba-client.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/samba-dc.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/samba.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/sane.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/sip.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/sips.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/slp.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/smtp-submission.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/smtp.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/smtps.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/snmp.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/snmptrap.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/spideroak-lansync.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/spotify-sync.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/squid.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/ssdp.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/ssh.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/steam-streaming.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/svdrp.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/svn.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/syncthing-gui.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/syncthing.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/synergy.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/syslog-tls.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/syslog.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/telnet.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/tentacle.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/tftp-client.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/tftp.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/tile38.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/tinc.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/tor-socks.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/transmission-client.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/upnp-client.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/vdsm.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/vnc-server.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/wbem-http.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/wbem-https.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/wsman.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/wsmans.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/xdmcp.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/xmpp-bosh.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/xmpp-client.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/xmpp-local.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/xmpp-server.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/zabbix-agent.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/usr/lib/firewalld/services/zabbix-server.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/etc/firewalld/services/babeld.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading service file '/etc/firewalld/services/zerotier-one.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading zone file '/usr/lib/firewalld/zones/block.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading zone file '/usr/lib/firewalld/zones/dmz.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading zone file '/usr/lib/firewalld/zones/drop.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading zone file '/usr/lib/firewalld/zones/external.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading zone file '/usr/lib/firewalld/zones/home.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading zone file '/usr/lib/firewalld/zones/internal.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading zone file '/usr/lib/firewalld/zones/libvirt.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading zone file '/usr/lib/firewalld/zones/public.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading zone file '/usr/lib/firewalld/zones/trusted.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading zone file '/usr/lib/firewalld/zones/work.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading zone file '/etc/firewalld/zones/dmz.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Overloads zone 'dmz' ('/usr/lib/firewalld/zones/dmz.xml') Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading zone file '/etc/firewalld/zones/entropy.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading zone file '/etc/firewalld/zones/external.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Overloads zone 'external' ('/usr/lib/firewalld/zones/external.xml') Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading zone file '/etc/firewalld/zones/home.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Overloads zone 'home' ('/usr/lib/firewalld/zones/home.xml') Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading zone file '/etc/firewalld/zones/internal.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Overloads zone 'internal' ('/usr/lib/firewalld/zones/internal.xml') Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading zone file '/etc/firewalld/zones/libvirt.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Overloads zone 'libvirt' ('/usr/lib/firewalld/zones/libvirt.xml') Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading zone file '/etc/firewalld/zones/public.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Overloads zone 'public' ('/usr/lib/firewalld/zones/public.xml') Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading zone file '/etc/firewalld/zones/trusted.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Overloads zone 'trusted' ('/usr/lib/firewalld/zones/trusted.xml') Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Loading zone file '/etc/firewalld/zones/work.xml' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Overloads zone 'work' ('/usr/lib/firewalld/zones/work.xml') Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Using default zone 'public' Nov 27 14:24:26 host firewalld[121755]: 2019-11-27 14:24:26 DEBUG1: Flushing rule set Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: Applying default rule set Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: Applying used zones Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: Applying zone 'block' Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: Applying zone 'dmz' Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: Applying zone 'drop' Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: Applying zone 'entropy' Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: Applying zone 'external' Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: Applying zone 'home' Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: Applying zone 'internal' Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: Setting zone of interface 'ztxxxx' to 'internal' Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: Applying zone 'libvirt' Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: Applying zone 'public' Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: Applying zone 'trusted' Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: Applying zone 'work' Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: Traceback (most recent call last): Nov 27 14:24:27 host firewalld[121755]: File "/usr/lib/python3.8/site-packages/firewall/core/fw_transaction.py", line 128, in execute Nov 27 14:24:27 host firewalld[121755]: self.fw.rules(backend_name, rules[backend_name]) Nov 27 14:24:27 host firewalld[121755]: File "/usr/lib/python3.8/site-packages/firewall/core/fw.py", line 858, in rules Nov 27 14:24:27 host firewalld[121755]: backend.set_rules(_rules, self._log_denied) Nov 27 14:24:27 host firewalld[121755]: File "/usr/lib/python3.8/site-packages/firewall/core/nftables.py", line 381, in set_rules Nov 27 14:24:27 host firewalld[121755]: self.rule_to_handle[rule_key] = output["nftables"][index][verb]["rule"]["handle"] Nov 27 14:24:27 host firewalld[121755]: KeyError: 'handle' Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 ERROR: 'handle' Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: Setting policy to 'ACCEPT' Nov 27 14:24:27 host firewalld[121755]: ERROR: 'handle' Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: Traceback (most recent call last): Nov 27 14:24:27 host firewalld[121755]: File "/usr/lib/python3.8/site-packages/firewall/server/decorators.py", line 53, in handle_exceptions Nov 27 14:24:27 host firewalld[121755]: return func(*args, **kwargs) Nov 27 14:24:27 host firewalld[121755]: File "/usr/lib/python3.8/site-packages/firewall/server/firewalld.py", line 94, in start Nov 27 14:24:27 host firewalld[121755]: return self.fw.start() Nov 27 14:24:27 host firewalld[121755]: File "/usr/lib/python3.8/site-packages/firewall/core/fw.py", line 464, in start Nov 27 14:24:27 host firewalld[121755]: self._start() Nov 27 14:24:27 host firewalld[121755]: File "/usr/lib/python3.8/site-packages/firewall/core/fw.py", line 435, in _start Nov 27 14:24:27 host firewalld[121755]: transaction.execute(True) Nov 27 14:24:27 host firewalld[121755]: File "/usr/lib/python3.8/site-packages/firewall/core/fw_transaction.py", line 173, in execute Nov 27 14:24:27 host firewalld[121755]: raise FirewallError(errors.COMMAND_FAILED, errorMsg) Nov 27 14:24:27 host firewalld[121755]: firewall.errors.FirewallError: COMMAND_FAILED: 'handle' Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 ERROR: COMMAND_FAILED: 'handle' Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: GetAll('org.fedoraproject.FirewallD1') Nov 27 14:24:27 host firewalld[121755]: ERROR: COMMAND_FAILED: 'handle' Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.icmptype.0.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.IcmpTypeAdded('address-unreachable') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.icmptype.1.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.IcmpTypeAdded('bad-header') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.icmptype.2.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.IcmpTypeAdded('beyond-scope') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.icmptype.3.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.IcmpTypeAdded('communication-prohibited') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.icmptype.4.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.IcmpTypeAdded('destination-unreachable') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.icmptype.5.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.IcmpTypeAdded('echo-reply') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.icmptype.6.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.IcmpTypeAdded('echo-request') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.icmptype.7.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.IcmpTypeAdded('failed-policy') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.icmptype.8.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.IcmpTypeAdded('fragmentation-needed') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.icmptype.9.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.IcmpTypeAdded('host-precedence-violation') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.icmptype.10.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.IcmpTypeAdded('host-prohibited') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.icmptype.11.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.IcmpTypeAdded('host-redirect') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.icmptype.12.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.IcmpTypeAdded('host-unknown') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.icmptype.13.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.IcmpTypeAdded('host-unreachable') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.icmptype.14.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.IcmpTypeAdded('ip-header-bad') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.icmptype.15.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.IcmpTypeAdded('neighbour-advertisement') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.icmptype.16.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.IcmpTypeAdded('neighbour-solicitation') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.icmptype.17.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.IcmpTypeAdded('network-prohibited') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.icmptype.18.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.IcmpTypeAdded('network-redirect') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.icmptype.19.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.IcmpTypeAdded('network-unknown') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.icmptype.20.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.IcmpTypeAdded('network-unreachable') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.icmptype.21.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.IcmpTypeAdded('no-route') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.icmptype.22.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.IcmpTypeAdded('packet-too-big') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.icmptype.23.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.IcmpTypeAdded('parameter-problem') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.icmptype.24.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.IcmpTypeAdded('port-unreachable') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.icmptype.25.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.IcmpTypeAdded('precedence-cutoff') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.icmptype.26.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.IcmpTypeAdded('protocol-unreachable') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.icmptype.27.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.IcmpTypeAdded('redirect') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.icmptype.28.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.IcmpTypeAdded('reject-route') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.icmptype.29.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.IcmpTypeAdded('required-option-missing') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.icmptype.30.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.IcmpTypeAdded('router-advertisement') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.icmptype.31.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.IcmpTypeAdded('router-solicitation') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.icmptype.32.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.IcmpTypeAdded('source-quench') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.icmptype.33.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.IcmpTypeAdded('source-route-failed') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.icmptype.34.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.IcmpTypeAdded('time-exceeded') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.icmptype.35.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.IcmpTypeAdded('timestamp-reply') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.icmptype.36.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.IcmpTypeAdded('timestamp-request') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.icmptype.37.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.IcmpTypeAdded('tos-host-redirect') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.icmptype.38.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.IcmpTypeAdded('tos-host-unreachable') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.icmptype.39.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.IcmpTypeAdded('tos-network-redirect') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.icmptype.40.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.IcmpTypeAdded('tos-network-unreachable') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.icmptype.41.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.IcmpTypeAdded('ttl-zero-during-reassembly') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.icmptype.42.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.IcmpTypeAdded('ttl-zero-during-transit') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.icmptype.43.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.IcmpTypeAdded('unknown-header-type') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.icmptype.44.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.IcmpTypeAdded('unknown-option') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.0.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('RH-Satellite-6') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.1.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('amanda-client') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.2.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('amanda-k5-client') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.3.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('amqp') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.4.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('amqps') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.5.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('apcupsd') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.6.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('audit') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.7.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('babeld') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.8.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('bacula') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.9.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('bacula-client') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.10.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('bb') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.11.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('bgp') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.12.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('bitcoin') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.13.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('bitcoin-rpc') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.14.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('bitcoin-testnet') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.15.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('bitcoin-testnet-rpc') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.16.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('bittorrent-lsd') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.17.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('ceph') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.18.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('ceph-mon') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.19.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('cfengine') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.20.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('cockpit') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.21.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('condor-collector') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.22.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('ctdb') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.23.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('dhcp') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.24.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('dhcpv6') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.25.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('dhcpv6-client') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.26.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('distcc') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.27.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('dns') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.28.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('dns-over-tls') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.29.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('docker-registry') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.30.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('docker-swarm') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.31.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('dropbox-lansync') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.32.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('elasticsearch') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.33.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('etcd-client') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.34.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('etcd-server') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.35.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('finger') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.36.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('freeipa-4') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.37.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('freeipa-ldap') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.38.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('freeipa-ldaps') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.39.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('freeipa-replication') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.40.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('freeipa-trust') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.41.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('ftp') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.42.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('ganglia-client') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.43.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('ganglia-master') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.44.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('git') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.45.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('grafana') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.46.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('gre') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.47.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('high-availability') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.48.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('http') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.49.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('https') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.50.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('imap') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.51.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('imaps') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.52.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('ipp') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.53.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('ipp-client') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.54.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('ipsec') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.55.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('irc') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.56.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('ircs') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.57.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('iscsi-target') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.58.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('isns') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.59.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('jenkins') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.60.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('kadmin') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.61.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('kdeconnect') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.62.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('kerberos') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.63.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('kibana') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.64.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('klogin') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.65.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('kpasswd') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.66.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('kprop') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.67.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('kshell') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.68.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('kube-apiserver') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.69.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('ldap') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.70.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('ldaps') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.71.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('libvirt') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.72.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('libvirt-tls') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.73.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('lightning-network') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.74.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('llmnr') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.75.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('managesieve') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.76.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('matrix') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.77.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('mdns') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.78.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('memcache') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.79.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('minidlna') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.80.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('mongodb') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.81.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('mosh') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.82.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('mountd') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.83.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('mqtt') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.84.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('mqtt-tls') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.85.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('ms-wbt') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.86.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('mssql') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.87.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('murmur') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.88.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('mysql') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.89.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('nfs') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.90.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('nfs3') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.91.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('nmea-0183') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.92.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('nrpe') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.93.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('ntp') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.94.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('nut') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.95.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('openvpn') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.96.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('ovirt-imageio') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.97.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('ovirt-storageconsole') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.98.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('ovirt-vmconsole') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.99.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('plex') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.100.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('pmcd') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.101.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('pmproxy') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.102.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('pmwebapi') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.103.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('pmwebapis') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.104.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('pop3') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.105.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('pop3s') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.106.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('postgresql') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.107.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('privoxy') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.108.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('prometheus') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.109.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('proxy-dhcp') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.110.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('ptp') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.111.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('pulseaudio') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.112.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('puppetmaster') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.113.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('quassel') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.114.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('radius') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.115.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('rdp') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.116.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('redis') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.117.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('redis-sentinel') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.118.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('rpc-bind') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.119.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('rsh') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.120.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('rsyncd') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.121.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('rtsp') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.122.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('salt-master') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.123.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('samba') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.124.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('samba-client') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.125.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('samba-dc') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.126.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('sane') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.127.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('sip') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.128.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('sips') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.129.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('slp') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.130.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('smtp') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.131.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('smtp-submission') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.132.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('smtps') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.133.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('snmp') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.134.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('snmptrap') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.135.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('spideroak-lansync') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.136.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('spotify-sync') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.137.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('squid') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.138.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('ssdp') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.139.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('ssh') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.140.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('steam-streaming') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.141.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('svdrp') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.142.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('svn') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.143.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('syncthing') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.144.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('syncthing-gui') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.145.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('synergy') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.146.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('syslog') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.147.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('syslog-tls') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.148.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('telnet') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.149.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('tentacle') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.150.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('tftp') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.151.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('tftp-client') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.152.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('tile38') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.153.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('tinc') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.154.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('tor-socks') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.155.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('transmission-client') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.156.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('upnp-client') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.157.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('vdsm') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.158.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('vnc-server') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.159.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('wbem-http') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.160.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('wbem-https') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.161.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('wsman') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.162.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('wsmans') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.163.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('xdmcp') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.164.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('xmpp-bosh') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.165.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('xmpp-client') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.166.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('xmpp-local') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.167.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('xmpp-server') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.168.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('zabbix-agent') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.169.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('zabbix-server') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.service.170.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ServiceAdded('zerotier-one') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.zone.0.GetAll('org.fedoraproject.FirewallD1.config.zone') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ZoneAdded('block') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.zone.1.GetAll('org.fedoraproject.FirewallD1.config.zone') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ZoneAdded('dmz') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.zone.2.GetAll('org.fedoraproject.FirewallD1.config.zone') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ZoneAdded('drop') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.zone.3.GetAll('org.fedoraproject.FirewallD1.config.zone') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ZoneAdded('entropy') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.zone.4.GetAll('org.fedoraproject.FirewallD1.config.zone') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ZoneAdded('external') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.zone.5.GetAll('org.fedoraproject.FirewallD1.config.zone') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ZoneAdded('home') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.zone.6.GetAll('org.fedoraproject.FirewallD1.config.zone') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ZoneAdded('internal') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.zone.7.GetAll('org.fedoraproject.FirewallD1.config.zone') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ZoneAdded('libvirt') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.zone.8.GetAll('org.fedoraproject.FirewallD1.config.zone') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ZoneAdded('public') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.zone.9.GetAll('org.fedoraproject.FirewallD1.config.zone') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ZoneAdded('trusted') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.zone.10.GetAll('org.fedoraproject.FirewallD1.config.zone') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.ZoneAdded('work') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.helper.0.GetAll('org.fedoraproject.FirewallD1.config.helper') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.HelperAdded('Q.931') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.helper.1.GetAll('org.fedoraproject.FirewallD1.config.helper') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.HelperAdded('RAS') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.helper.2.GetAll('org.fedoraproject.FirewallD1.config.helper') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.HelperAdded('amanda') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.helper.3.GetAll('org.fedoraproject.FirewallD1.config.helper') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.HelperAdded('ftp') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.helper.4.GetAll('org.fedoraproject.FirewallD1.config.helper') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.HelperAdded('h323') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.helper.5.GetAll('org.fedoraproject.FirewallD1.config.helper') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.HelperAdded('irc') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.helper.6.GetAll('org.fedoraproject.FirewallD1.config.helper') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.HelperAdded('netbios-ns') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.helper.7.GetAll('org.fedoraproject.FirewallD1.config.helper') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.HelperAdded('pptp') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.helper.8.GetAll('org.fedoraproject.FirewallD1.config.helper') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.HelperAdded('proto-gre') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.helper.9.GetAll('org.fedoraproject.FirewallD1.config.helper') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.HelperAdded('sane') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.helper.10.GetAll('org.fedoraproject.FirewallD1.config.helper') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.HelperAdded('sip') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.helper.11.GetAll('org.fedoraproject.FirewallD1.config.helper') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.HelperAdded('snmp') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.helper.12.GetAll('org.fedoraproject.FirewallD1.config.helper') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.HelperAdded('tftp') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: config.GetAll('org.fedoraproject.FirewallD1.config') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: zone.changeZoneOfInterface('home', 'wlp58s0') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: Setting zone of interface 'wlp58s0' to 'home' Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: zone.ZoneOfInterfaceChanged('home', 'wlp58s0') Nov 27 14:24:27 host firewalld[121755]: 2019-11-27 14:24:27 DEBUG1: zone.ZoneChanged('home', 'wlp58s0') ```
Logs after firewall-cmd --reload Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: reload() Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Setting policy to 'DROP' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading firewalld config file '/etc/firewalld/firewalld.conf' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: CleanupOnExit is set to 'False' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: IPV6 rpfilter is disabled Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: LogDenied is set to 'off' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: FirewallBackend is set to 'nftables' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: FlushAllOnReload is set to 'True' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: RFC3964_IPv4 is set to 'True' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: ebtables-restore is not supporting the --noflush option, will therefore not be used Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading lockdown whitelist Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/address-unreachable.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/bad-header.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/beyond-scope.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/communication-prohibited.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/destination-unreachable.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/echo-reply.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/echo-request.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/failed-policy.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/fragmentation-needed.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/host-precedence-violation.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/host-prohibited.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/host-redirect.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/host-unknown.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/host-unreachable.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/ip-header-bad.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/neighbour-advertisement.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/neighbour-solicitation.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/network-prohibited.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/network-redirect.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/network-unknown.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/network-unreachable.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/no-route.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/packet-too-big.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/parameter-problem.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/port-unreachable.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/precedence-cutoff.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/protocol-unreachable.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/redirect.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/reject-route.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/required-option-missing.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/router-advertisement.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/router-solicitation.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/source-quench.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/source-route-failed.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/time-exceeded.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/timestamp-reply.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/timestamp-request.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/tos-host-redirect.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/tos-host-unreachable.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/tos-network-redirect.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/tos-network-unreachable.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/ttl-zero-during-reassembly.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/ttl-zero-during-transit.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/unknown-header-type.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading icmptype file '/usr/lib/firewalld/icmptypes/unknown-option.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading helper file '/usr/lib/firewalld/helpers/Q.931.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading helper file '/usr/lib/firewalld/helpers/RAS.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading helper file '/usr/lib/firewalld/helpers/amanda.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading helper file '/usr/lib/firewalld/helpers/ftp.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading helper file '/usr/lib/firewalld/helpers/h323.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading helper file '/usr/lib/firewalld/helpers/irc.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading helper file '/usr/lib/firewalld/helpers/netbios-ns.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading helper file '/usr/lib/firewalld/helpers/pptp.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading helper file '/usr/lib/firewalld/helpers/proto-gre.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading helper file '/usr/lib/firewalld/helpers/sane.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading helper file '/usr/lib/firewalld/helpers/sip.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading helper file '/usr/lib/firewalld/helpers/snmp.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading helper file '/usr/lib/firewalld/helpers/tftp.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/RH-Satellite-6.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/amanda-client.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/amanda-k5-client.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/amqp.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/amqps.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/apcupsd.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/audit.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/bacula-client.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/bacula.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/bb.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/bgp.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/bitcoin-rpc.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/bitcoin-testnet-rpc.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/bitcoin-testnet.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/bitcoin.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/bittorrent-lsd.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/ceph-mon.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/ceph.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/cfengine.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/cockpit.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/condor-collector.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/ctdb.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/dhcp.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/dhcpv6-client.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/dhcpv6.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/distcc.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/dns-over-tls.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/dns.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/docker-registry.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/docker-swarm.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/dropbox-lansync.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/elasticsearch.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/etcd-client.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/etcd-server.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/finger.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/freeipa-4.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/freeipa-ldap.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/freeipa-ldaps.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/freeipa-replication.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/freeipa-trust.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/ftp.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/ganglia-client.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/ganglia-master.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/git.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/grafana.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/gre.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/high-availability.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/http.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/https.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/imap.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/imaps.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/ipp-client.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/ipp.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/ipsec.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/irc.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/ircs.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/iscsi-target.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/isns.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/jenkins.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/kadmin.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/kdeconnect.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/kerberos.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/kibana.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/klogin.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/kpasswd.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/kprop.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/kshell.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/kube-apiserver.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/ldap.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/ldaps.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/libvirt-tls.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/libvirt.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/lightning-network.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/llmnr.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/managesieve.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/matrix.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/mdns.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/memcache.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/minidlna.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/mongodb.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/mosh.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/mountd.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/mqtt-tls.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/mqtt.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/ms-wbt.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/mssql.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/murmur.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/mysql.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/nfs.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/nfs3.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/nmea-0183.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/nrpe.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/ntp.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/nut.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/openvpn.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/ovirt-imageio.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/ovirt-storageconsole.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/ovirt-vmconsole.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/plex.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/pmcd.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/pmproxy.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/pmwebapi.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/pmwebapis.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/pop3.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/pop3s.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/postgresql.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/privoxy.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/prometheus.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/proxy-dhcp.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/ptp.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/pulseaudio.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/puppetmaster.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/quassel.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/radius.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/rdp.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/redis-sentinel.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/redis.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/rpc-bind.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/rsh.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/rsyncd.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/rtsp.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/salt-master.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/samba-client.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/samba-dc.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/samba.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/sane.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/sip.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/sips.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/slp.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/smtp-submission.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/smtp.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/smtps.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/snmp.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/snmptrap.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/spideroak-lansync.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/spotify-sync.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/squid.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/ssdp.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/ssh.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/steam-streaming.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/svdrp.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/svn.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/syncthing-gui.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/syncthing.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/synergy.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/syslog-tls.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/syslog.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/telnet.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/tentacle.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/tftp-client.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/tftp.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/tile38.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/tinc.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/tor-socks.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/transmission-client.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/upnp-client.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/vdsm.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/vnc-server.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/wbem-http.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/wbem-https.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/wsman.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/wsmans.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/xdmcp.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/xmpp-bosh.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/xmpp-client.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/xmpp-local.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/xmpp-server.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/zabbix-agent.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/usr/lib/firewalld/services/zabbix-server.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/etc/firewalld/services/babeld.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading service file '/etc/firewalld/services/zerotier-one.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading zone file '/usr/lib/firewalld/zones/block.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading zone file '/usr/lib/firewalld/zones/dmz.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading zone file '/usr/lib/firewalld/zones/drop.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading zone file '/usr/lib/firewalld/zones/external.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading zone file '/usr/lib/firewalld/zones/home.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading zone file '/usr/lib/firewalld/zones/internal.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading zone file '/usr/lib/firewalld/zones/libvirt.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading zone file '/usr/lib/firewalld/zones/public.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading zone file '/usr/lib/firewalld/zones/trusted.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading zone file '/usr/lib/firewalld/zones/work.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading zone file '/etc/firewalld/zones/dmz.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Overloads zone 'dmz' ('/usr/lib/firewalld/zones/dmz.xml') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading zone file '/etc/firewalld/zones/entropy.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading zone file '/etc/firewalld/zones/external.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Overloads zone 'external' ('/usr/lib/firewalld/zones/external.xml') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading zone file '/etc/firewalld/zones/home.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Overloads zone 'home' ('/usr/lib/firewalld/zones/home.xml') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading zone file '/etc/firewalld/zones/internal.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Overloads zone 'internal' ('/usr/lib/firewalld/zones/internal.xml') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading zone file '/etc/firewalld/zones/libvirt.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Overloads zone 'libvirt' ('/usr/lib/firewalld/zones/libvirt.xml') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading zone file '/etc/firewalld/zones/public.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Overloads zone 'public' ('/usr/lib/firewalld/zones/public.xml') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading zone file '/etc/firewalld/zones/trusted.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Overloads zone 'trusted' ('/usr/lib/firewalld/zones/trusted.xml') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Loading zone file '/etc/firewalld/zones/work.xml' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Overloads zone 'work' ('/usr/lib/firewalld/zones/work.xml') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Using default zone 'public' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Flushing rule set Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Applying default rule set Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Applying used zones Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Applying zone 'block' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Applying zone 'dmz' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Applying zone 'drop' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Applying zone 'entropy' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Applying zone 'external' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Applying zone 'home' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Applying zone 'internal' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Setting zone of interface 'ztxxxx' to 'internal' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Applying zone 'libvirt' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Applying zone 'public' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Applying zone 'trusted' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Applying zone 'work' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Setting zone of interface 'wlp58s0' to 'home' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Setting policy to 'ACCEPT' Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.icmptype.0.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.IcmpTypeAdded('address-unreachable') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.icmptype.1.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.IcmpTypeAdded('bad-header') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.icmptype.2.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.IcmpTypeAdded('beyond-scope') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.icmptype.3.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.IcmpTypeAdded('communication-prohibited') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.icmptype.4.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.IcmpTypeAdded('destination-unreachable') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.icmptype.5.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.IcmpTypeAdded('echo-reply') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.icmptype.6.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.IcmpTypeAdded('echo-request') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.icmptype.7.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.IcmpTypeAdded('failed-policy') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.icmptype.8.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.IcmpTypeAdded('fragmentation-needed') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.icmptype.9.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.IcmpTypeAdded('host-precedence-violation') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.icmptype.10.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.IcmpTypeAdded('host-prohibited') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.icmptype.11.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.IcmpTypeAdded('host-redirect') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.icmptype.12.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.IcmpTypeAdded('host-unknown') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.icmptype.13.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.IcmpTypeAdded('host-unreachable') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.icmptype.14.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.IcmpTypeAdded('ip-header-bad') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.icmptype.15.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.IcmpTypeAdded('neighbour-advertisement') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.icmptype.16.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.IcmpTypeAdded('neighbour-solicitation') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.icmptype.17.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.IcmpTypeAdded('network-prohibited') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.icmptype.18.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.IcmpTypeAdded('network-redirect') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.icmptype.19.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.IcmpTypeAdded('network-unknown') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.icmptype.20.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.IcmpTypeAdded('network-unreachable') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.icmptype.21.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.IcmpTypeAdded('no-route') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.icmptype.22.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.IcmpTypeAdded('packet-too-big') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.icmptype.23.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.IcmpTypeAdded('parameter-problem') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.icmptype.24.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.IcmpTypeAdded('port-unreachable') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.icmptype.25.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.IcmpTypeAdded('precedence-cutoff') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.icmptype.26.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.IcmpTypeAdded('protocol-unreachable') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.icmptype.27.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.IcmpTypeAdded('redirect') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.icmptype.28.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.IcmpTypeAdded('reject-route') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.icmptype.29.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.IcmpTypeAdded('required-option-missing') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.icmptype.30.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.IcmpTypeAdded('router-advertisement') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.icmptype.31.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.IcmpTypeAdded('router-solicitation') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.icmptype.32.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.IcmpTypeAdded('source-quench') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.icmptype.33.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.IcmpTypeAdded('source-route-failed') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.icmptype.34.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.IcmpTypeAdded('time-exceeded') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.icmptype.35.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.IcmpTypeAdded('timestamp-reply') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.icmptype.36.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.IcmpTypeAdded('timestamp-request') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.icmptype.37.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.IcmpTypeAdded('tos-host-redirect') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.icmptype.38.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.IcmpTypeAdded('tos-host-unreachable') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.icmptype.39.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.IcmpTypeAdded('tos-network-redirect') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.icmptype.40.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.IcmpTypeAdded('tos-network-unreachable') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.icmptype.41.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.IcmpTypeAdded('ttl-zero-during-reassembly') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.icmptype.42.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.IcmpTypeAdded('ttl-zero-during-transit') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.icmptype.43.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.IcmpTypeAdded('unknown-header-type') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.icmptype.44.GetAll('org.fedoraproject.FirewallD1.config.icmptype') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.IcmpTypeAdded('unknown-option') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.0.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('RH-Satellite-6') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.1.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('amanda-client') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.2.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('amanda-k5-client') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.3.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('amqp') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.4.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('amqps') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.5.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('apcupsd') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.6.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('audit') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.7.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('babeld') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.8.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('bacula') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.9.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('bacula-client') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.10.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('bb') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.11.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('bgp') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.12.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('bitcoin') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.13.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('bitcoin-rpc') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.14.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('bitcoin-testnet') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.15.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('bitcoin-testnet-rpc') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.16.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('bittorrent-lsd') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.17.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('ceph') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.18.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('ceph-mon') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.19.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('cfengine') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.20.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('cockpit') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.21.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('condor-collector') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.22.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('ctdb') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.23.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('dhcp') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.24.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('dhcpv6') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.25.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('dhcpv6-client') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.26.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('distcc') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.27.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('dns') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.28.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('dns-over-tls') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.29.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('docker-registry') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.30.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('docker-swarm') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.31.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('dropbox-lansync') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.32.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('elasticsearch') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.33.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('etcd-client') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.34.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('etcd-server') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.35.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('finger') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.36.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('freeipa-4') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.37.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('freeipa-ldap') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.38.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('freeipa-ldaps') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.39.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('freeipa-replication') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.40.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('freeipa-trust') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.41.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('ftp') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.42.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('ganglia-client') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.43.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('ganglia-master') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.44.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('git') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.45.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('grafana') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.46.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('gre') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.47.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('high-availability') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.48.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('http') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.49.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('https') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.50.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('imap') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.51.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('imaps') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.52.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('ipp') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.53.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('ipp-client') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.54.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('ipsec') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.55.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('irc') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.56.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('ircs') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.57.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('iscsi-target') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.58.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('isns') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.59.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('jenkins') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.60.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('kadmin') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.61.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('kdeconnect') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.62.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('kerberos') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.63.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('kibana') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.64.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('klogin') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.65.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('kpasswd') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.66.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('kprop') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.67.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('kshell') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.68.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('kube-apiserver') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.69.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('ldap') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.70.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('ldaps') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.71.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('libvirt') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.72.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('libvirt-tls') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.73.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('lightning-network') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.74.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('llmnr') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.75.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('managesieve') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.76.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('matrix') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.77.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('mdns') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.78.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('memcache') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.79.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('minidlna') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.80.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('mongodb') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.81.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('mosh') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.82.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('mountd') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.83.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('mqtt') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.84.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('mqtt-tls') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.85.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('ms-wbt') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.86.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('mssql') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.87.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('murmur') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.88.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('mysql') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.89.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('nfs') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.90.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('nfs3') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.91.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('nmea-0183') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.92.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('nrpe') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.93.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('ntp') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.94.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('nut') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.95.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('openvpn') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.96.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('ovirt-imageio') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.97.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('ovirt-storageconsole') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.98.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('ovirt-vmconsole') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.99.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('plex') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.100.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('pmcd') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.101.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('pmproxy') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.102.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('pmwebapi') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.103.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('pmwebapis') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.104.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('pop3') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.105.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('pop3s') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.106.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('postgresql') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.107.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('privoxy') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.108.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('prometheus') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.109.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('proxy-dhcp') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.110.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('ptp') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.111.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('pulseaudio') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.112.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('puppetmaster') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.113.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('quassel') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.114.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('radius') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.115.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('rdp') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.116.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('redis') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.117.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('redis-sentinel') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.118.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('rpc-bind') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.119.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('rsh') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.120.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('rsyncd') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.121.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('rtsp') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.122.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('salt-master') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.123.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('samba') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.124.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('samba-client') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.125.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('samba-dc') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.126.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('sane') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.127.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('sip') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.128.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('sips') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.129.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('slp') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.130.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('smtp') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.131.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('smtp-submission') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.132.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('smtps') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.133.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('snmp') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.134.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('snmptrap') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.135.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('spideroak-lansync') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.136.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('spotify-sync') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.137.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('squid') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.138.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('ssdp') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.139.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('ssh') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.140.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('steam-streaming') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.141.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('svdrp') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.142.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('svn') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.143.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('syncthing') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.144.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('syncthing-gui') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.145.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('synergy') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.146.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('syslog') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.147.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('syslog-tls') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.148.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('telnet') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.149.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('tentacle') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.150.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('tftp') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.151.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('tftp-client') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.152.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('tile38') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.153.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('tinc') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.154.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('tor-socks') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.155.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('transmission-client') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.156.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('upnp-client') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.157.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('vdsm') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.158.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('vnc-server') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.159.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('wbem-http') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.160.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('wbem-https') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.161.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('wsman') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.162.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('wsmans') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.163.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('xdmcp') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.164.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('xmpp-bosh') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.165.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('xmpp-client') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.166.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('xmpp-local') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.167.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('xmpp-server') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.168.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('zabbix-agent') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.169.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('zabbix-server') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.service.170.GetAll('org.fedoraproject.FirewallD1.config.service') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ServiceAdded('zerotier-one') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.zone.0.GetAll('org.fedoraproject.FirewallD1.config.zone') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ZoneAdded('block') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.zone.1.GetAll('org.fedoraproject.FirewallD1.config.zone') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ZoneAdded('dmz') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.zone.2.GetAll('org.fedoraproject.FirewallD1.config.zone') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ZoneAdded('drop') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.zone.3.GetAll('org.fedoraproject.FirewallD1.config.zone') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ZoneAdded('entropy') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.zone.4.GetAll('org.fedoraproject.FirewallD1.config.zone') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ZoneAdded('external') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.zone.5.GetAll('org.fedoraproject.FirewallD1.config.zone') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ZoneAdded('home') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.zone.6.GetAll('org.fedoraproject.FirewallD1.config.zone') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ZoneAdded('internal') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.zone.7.GetAll('org.fedoraproject.FirewallD1.config.zone') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ZoneAdded('libvirt') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.zone.8.GetAll('org.fedoraproject.FirewallD1.config.zone') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ZoneAdded('public') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.zone.9.GetAll('org.fedoraproject.FirewallD1.config.zone') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ZoneAdded('trusted') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.zone.10.GetAll('org.fedoraproject.FirewallD1.config.zone') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.ZoneAdded('work') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.helper.0.GetAll('org.fedoraproject.FirewallD1.config.helper') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.HelperAdded('Q.931') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.helper.1.GetAll('org.fedoraproject.FirewallD1.config.helper') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.HelperAdded('RAS') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.helper.2.GetAll('org.fedoraproject.FirewallD1.config.helper') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.HelperAdded('amanda') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.helper.3.GetAll('org.fedoraproject.FirewallD1.config.helper') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.HelperAdded('ftp') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.helper.4.GetAll('org.fedoraproject.FirewallD1.config.helper') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.HelperAdded('h323') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.helper.5.GetAll('org.fedoraproject.FirewallD1.config.helper') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.HelperAdded('irc') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.helper.6.GetAll('org.fedoraproject.FirewallD1.config.helper') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.HelperAdded('netbios-ns') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.helper.7.GetAll('org.fedoraproject.FirewallD1.config.helper') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.HelperAdded('pptp') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.helper.8.GetAll('org.fedoraproject.FirewallD1.config.helper') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.HelperAdded('proto-gre') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.helper.9.GetAll('org.fedoraproject.FirewallD1.config.helper') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.HelperAdded('sane') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.helper.10.GetAll('org.fedoraproject.FirewallD1.config.helper') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.HelperAdded('sip') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.helper.11.GetAll('org.fedoraproject.FirewallD1.config.helper') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.HelperAdded('snmp') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.helper.12.GetAll('org.fedoraproject.FirewallD1.config.helper') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: config.HelperAdded('tftp') Nov 27 14:28:31 host firewalld[121755]: 2019-11-27 14:28:31 DEBUG1: Reloaded()

It looks like something failed during startup, but not during the subsequent reload.

erig0 commented 4 years ago

@hexchain, Can you do it again with max debug, --debug=9 ?

erig0 commented 4 years ago

Also, what is your OS and nftables version? There was a bug in nftables that would cause rule handles to be omitted from the reply. It affects nftables <0.9.3. Many distributions ship 0.9.2 with fixes from the master branch. See https://github.com/firewalld/firewalld/issues/540#issuecomment-553407681.

hexchain commented 4 years ago

https://paste.xinu.at/c9iQ/ Here is the startup log with --debug=9, followed by a reload (see timestamp).

I'm using Arch Linux, nftables 0.8.2 without any patches (packaging script here).

hexchain commented 4 years ago

Just built an nftables package with the 4 patch mentioned in https://github.com/firewalld/firewalld/issues/540#issuecomment-553407681 and the problem was gone.

Thanks for the tip!

erig0 commented 4 years ago

Just built an nftables package with the 4 patch mentioned in #540 (comment) and the problem was gone.

Great. Closing this report then.

erig0 commented 4 years ago

@hexchain, please consider added those patches to the Arch nftables package. Or wait on nftables 0.9.3 which should be out soon.