Both types of nodes can be used to fetch and process event from agents. This kind of architecture can give you HA and load balancing between managers and agents, but also can be used for a roaming purpose.
<client><server><address>internal.company.net</address><port>1514</port><protocol>udp</protocol></server><server><address>external.example.net</address><port>1514</port><protocol>udp</protocol></server></client>
<cluster> <name>test_cluster</name> <node_name>manager_01</node_name> <node_type>master</node_type> <key>ugdtAnd7Pi9myP7CVts4qZaZQEQcRYZa</key> <interval>2m</interval> <port>1516</port> <bind_addr>0.0.0.0</bind_addr> <nodes> <node>172.17.0.2</node> <node>172.17.0.3</node> </nodes> <hidden>no</hidden> </cluster>What is the correct config for node 172.17.0.2 and 172.17.03? Something like:
<cluster> <name>test_cluster</name> <node_name>node_client_01</node_name> <node_type>client</node_type> <key>ugdtAnd7Pi9myP7CVts4qZaZQEQcRYZa</key> <interval>2m</interval> <port>1516</port> <bind_addr>0.0.0.0</bind_addr> <hidden>no</hidden> </cluster> ??
But where do you configure who is the master node?
b) To configure ELK integration, only manager needs to be configured to use wazuh-api or all cluster nodes need to be configured? If the last case is the correct, how do you configure wazu-app to connect with the API?
Thanks.
--
You received this message because you are subscribed to the Google Groups "Wazuh mailing list" group.
To unsubscribe from this group and stop receiving emails from it, send an email to wazuh+unsubscribe@googlegroups.com.
To post to this group, send email to wa...@googlegroups.com.
Visit this group at https://groups.google.com/group/wazuh.
To view this discussion on the web visit https://groups.google.com/d/msgid/wazuh/909520b6-6c3d-42aa-a422-be98624874b5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
<cluster><name>test_cluster</name><node_name>manager_master_01</node_name>
<node_type>master</node_type><key>ugdtAnd7Pi9myP7CVts4qZaZQEQcRYZa</key><interval>2m</interval><port>1516</port><bind_addr>0.0.0.0</bind_addr><nodes><node>172.17.0.2</node><node>172.17.0.3</node></nodes><hidden>no</hidden></cluster>
<cluster><name>test_cluster</name><node_name>manager_client_01</node_name>
<node_type>client</node_type><key>ugdtAnd7Pi9myP7CVts4qZaZQEQcRYZa</key><interval>2m</interval><port>1516</port><bind_addr>0.0.0.0</bind_addr>
<nodes>
<node>172.17.0.2</node>
<node>172.17.0.3</node>
</nodes><hidden>no</hidden></cluster>