netstat -na | grep 514
Without ip("127.0.0.1")It is not showing up in netstat
syslog( transport("udp") max-connections(8) );
source s_network { network( ip("192.168.1.1") transport("udp") );};destination d_syslog {file("/var/log/syslog-ng/messages_${HOST}"); };log { source(s_network); destination(d_syslog); };