<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html; charset=ISO-8859-1"
 http-equiv="Content-Type">
</head>
<body text="#000000" bgcolor="#ffffff">
i was recieving a syntax error on line 58 . here is the config that i
was useing .<br>
<br>
# syslog-ng configuration file.<br>
#<br>
# This should behave pretty much like the original syslog on RedHat. But<br>
# it could be configured a lot smarter.<br>
#<br>
# See syslog-ng(8) and syslog-ng.conf(5) for more information.<br>
#<br>
<br>
options {<br>
&nbsp;&nbsp;&nbsp; sync (0);<br>
&nbsp;&nbsp;&nbsp; time_reopen (10);<br>
&nbsp;&nbsp;&nbsp; log_fifo_size (1000);<br>
&nbsp;&nbsp;&nbsp; long_hostnames (off);<br>
&nbsp;&nbsp;&nbsp; use_dns (no);<br>
&nbsp;&nbsp;&nbsp; use_fqdn (no);<br>
&nbsp;&nbsp;&nbsp; create_dirs (no);<br>
&nbsp;&nbsp;&nbsp; keep_hostname (yes);<br>
};<br>
<br>
source s_sys {<br>
&nbsp;&nbsp;&nbsp; file ("/proc/kmsg" log_prefix("kernel: "));<br>
&nbsp;&nbsp;&nbsp; unix-stream ("/dev/log");<br>
&nbsp;&nbsp;&nbsp; internal();<br>
&nbsp;&nbsp;&nbsp; #udp(ip(0.0.0.0) port(514));<br>
};<br>
<br>
source Router {<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; udp(ip(192.168.20.1) port(514));<br>
};<br>
<br>
destination d_cons { file("/dev/console"); };<br>
destination d_mesg { file("/var/log/messages"); };<br>
destination d_auth { file("/var/log/secure"); };<br>
destination d_mail { file("/var/log/maillog" sync(10)); };<br>
destination d_spol { file("/var/log/spooler"); };<br>
destination d_boot { file("/var/log/boot.log"); };<br>
destination d_cron { file("/var/log/cron"); };<br>
destination d_kern { file("/var/log/kern"); };<br>
destination d_mlal { usertty("*"); };<br>
destination d_Router{ file("/var/log/Router"); };<br>
<br>
filter f_kernel&nbsp;&nbsp;&nbsp;&nbsp; { facility(kern); };<br>
filter f_default&nbsp;&nbsp;&nbsp; { level(info..emerg) and<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; not (facility(mail)<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; or facility(authpriv) <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; or facility(cron)); };<br>
filter f_auth&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { facility(authpriv); };<br>
filter f_mail&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { facility(mail); };<br>
filter f_emergency&nbsp; { level(emerg); };<br>
filter f_news&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { facility(uucp) or<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (facility(news) <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; and level(crit..emerg)); };<br>
filter f_boot&nbsp;&nbsp; { facility(local7); };<br>
filter f_cron&nbsp;&nbsp; { facility(cron); };<br>
filter f_Router&nbsp;&nbsp;&nbsp; { level(info); }<br>
<br>
log { source(s_sys); filter(f_kernel); destination(d_cons); };<br>
log { source(s_sys); filter(f_kernel); destination(d_kern); };<br>
log { source(s_sys); filter(f_default); destination(d_mesg); };<br>
log { source(s_sys); filter(f_auth); destination(d_auth); };<br>
log { source(s_sys); filter(f_mail); destination(d_mail); };<br>
log { source(s_sys); filter(f_emergency); destination(d_mlal); };<br>
log { source(s_sys); filter(f_news); destination(d_spol); };<br>
log { source(s_sys); filter(f_boot); destination(d_boot); };<br>
log { source(s_sys); filter(f_cron); destination(d_cron); };<br>
log { source(Router); filter(f_Router); destination(d_Router); };<br>
<br>
vim:ft=syslog-ng:ai:si:ts=4:sw=4:et:<br>
<br>
On 01/14/2011 01:36 AM, Patrick H. wrote:
<blockquote cite="mid:4D2FFCE3.8070305@feystorm.net" type="cite">
  <meta content="text/html; charset=ISO-8859-1"
 http-equiv="Content-Type">
  <font size="-1"><font face="Helvetica, Arial, sans-serif">Can you
post
the errors and your config?<br>
  <br>
-Patrick<br>
  </font></font><br>
Sent: Fri Jan 14 2011 00:16:25 GMT-0700 (Mountain Standard Time)<br>
From: Christopher Petsch <a moz-do-not-send="true"
 class="moz-txt-link-rfc2396E"
 href="mailto:jedi_darklighter@hotmail.com">&lt;jedi_darklighter@hotmail.com&gt;</a><br>
To: <a moz-do-not-send="true" class="moz-txt-link-abbreviated"
 href="mailto:syslog-ng@lists.balabit.hu">syslog-ng@lists.balabit.hu</a>
  <br>
Subject: [syslog-ng] Syslogs from Router
  <blockquote cite="mid:BLU0-SMTP138E30E68FE14DDDF2D8C30E7F30@phx.gbl"
 type="cite">
    <pre wrap="">I am trying to get my router (Netgear FVS338) to send syslogs to my
computer but I cant seem to get it configured correctly. Ive googled for
the past three days and come up short with little to no help and what
little i did find i kept getting syntax errors for. I know I'm doing
something wrong but I don't know what. If I could get some help on this
or be pointed in a better direction it would be most appricated. Thank
you in advance.

  </pre>
    <pre wrap=""><hr size="4" width="90%">
______________________________________________________________________________
Member info: <a moz-do-not-send="true" class="moz-txt-link-freetext"
 href="https://lists.balabit.hu/mailman/listinfo/syslog-ng">https://lists.balabit.hu/mailman/listinfo/syslog-ng</a>
Documentation: <a moz-do-not-send="true" class="moz-txt-link-freetext"
 href="http://www.balabit.com/support/documentation/?product=syslog-ng">http://www.balabit.com/support/documentation/?product=syslog-ng</a>
FAQ: <a moz-do-not-send="true" class="moz-txt-link-freetext"
 href="http://www.campin.net/syslog-ng/faq.html">http://www.campin.net/syslog-ng/faq.html</a>

  </pre>
  </blockquote>
  <pre wrap="">
<fieldset class="mimeAttachmentHeader"></fieldset>
______________________________________________________________________________
Member info: <a class="moz-txt-link-freetext" href="https://lists.balabit.hu/mailman/listinfo/syslog-ng">https://lists.balabit.hu/mailman/listinfo/syslog-ng</a>
Documentation: <a class="moz-txt-link-freetext" href="http://www.balabit.com/support/documentation/?product=syslog-ng">http://www.balabit.com/support/documentation/?product=syslog-ng</a>
FAQ: <a class="moz-txt-link-freetext" href="http://www.campin.net/syslog-ng/faq.html">http://www.campin.net/syslog-ng/faq.html</a>

  </pre>
</blockquote>
<br>
<pre class="moz-signature" cols="72">-- 
Sincerely,
           Chris

" Governments are instituted among Men, deriving their just powers from the consent of the governed,- That whenever any Form of  Government becomes destructive of these ends, it is the Right of the People to alter or to abolish it, and to institute new Government, laying its foundation on such principles and organizing its powers in such form, as to them shall seem most likely to effect their Safety and Happiness. - But when a long train of abuses and usurpations, pursuing invariably the same Objective evinces a design to reduce them under absolute Despotism, it is their right, it is their duty, to throw off such Government, and to provide new Guards for their future security. "
- The United States Declaration of Independence, July 4, 1776

KeyID: 0x348DC808
Keyserver: pool.sks-keyservers.net
</pre>
</body>
</html>