Forward Node not sending Suricata data #10607
-
Good morning all, I am not sure what happened one of my forward nodes stop sending Suricata data to the manager. Currently have 2x forward nodes, one search node and a manager. Node 2 has a monitoring port. When I do tcpdump -i eth0 I can see all traffic but when I got to the manager Kibana or No alerts in SOC I can see the node is communicating because I see zeek data but not Suricata. Can someone please help me. I am on using Version: 2.3.250 I can't really tell if it started after I upgraded but. Any help? When I check the suricata.log and docker log I am not seeing any errors. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
A few spots to check:
|
Beta Was this translation helpful? Give feedback.
-
I found a solution to the Suricata issue with the Tap port on the Forward node. Please follow these steps: Set the monitoring port (ens224) to promiscuous mode and disable NOARP:
These steps should fix the problem. Make sure to adjust the interface names according to your setup. |
Beta Was this translation helpful? Give feedback.
I found a solution to the Suricata issue with the Tap port on the Forward node. Please follow these steps:
Set the monitoring port (ens224) to promiscuous mode and disable NOARP:
Run: ifconfig ens224 promisc NOARP
Bring down the ens224 interface:
Run: ifdown ens224
Configure the ens224 interface:
Run: sudo ip link set ens224 up arp on promisc
Set ens224 to promiscuous mode on the bond0 interface:
Run: sudo ip link set ens224 up promisc on bond0
Assign ens224 as the master interface of bond0:
Run: sudo ip link set ens224 master bond0
Restart the network service:
Run: sudo systemctl restart network
These steps should fix the problem. Make sure to adjust the interface names acc…