An old UNIX mantra is if you don’t need it, don’t run it. I discovered today that avahi-daemon was running on some of my boxes due to a kickstart misconfiguration. I just added the code to puppet node configuration, and the issue was resolved.
service{ "avahi-daemon":
ensure => "stopped",
enable => false;
}