Setting up syslog-ng (CentOS 8) and MX100

Citroen
Here to help

Setting up syslog-ng (CentOS 8) and MX100

Hi All,

 

New to both syslog and Linux so please bear with me.

 

In a nutshell I am trying to set up syslog-ng on a CentOS 8 server to collect logs from a MX100.

 

MX and syslog server have LAN connectivity.

 

Tried to follow this blog to the tee - https://devopspoints.com/centos-7-setting-up-and-configuring-syslog-ng.html 

 

Packet capture on the MX shows that it is sending syslog info to the syslog server but I see no entries in  /var/log/syslog-$HOST/$YEAR-$MONTH/ relating to URLs as an example.

 

Looking for some guidance on what I could be missing.

 

Cheers 

 

 

 

5 Replies 5
PhilipDAth
Kind of a big deal
Kind of a big deal

Have you told it to collect network-based syslog?  Something like:

 

    source s_network {
        syslog(transport(tcp) port(514));
        };

Actually, I think that should be udp not tcp.

Yeah ... the below lines in the conf file should do it.

 

 

 

# Sources of syslog messages (both local and remote messages on the server)

source s_local {

system();

internal();

};

source s_tcp { tcp (ip ("127.0.0.1") port (514) max-connections (1) ); };

source s_udp { udp (ip ("0.0.0.0") port (514)); };

PhilipDAth
Kind of a big deal
Kind of a big deal

Is your centos box running a firewall?

 

If you run tcpdump on your centos box do you see the traffic arriving?

Thank you for helping.

 

I went with Ubuntu in the end which worked first go.

 

Cheers.

Get notified when there are additional replies to this discussion.
Welcome to the Meraki Community!
To start contributing, simply sign in with your Cisco account. If you don't yet have a Cisco account, you can sign up.
Labels