--- Received from WPS.SBONIKOW (608) 226-2630 09-11-02 148p Hi, I am getting the following error shortly after syslog-ng is starting. io.c: sockaddr2info(): Unsupported address family 0. Aborted I have looked around and have not found anything that seems helpfull. There is nothing in the logs, and there is no core. The environment is SuSE 8.0 (64 bit) syslog-ng 1.5.20 It was a fresh compule, no changes to the source. A copy of the config is below. there has been very little change in the conf, just the locations for the files, and a new source. If there is any other info that I need to give, please let em know. Thanks Scott Bonikowske options { long_hostnames(off); sync(0); }; source src { unix-stream("/dev/log"); internal(); }; source net { udp(10.110.210.4) 514; }; destination authlog { file("/var/log/auth.log-ng"); }; destination syslog { file("/var/log/syslog-ng"); }; destination cron { file("/var/log/cron.log-ng"); }; destination daemon { file("/var/log/daemon.log-ng"); }; destination kern { file("/var/log/kern.log-ng"); }; destination lpr { file("/var/log/lpr.log-ng"); }; destination user { file("/var/log/user.log-ng"); }; destination uucp { file("/var/log/uucp.log-ng"); }; destination ppp { file("/var/log/ppp.log-ng"); }; destination mail { file("/var/log/mail.log-ng"); }; destination mailinfo { file("/var/log/mail.info-ng"); }; destination mailwarn { file("/var/log/mail.warn-ng"); }; destination mailerr { file("/var/log/mail.err-ng"); }; destination newscrit { file("/var/log/news/news.crit"); }; destination newserr { file("/var/log/news/news.err"); }; destination newsnotice { file("/var/log/news/news.notice"); }; destination debug { file("/var/log/debug-ng"); }; destination messages { file("/var/log/messages-ng"); }; destination console { usertty("root"); }; destination console_all { file("/dev/tty12"); }; #destination loghost { udp("loghost" port(999)); }; destination xconsole { pipe("/dev/xconsole"); }; filter f_auth { facility(auth); }; filter f_authpriv { facility(auth, authpriv); }; filter f_syslog { not facility(authpriv, mail); }; filter f_cron { facility(cron); }; filter f_daemon { facility(daemon); }; filter f_kern { facility(kern); }; filter f_lpr { facility(lpr); }; filter f_mail { facility(mail); }; filter f_user { facility(user); }; filter f_uucp { facility(cron); }; filter f_ppp { facility(ppp); }; filter f_news { facility(news); }; filter f_debug { not facility(auth, authpriv, news, mail); }; filter f_messages { level(info..warn) and not facility(auth, authpriv, mail, news); }; filter f_emergency { level(emerg); }; filter f_info { level(info); }; filter f_notice { level(notice); }; filter f_warn { level(warn); }; filter f_crit { level(crit); }; filter f_err { level(err); }; log { source(src); filter(f_authpriv); destination(authlog); }; log { source(src); filter(f_syslog); destination(syslog); }; log { source(src); filter(f_cron); destination(cron); }; log { source(src); filter(f_daemon); destination(daemon); }; log { source(src); filter(f_kern); destination(kern); }; log { source(src); filter(f_lpr); destination(lpr); }; log { source(src); filter(f_mail); destination(mail); }; log { source(src); filter(f_user); destination(user); }; log { source(src); filter(f_uucp); destination(uucp); }; log { source(src); filter(f_mail); filter(f_info); destination(mailinfo); }; log { source(src); filter(f_mail); filter(f_warn); destination(mailwarn); }; log { source(src); filter(f_mail); filter(f_err); destination(mailerr); }; log { source(src); filter(f_news); filter(f_crit); destination(newscrit); }; log { source(src); filter(f_news); filter(f_err); destination(newserr); }; log { source(src); filter(f_news); filter(f_notice); destination (newsnotice); }; log { source(src); filter(f_debug); destination(debug); }; log { source(src); filter(f_messages); destination(messages); }; log { source(src); filter(f_emergency); destination(console); }; log { source(src); filter(f_ppp); destination(ppp); }; log { source(src); destination(console_all); }; ---- 09-11-02 148p ---- Sent to ------------------------------------ -> syslog-ng@lists.balabit.hu
On Wed, Sep 11, 2002 at 01:48:00PM -0500, BONIKOWSKE, SCOTT wrote:
--- Received from WPS.SBONIKOW (608) 226-2630 09-11-02 148p
Hi,
I am getting the following error shortly after syslog-ng is starting.
io.c: sockaddr2info(): Unsupported address family 0. Aborted
I have looked around and have not found anything that seems helpfull. There is nothing in the logs, and there is no core.
you might have to set ulimit -c to unlimited to get core. Please run syslog-ng from within gdb, or analyze a core file to get a traceback. The message itself means that some address (possibly got via accept()) has AF_UNSPEC as address family which is not known by libol. -- Bazsi PGP info: KeyID 9AF8D0A9 Fingerprint CD27 CFB0 802C 0944 9CFD 804E C82C 8EB1
participants (2)
-
Balazs Scheidler
-
BONIKOWSKE, SCOTT