Forum Discussion
Gareth Warn
Apr 22, 2020Copper Contributor
Barracuda Web streaming logs in incorrect format
Hi, We have a Barracuda F-Series Next Gen firewall being used for VPN. I would like to use the web streaming service available in Barracuda to send the log files to MCAS. I've configured a log c...
rajatm
Apr 22, 2020Former Employee
hello, you can get the actual data being received by the log collector in the 'messages' file inside the container. following are to be executed on the host running the log collector container
docker ps <- to get the name of the container
docker exec -it <containerName> bash <- to open a terminal session in to the container
cd var/adallom/syslog/<portOnWhichDataIsReceived> <- this is where you should find a 'messages' file if the collector is receiving data
cat messages <- will dump contents
or you can copy the entire file out to the host using docker cp
docker ps <- to get the name of the container
docker exec -it <containerName> bash <- to open a terminal session in to the container
cd var/adallom/syslog/<portOnWhichDataIsReceived> <- this is where you should find a 'messages' file if the collector is receiving data
cat messages <- will dump contents
or you can copy the entire file out to the host using docker cp
- Gareth WarnApr 24, 2020Copper Contributor
rajatm Thanks for the advice, I've now obtained the message file and provided to Barracuda for them to review.