Hello All,
I am having the same issue with syslog from cisco device.
I can see with tcpdump syslog packets are arriving on my linux fedora but are not logged to the message file i configured in /etc/syslog.conf
My syslogd was started with -r option to allow logging from remote devices.
My syslog.conf is :
.info;mail.none;authpriv.none;cron.none /var/log/messages
*.debug /var/log/messages
[root@]# cat /etc/sysconfig/syslog
# Options to syslogd
# -m 0 disables 'MARK' messages.
# -r enables logging from remote machines
# -x disables DNS lookups on messages recieved with -r
# See syslogd(

for more details
SYSLOGD_OPTIONS="-m 0 -r -x"
# Options to klogd
# -2 prints all kernel oops messages twice; once for klogd to decode, and
# once for processing with 'ksymoops'
# -x disables all klogd processing of oops messages entirely
# See klogd(

for more details
KLOGD_OPTIONS="-x"
[root@]#
[root@]# ps -ef | grep syslog
root 14654 1 0 11:10 ? 00:00:00 syslogd -m 0 -r -x
root 415 14817 0 12:14 pts/4 00:00:00 grep syslog
[root@]#
[root@suna18-3 log]# uname -a
Linux suna18-3 2.6.11-1.35_FC3smp #1 SMP Mon Jun 13 01:17:35 EDT 2005 i686 i686 i386 GNU/Linux
i see syslog packet arring on my linux
[root@]# /usr/sbin/tcpdump -i eth1.111 -c1000 -s200 udp port 514 -vv
tcpdump: listening on eth1.111, link-type EN10MB (Ethernet), capture size 200 bytes
12:13:56.981968 IP (tos 0x0, ttl 255, id 357, offset 0, flags [none], proto 17, length: 111) zupp1.testcom.net.59130 > 54.54.111.1.syslog: [udp sum ok] UDP, length 83
Also I tested logger to verify i was able to log to the message file without any pb.
Thx in advance,
Jean-Louis.