Hello,
I am using the built in firewall-drop active response, and it's working very well. I am attempting to disable active-response for specific agents using the centralized configuration. For example, if I create a group with the following config:
<agent_config>
<active-response>
<disabled>yes</disabled>
</active-response>
</agent_config>
I can see that the agent picks up the change, but the active response still takes place. If I directly edit the /var/ossec/etc/ossec.conf file like this:
<!-- Active response -->
<active-response>
<disabled>yes</disabled>
<ca_store>etc/wpk_root.pem</ca_store>
<ca_verification>yes</ca_verification>
</active-response>
Then the response is disabled as expected, nothing shows in the active-responses.log file. I have checked the agent's /var/ossec/etc/local_internal_options.conf and confirmed agent.remote_conf=0 is not set. Any recommendations on what to check next?