Forum Discussion
Tshepang5499
Apr 26, 2023Copper Contributor
Sophos XG data Connector
Hello.
I'm trying with fail to connect the Sophos XG data connector to Sentinel. I have used the KQL parser and followed all steps to the on the documentation but still can seem to get it working. For more context I'm trying to proxy via Syslog on Azure.
Facility= daemon
TLS =Enabled
- Clive_WatsonBronze Contributor
Do you have an error, or just no data in the Syslog table?
Did you use the latest version in the [Content Hub]?
Is the connector Installed and Connected (green)?
- Tshepang5499Copper ContributorHello CliveWatson
I have no error. I tried to use the latest version on Content Hub and it keeps on taking me back to the connector on Data Connectors. Maybe you can help me with the KQL function. I changed the unique identifiers to point to the hostname(IP) and facility(daemon) and saved it .- Clive_WatsonBronze ContributorJust to check there is data, if you just run a basic KQL query like the below, using the right IP, do you get anything?
Syslog
| where Computer in ("52.152.175.228") and Facility == "local0"
| extend Device = extract(@'device=\"(\S+)\"', 1, SyslogMessage),
Date = extract(@'date=(\S+)', 1, SyslogMessage),
Time = extract(@'time=(\S+)', 1, SyslogMessage)
| limit 10
I dont know this parser, but its asking for an IP address in a column that is normally a name - so maybe use the server name instead, as a test?