I am struggling a bit with my new syslog server which is not receiving log from my wifi appliance. My wifi appliance is an aerohive, there is almost nothing about configuring syslog on it on internet, but I think I figured it out.
screen of the syslog parameter I think this part is good. So I configured a syslog-ng to receive data sent from the appliance. I followed many tutorials and ended up by adding this lines
source s_network { udp( port(514)); };
destination d_local { file("/var/log/host/log.txt"); };
on the file /etc/syslog-ng/syslog-ng.conf
I am supposed to collect log on the log.txt file but I am getting nothing
I have tried with this :
source s_all {
tcp( network(ip(10.0.0.146));
udp(network(ip(10.0.0.146)); };
source s_all {
udp();
tcp(); };
even this
source s_net {
udp(); };
but its not working either.
Both appliance and syslog server are on the same network, I can ping the appliance from the server. So I think the problem come from configuration. Do you guys have any idea of what is the problem ?