Hello Gary S,
It looks like the logs are being upplicated on both tables. In that case I understand that rsyslog server collects logs from firewalls, switches, and load balancers. The Cisco FTD firewall logs are being sent to both:
Cisco FTD Connector in Sentinel → Logs go to CommonSecurityLog (expected ✅).
rsyslog Server → Sentinel Syslog Data Collector → Logs also go to Syslog (duplicate ❌).
This results in FTD logs appearing in both CommonSecurityLog and Syslog tables, creating duplication.
To solve this problem you can modify rsyslog on the server to stop forwarding FTD logs to Sentinel’s Syslog collector. High level of the steps:
- Edit rsyslog config on rsyslog server. ex: vim /etc/rsyslog.d/50-default.conf
- Add rule to drop FTD logs:
if $fromhost-ip == 'FTD_IP_ADDRESS' then { stop }
- sudo systemctl restart rsyslog
- Verify in Sentinel:
Syslog | where Hostname == "FTD_DEVICE_NAME" | take 10
Another option is use a different syslog server only for the Cisco Firewall syslog and stop sending to the same rsyslog server , This avoid the extra complexity on filter syslog messages.Additional references:
If the information helped address your question, please Accept the answer.
Luis