<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="Generator" CONTENT="MS Exchange Server version 6.5.7638.1">
<TITLE>RE: [syslog-ng] logging from Cisco</TITLE>
</HEAD>
<BODY>
<!-- Converted from text/plain format -->
<BR>

<P><FONT SIZE=2>Hallo,<BR>
<BR>
thanks for your quick feedback.<BR>
Here is my &quot;show logging&quot; from cisco:<BR>
cisco6506#show logging<BR>
Syslog logging: enabled (0 messages dropped, 2 messages rate-limited, 0 flushes, 0 overruns)<BR>
&nbsp;&nbsp;&nbsp; Console logging: level debugging, 82 messages logged<BR>
&nbsp;&nbsp;&nbsp; Monitor logging: level informational, 9 messages logged<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Logging to: vty1(3)<BR>
&nbsp;&nbsp;&nbsp; Buffer logging: level debugging, 82 messages logged<BR>
&nbsp;&nbsp;&nbsp; Exception Logging: size (4096 bytes)<BR>
&nbsp;&nbsp;&nbsp; Count and timestamp logging messages: disabled<BR>
&nbsp;&nbsp;&nbsp; Trap logging: level informational, 96 message lines logged<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Logging to 10.102.4.5, 96 message lines logged<BR>
<BR>
And my syslog-ng.conf File:<BR>
After your e-mail I have tried to change config file, but it wasn't successful, thats' why I commented my changes out.&nbsp;<BR>
#<BR>
# /etc/syslog-ng/syslog-ng.conf<BR>
#<BR>
# File format description can be found in syslog-ng.conf(5)<BR>
# and in /usr/share/doc/packages/syslog-ng/syslog-ng.txt.<BR>
#<BR>
# NOTE: The SuSEconfig script and its syslog-ng.conf.in<BR>
#&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; configuration template aren't used any more.<BR>
#<BR>
#&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Feel free to edit this file directly.<BR>
#<BR>
#&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Additional log sockets for chroot environments can<BR>
#&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; be declared in the /etc/sysconfig/syslog file using<BR>
#&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; SYSLOGD_ADDITIONAL_SOCKET&lt;NAME&gt;<BR>
#&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; variables. This way allows to define a socket from<BR>
#&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; RPM scripts and is used by several services, e.g.<BR>
#&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; bind and dhcpd.<BR>
#<BR>
#&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; The sockets defined in /etc/sysconfig/syslog file<BR>
#&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; are added by the /etc/ini.d/syslog init-script using<BR>
#&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &quot;-a path&quot; command line options while syslog-ng is<BR>
#&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; started.<BR>
#<BR>
#&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; This syslog-ng contains an extension and appends the<BR>
#&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; sockets added by &quot;-a&quot; option to the same source group<BR>
#&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; and using the same socket type (unix-dgram) as the<BR>
#&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &quot;/dev/log&quot; socket.<BR>
#&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; If one of the sockets added by &quot;-a&quot; option already<BR>
#&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; exists in any (other) source group in the config file,<BR>
#&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; then the socket added by &quot;-a&quot; option is ignored.<BR>
#<BR>
<BR>
#<BR>
# Global options.<BR>
#<BR>
options { long_hostnames(off); sync(0); perm(0640); stats(3600); };<BR>
<BR>
#<BR>
# 'src' is our main source definition. you can add<BR>
# more sources driver definitions to it, or define<BR>
# your own sources, i.e.:<BR>
#<BR>
#source my_src { .... };<BR>
#<BR>
source src {<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; #<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; # include internal syslog-ng messages<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; # note: the internal() soure is required!<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; #<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; internal();<BR>
<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; #<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; # the default log socket for local logging:<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; #<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; unix-dgram(&quot;/dev/log&quot;);<BR>
<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; #<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; # uncomment to process log messages from network:<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; #(added IP-addresses)<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; #udp(ip(&quot;10.102.4.4, 10.102.4.1, 10,102.4.3, 10.102.4.2, 10.102.4.13&quot;) port(514));<BR>
};<BR>
#source my_source {<BR>
#&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; # udp();<BR>
#&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; udp(ip(&quot;10.102.4.1&quot;)port(514));<BR>
#&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; };<BR>
<BR>
<BR>
#<BR>
# Filter definitions<BR>
#<BR>
filter f_iptables&nbsp;&nbsp; { facility(kern) and match(&quot;IN=&quot;) and match(&quot;OUT=&quot;); };<BR>
<BR>
filter f_console&nbsp;&nbsp;&nbsp; { level(warn) and facility(kern) and not filter(f_iptables)<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; or level(err) and not facility(authpriv); };<BR>
<BR>
filter f_newsnotice { level(notice) and facility(news); };<BR>
filter f_newscrit&nbsp;&nbsp; { level(crit)&nbsp;&nbsp; and facility(news); };<BR>
filter f_newserr&nbsp;&nbsp;&nbsp; { level(err)&nbsp;&nbsp;&nbsp; and facility(news); };<BR>
filter f_news&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { facility(news); };<BR>
<BR>
filter f_mailinfo&nbsp;&nbsp; { level(info)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; and facility(mail); };<BR>
filter f_mailwarn&nbsp;&nbsp; { level(warn)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; and facility(mail); };<BR>
filter f_mailerr&nbsp;&nbsp;&nbsp; { level(err, crit) and facility(mail); };<BR>
filter f_mail&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { facility(mail); };<BR>
<BR>
filter f_cron&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { facility(cron); };<BR>
<BR>
filter f_local&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { facility(local0, local1, local2, local3,<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; local4, local5, local6, local7); };<BR>
<BR>
filter f_acpid&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { match('^\[acpid\]:'); };<BR>
filter f_netmgm&nbsp;&nbsp;&nbsp;&nbsp; { match('^NetworkManager:'); };<BR>
<BR>
filter f_messages&nbsp;&nbsp; { not facility(news, mail) and not filter(f_iptables); };<BR>
filter f_warn&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { level(warn, err, crit) and not filter(f_iptables); };<BR>
filter f_alert&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { level(alert); };<BR>
################ my own filter ############################################<BR>
#filter test_netz { netmask(&quot;10.102.4.0/255.255.255.240&quot;);};<BR>
################################################################################<BR>
#<BR>
# Most warning and errors on tty10 and on the xconsole pipe:<BR>
#<BR>
destination console&nbsp; { file(&quot;/dev/tty10&quot;&nbsp;&nbsp;&nbsp; group(tty) perm(0620)); };<BR>
log { source(src); filter(f_console); destination(console); };<BR>
<BR>
destination xconsole { pipe(&quot;/dev/xconsole&quot; group(tty) perm(0400)); };<BR>
log { source(src); filter(f_console); destination(xconsole); };<BR>
<BR>
# Enable this, if you want that root is informed immediately,<BR>
# e.g. of logins:<BR>
#<BR>
#destination root { usertty(&quot;root&quot;); };<BR>
#log { source(src); filter(f_alert); destination(root); };<BR>
############## my own logs #######################################################<BR>
#log { source(test_netz); filter(test_netz); destination(test_netz); };<BR>
<BR>
##################################################################################<BR>
<BR>
############## my own destinations################################################<BR>
#destination test_netz {file(&quot;/var/log/cisco.log&quot; owner(&quot;root&quot;) group(&quot;users&quot;)<BR>
# perm(0640));}<BR>
##################################################################################<BR>
#<BR>
# News-messages in separate files:<BR>
#<BR>
#destination test_netz {file(&quot;/var/log/cisco.log&quot; owner(&quot;root&quot;) group(&quot;users&quot;)<BR>
#perm(0640));}<BR>
destination newscrit&nbsp;&nbsp; { file(&quot;/var/log/news/news.crit&quot;<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; owner(news) group(news)); };<BR>
log { source(src); filter(f_newscrit); destination(newscrit); };<BR>
<BR>
destination newserr&nbsp;&nbsp;&nbsp; { file(&quot;/var/log/news/news.err&quot;<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; owner(news) group(news)); };<BR>
log { source(src); filter(f_newserr); destination(newserr); };<BR>
<BR>
destination newsnotice { file(&quot;/var/log/news/news.notice&quot;<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; owner(news) group(news)); };<BR>
log { source(src); filter(f_newsnotice); destination(newsnotice); };<BR>
<BR>
<BR>
# and optionally also all in one file:<BR>
&nbsp;#(don't forget to provide logrotation config)<BR>
<BR>
#destination news { file(&quot;/var/log/news.all&quot;); };<BR>
#log { source(src); filter(f_news); destination(news); };<BR>
<BR>
<BR>
#<BR>
# Mail-messages in separate files:<BR>
#<BR>
destination mailinfo { file(&quot;/var/log/mail.info&quot;); };<BR>
log { source(src); filter(f_mailinfo); destination(mailinfo); };<BR>
<BR>
destination mailwarn { file(&quot;/var/log/mail.warn&quot;); };<BR>
log { source(src); filter(f_mailwarn); destination(mailwarn); };<BR>
<BR>
destination mailerr&nbsp; { file(&quot;/var/log/mail.err&quot; fsync(yes)); };<BR>
log { source(src); filter(f_mailerr);&nbsp; destination(mailerr); };<BR>
<BR>
#<BR>
# and also all in one file:<BR>
#<BR>
#destination mail { file(&quot;/var/log/mail&quot;); };<BR>
#log { source(src); filter(f_mail); destination(mail); };<BR>
<BR>
<BR>
#<BR>
# acpid messages in one file:<BR>
#<BR>
destination acpid { file(&quot;/var/log/acpid&quot;); };<BR>
log { source(src); filter(f_acpid); destination(acpid); flags(final); };<BR>
<BR>
#<BR>
# NetworkManager messages in one file:<BR>
<BR>
destination netmgm { file(&quot;/var/log/NetworkManager&quot;); };<BR>
log { source(src); filter(f_netmgm); destination(netmgm); flags(final); };<BR>
<BR>
<BR>
#<BR>
# Cron-messages in one file:<BR>
# (don't forget to provide logrotation config)<BR>
#<BR>
destination cron { file(&quot;/var/log/cron&quot;); };<BR>
log { source(src); filter(f_cron); destination(cron); };<BR>
<BR>
<BR>
#<BR>
# Some boot scripts use/require local[1-7]:<BR>
#<BR>
destination localmessages { file(&quot;/var/log/localmessages&quot;); };<BR>
log { source(src); filter(f_local); destination(localmessages); };<BR>
<BR>
<BR>
#<BR>
# All messages except iptables and the facilities news and mail:<BR>
#<BR>
destination messages { file(&quot;/var/log/messages&quot;); };<BR>
log { source(src); filter(f_messages); destination(messages); };<BR>
<BR>
<BR>
#<BR>
# Firewall (iptables) messages in one file:<BR>
#<BR>
destination firewall { file(&quot;/var/log/firewall&quot;); };<BR>
log { source(src); filter(f_iptables); destination(firewall); };<BR>
<BR>
<BR>
#<BR>
# Warnings (except iptables) in one file:<BR>
#<BR>
destination warn { file(&quot;/var/log/warn&quot; fsync(yes)); };<BR>
log { source(src); filter(f_warn); destination(warn); };<BR>
<BR>
#<BR>
# Enable this, if you want to keep all messages in one file:<BR>
# (don't forget to provide logrotation config)<BR>
#<BR>
#destination allmessages { file(&quot;/var/log/allmessages&quot;); };<BR>
#log { source(src); destination(allmessages); };<BR>
<BR>
# local-messages in separate files:<BR>
#<BR>
#destination local3 { file(&quot;/var/log/local3&quot;); };<BR>
#log { source(src); filter(f_local); destination(local3); };<BR>
<BR>
#destination local4 { file(&quot;/var/log/local4&quot;); };<BR>
#log { source(src); filter(f_local); destination(local4); };<BR>
<BR>
<BR>
#<BR>
# and also all in one file:<BR>
#<BR>
#destination local { file(&quot;/var/log/local&quot;); };<BR>
#log { source(src); filter(f_local); destination(local); };<BR>
<BR>
<BR>
<BR>
-----Original Message-----<BR>
From: syslog-ng-bounces@lists.balabit.hu on behalf of Werner Thal<BR>
Sent: Thu 5/24/2007 11:28 AM<BR>
To: Syslog-ng users' and developers' mailing list<BR>
Subject: Re: [syslog-ng] logging from Cisco<BR>
<BR>
Hallo Yelena,<BR>
<BR>
I can't really figure out where your problem is, so I would like to tell you how I log the<BR>
events from my network equipment.<BR>
<BR>
Becaus e I'm only responsible for networking equipment like switches and routers,<BR>
I can be sure that no one else will have my logging-server as a destination. So I don't<BR>
take care about any &quot;facility&quot; and log everything wich is destined for my server.<BR>
<BR>
First I defined a source:<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ######### MY Sources ###########<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; source netz_kompo {<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; # udp();<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; udp (ip(x.x.x.x));<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; };<BR>
where x.x.x.x is the IP of my logging-server. Be sure no&nbsp; other source object uses udp.<BR>
<BR>
Then some destinations, one for every customer-network:<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ########## MY Destinations ##########<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; # MY-LAN<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; destination my { file(&quot;/bla/blubb/my.log&quot; owner(&quot;root&quot;) group (&quot;users&quot;) perm(0640)); };<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; # customer1<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; destination customer1 { file(&quot;/bla/blubb/customer1.log&quot; owner(&quot;root&quot;) group (&quot;users&quot;) perm(0640)); };<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; # customer2<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; destination customer2 { file(&quot;/bla/blubb/customer2.log&quot; owner(&quot;root&quot;) group (&quot;users&quot;) perm(0640)); };<BR>
<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; # customer3<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; destination customer3 { file(&quot;/bla/blubb/customer3.log&quot; owner(&quot;root&quot;) group (&quot;users&quot;) perm(0640)); };<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ######<BR>
<BR>
Here are some filters:<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ############ MYFilter ##################<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; # MY<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; filter my_all { netmask(&quot;x.x.0.0/255.255.0.0&quot;); };<BR>
<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; # customer1<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; filter customer1_all { netmask(&quot;x.x.0.0/255.255.0.0&quot;); };<BR>
<BR>
<BR>
At last - the log-objects:<BR>
<BR>
<BR>
############ MY logs #####################<BR>
#MY<BR>
log {<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; source(netz_kompo);<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; filter(my_all);<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; destination(my);<BR>
};<BR>
<BR>
#Customer1<BR>
log {<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; source(netz_kompo);<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; filter(customer1_all);<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; destination(customer1);<BR>
};<BR>
<BR>
<BR>
Hope this helps<BR>
<BR>
CU<BR>
Werner<BR>
<BR>
<BR>
<BR>
Am Mittwoch, 23. Mai 2007 18:18 schrieb Grigoreva, Yelena:<BR>
&gt;<BR>
&gt; Hallo,<BR>
&gt;<BR>
&gt;<BR>
&gt; I have enabled Cisco logging to my host SUSE 10.2. From the Wireshark tool I can see that I become the syslog messages and then I try to find them somewhere in /var/log/.... but w/t success. ;(<BR>
&gt;<BR>
&gt; Where are the syslog messages logged from external HW? I have set in my sysconf SYSLOGD_PARAMS=&quot;-rx -m 0&quot; to enable external logging, but all the same-no effect.I have created local0, cisco files: I am not sure what file name should I give? where must it be specified?<BR>
&gt;<BR>
&gt; I will be grateful for any tip :)<BR>
&gt;<BR>
&gt; warm regards<BR>
&gt; Yelena<BR>
&gt;<BR>
&gt;<BR>
&gt;<BR>
<BR>
--<BR>
___________________________________________________________________________<BR>
A Linux-Server is like a tent: no windows, no gates and an apache inside...<BR>
_______________________________________________<BR>
syslog-ng maillist&nbsp; -&nbsp; syslog-ng@lists.balabit.hu<BR>
<A HREF="https://lists.balabit.hu/mailman/listinfo/syslog-ng">https://lists.balabit.hu/mailman/listinfo/syslog-ng</A><BR>
Frequently asked questions at <A HREF="http://www.campin.net/syslog-ng/faq.html">http://www.campin.net/syslog-ng/faq.html</A><BR>
<BR>
<BR>
</FONT>
</P>

</BODY>
</HTML>