<!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 bgcolor="#ffffff" text="#000000">
    Hi,<br>
    <br>
    If you start syslog-ng in debug mode (syslog-ng -Fevd) it will
    complain about the problems.<br>
    <br>
    I've fixed your configuration, the problems were the following:<br>
    -sun-stream -&gt; sun-streams<br>
    -created_dirs was given for destinations, it's only a global option<br>
    <br>
    Also, you shouldn't declare the same source twice
    (sun-streams("dev/log")), you can use a source in several log path.
    E.g.:<br>
    log { <br>
    source(s_ext);<br>
    source(s_sys);<br>
    destination(d_ext); };<br>
    --------------------------------------------<br>
    Fixed config:<br>
    <br>
    @version: 4.0<br>
    options {<br>
    sync (0);<br>
    time_reopen (10);<br>
    log_fifo_size (1000);<br>
    long_hostnames (off);<br>
    use_dns (no);<br>
    use_fqdn (no);<br>
    create_dirs (yes);<br>
    keep_hostname (yes);<br>
    };<br>
    <br>
    source s_sys {<br>
    file ("/proc/kmsg" log_prefix("kernel: "));<br>
    sun-streams ("/dev/log");<br>
    internal();<br>
    };<br>
    <br>
    &nbsp;<br>
    <br>
    # External Source<br>
    <br>
    source s_ext<br>
    <br>
    {<br>
    # Standard Syslog<br>
    udp(); # All interfaces<br>
    tcp(); # All interfaces on tcp port<br>
    sun-streams("/dev/log"); # you should remove it and use the s_sys
    source in the proper log path<br>
    };<br>
    <br>
    destination d_cons { file("/dev/console"); };<br>
    destination d_mesg { file("/var/adm/messages"); };<br>
    destination d_mail { file("/var/log/syslog"); };<br>
    destination d_auth { file("/var/log/authlog"); };<br>
    destination d_mlop { usertty("operator"); };<br>
    destination d_mlrt { usertty("root"); };<br>
    destination d_mlal { usertty("*"); };<br>
    destination d_ext<br>
    <br>
    {<br>
    <br>
    file("/syslog-ng/$HOST/$YEAR/$MONTH/$DAY/$FACILITY$YEAR$MONTH$DAY" \<br>
    owner(root) group(root) perm(0650) dir_perm(0750));<br>
    <br>
    };<br>
    <br>
    &nbsp;<br>
    <br>
    filter f_filter1&nbsp;&nbsp; { level(err) or<br>
    <br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (level(notice) and facility (auth, kern)); };<br>
    <br>
    filter f_filter2&nbsp;&nbsp; { level(err) or<br>
    <br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (facility(kern) and level(notice)) or<br>
    <br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (facility(daemon) and level(notice)) or<br>
    <br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (facility(mail) and level(crit)); };<br>
    <br>
    filter f_filter3&nbsp;&nbsp; { level(alert) or<br>
    <br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (facility(kern) and level(err)) or<br>
    <br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (facility(daemon) and level(err)); };<br>
    <br>
    filter f_filter4&nbsp;&nbsp; { level(alert); };<br>
    <br>
    filter f_filter5&nbsp;&nbsp; { level(emerg); };<br>
    <br>
    filter f_filter6&nbsp;&nbsp; { facility(kern) and level(notice); };<br>
    <br>
    filter f_filter7&nbsp;&nbsp; { facility(mail) and level(debug); };<br>
    <br>
    filter f_filter8&nbsp;&nbsp; { facility(user) and level(err); };<br>
    <br>
    filter f_filter9&nbsp;&nbsp; { facility(user) and level(alert); };<br>
    <br>
    &nbsp;<br>
    <br>
    log { source(s_sys); filter(f_filter1); destination(d_cons); };<br>
    <br>
    log { source(s_sys); filter(f_filter2); destination(d_mesg); };<br>
    <br>
    log { source(s_sys); filter(f_filter3); destination(d_mlop); };<br>
    <br>
    log { source(s_sys); filter(f_filter4); destination(d_mlrt); };<br>
    <br>
    log { source(s_sys); filter(f_filter5); destination(d_mlal); };<br>
    <br>
    log { source(s_sys); filter(f_filter6); destination(d_auth); };<br>
    <br>
    log { source(s_sys); filter(f_filter7); destination(d_mail); };<br>
    <br>
    log { source(s_sys); filter(f_filter8); destination(d_cons);<br>
    <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;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; destination(d_mesg); };<br>
    <br>
    &nbsp;<br>
    <br>
    log { source(s_ext); destination(d_ext); };<br>
    <br>
    On 2011-04-27 10:06, <a class="moz-txt-link-abbreviated" href="mailto:sramesh.kumar@wipro.com">sramesh.kumar@wipro.com</a> wrote:
    <blockquote
cite="mid:E22CFF69523D6D44ACE6357FAFD12B8753AAD6@HYD-MKD-MBX01.wipro.com"
      type="cite">
      <meta http-equiv="Content-Type" content="text/html;
        charset=ISO-8859-1">
      <meta name="Generator" content="Microsoft Word 12 (filtered
        medium)">
      <style>
<!--
 /* Font Definitions */
 @font-face
        {font-family:Wingdings;
        panose-1:5 0 0 0 0 0 0 0 0 0;}
@font-face
        {font-family:Wingdings;
        panose-1:5 0 0 0 0 0 0 0 0 0;}
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
@font-face
        {font-family:Tahoma;
        panose-1:2 11 6 4 3 5 4 4 2 4;}
@font-face
        {font-family:Verdana;
        panose-1:2 11 6 4 3 5 4 4 2 4;}
@font-face
        {font-family:"Arial Narrow";
        panose-1:2 11 6 6 2 2 2 3 2 4;}
 /* Style Definitions */
 p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0in;
        margin-bottom:.0001pt;
        font-size:11.0pt;
        font-family:"Calibri","sans-serif";}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:blue;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {mso-style-priority:99;
        color:purple;
        text-decoration:underline;}
pre
        {mso-style-priority:99;
        mso-style-link:"HTML Preformatted Char";
        margin:0in;
        margin-bottom:.0001pt;
        font-size:10.0pt;
        font-family:"Courier New";}
span.EmailStyle17
        {mso-style-type:personal-compose;
        font-family:"Calibri","sans-serif";
        color:windowtext;}
span.HTMLPreformattedChar
        {mso-style-name:"HTML Preformatted Char";
        mso-style-priority:99;
        mso-style-link:"HTML Preformatted";
        font-family:"Courier New";}
.MsoChpDefault
        {mso-style-type:export-only;}
@page Section1
        {size:8.5in 11.0in;
        margin:1.0in 1.0in 1.0in 1.0in;}
div.Section1
        {page:Section1;}
-->
</style><!--[if gte mso 9]><xml>
 <o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
 <o:shapelayout v:ext="edit">
  <o:idmap v:ext="edit" data="1" />
 </o:shapelayout></xml><![endif]-->
      <div class="Section1">
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">Hi
            All,<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;"><o:p>&nbsp;</o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">Can
            any body help me.
            Please?????<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">I
            hve configured syslog-ng in
            X86 server. Bellow is the configuration.<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">But
            Logs are not coming under
            /syslog-ng folder.....if I am wrong in<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">bellow
            configuration, can you
            Please Provide step by step configuration<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">Procedure
            to configure the
            same...<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;"><o:p>&nbsp;</o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">#
            cat
            /etc/syslog-ng/syslog-ng.conf<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">options
            {<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">sync
            (0);<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">time_reopen
            (10);<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">log_fifo_size
            (1000);<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">long_hostnames
            (off);<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">use_dns
            (no);<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">use_fqdn
            (no);<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">create_dirs
            (yes);<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">keep_hostname
            (yes);<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">};<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">source
            s_sys {<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">file
            ("/proc/kmsg"
            log_prefix("kernel: "));<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">sun-stream
            ("/dev/log");<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">internal();<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">};<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;"><o:p>&nbsp;</o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">#
            External Source<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">source
            s_ext<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;"><o:p>&nbsp;</o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">{<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">#
            Standard Syslog<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">udp();
            # All interfaces<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">tcp();
            # All interfaces on tcp
            port<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">sun-stream("/dev/log");<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">};<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">destination
            d_cons {
            file("/dev/console"); };<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">destination
            d_mesg {
            file("/var/adm/messages"); };<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">destination
            d_mail {
            file("/var/log/syslog"); };<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">destination
            d_auth {
            file("/var/log/authlog"); };<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">destination
            d_mlop {
            usertty("operator"); };<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">destination
            d_mlrt {
            usertty("root"); };<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">destination
            d_mlal {
            usertty("*"); };<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">destination
            d_ext<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">{<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">file("/syslog-ng/$HOST/$YEAR/$MONTH/$DAY/$FACILITY$YEAR$MONTH$DAY"
            \<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">owner(root)
            group(root)
            perm(0650) dir_perm(0750) create_dirs(yes));<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;"><o:p>&nbsp;</o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">create_dirs(yes));<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">};<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;"><o:p>&nbsp;</o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">filter
            f_filter1&nbsp;&nbsp; { level(err)
            or<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
(level(notice)
            and facility (auth, kern)); };<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">filter
            f_filter2&nbsp;&nbsp; { level(err)
            or<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
(facility(kern)
            and level(notice)) or<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
            (facility(daemon)
            and level(notice)) or<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
(facility(mail)
            and level(crit)); };<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">filter
            f_filter3&nbsp;&nbsp; {
            level(alert) or<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
(facility(kern)
            and level(err)) or<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
(facility(daemon)
            and level(err)); };<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">filter
            f_filter4&nbsp;&nbsp; {
            level(alert); };<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">filter
            f_filter5&nbsp;&nbsp; {
            level(emerg); };<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">filter
            f_filter6&nbsp;&nbsp; {
            facility(kern) and level(notice); };<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">filter
            f_filter7&nbsp;&nbsp; {
            facility(mail) and level(debug); };<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">filter
            f_filter8&nbsp;&nbsp; {
            facility(user) and level(err); };<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">filter
            f_filter9&nbsp;&nbsp; {
            facility(user) and level(alert); };<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;"><o:p>&nbsp;</o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">log
            { source(s_sys);
            filter(f_filter1); destination(d_cons); };<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">log
            { source(s_sys);
            filter(f_filter2); destination(d_mesg); };<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">log
            { source(s_sys);
            filter(f_filter3); destination(d_mlop); };<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">log
            { source(s_sys); filter(f_filter4);
            destination(d_mlrt); };<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">log
            { source(s_sys);
            filter(f_filter5); destination(d_mlal); };<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">log
            { source(s_sys);
            filter(f_filter6); destination(d_auth); };<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">log
            { source(s_sys);
            filter(f_filter7); destination(d_mail); };<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">log
            { source(s_sys); filter(f_filter8);
            destination(d_cons);<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">&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;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
destination(d_mesg);
            };<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;"><o:p>&nbsp;</o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">log
            { source(s_ext);
            destination(d_ext); };<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">#
            isainfo -kv<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">64-bit
            amd64 kernel modules<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">#
            cat /etc/release<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
            Solaris
            10 10/08 s10x_u6wos_07b X86<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
            Copyright 2008 Sun
            Microsystems, Inc.&nbsp; All Rights Reserved.<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
            Use is
            subject to license terms.<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">&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;
Assembled
            27 October 2008<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">#
            pkginfo -l SMCsyslng<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">&nbsp;&nbsp;
            PKGINST:&nbsp; SMCsyslng<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
            NAME:&nbsp; syslogng<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">&nbsp;
            CATEGORY:&nbsp; application<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
            ARCH:&nbsp; x86<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">&nbsp;&nbsp;
            VERSION:&nbsp; 2.0.5<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">&nbsp;&nbsp;
            BASEDIR:&nbsp; /usr/local<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">&nbsp;&nbsp;&nbsp;
            VENDOR:&nbsp; BalaBit IT Ltd<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">&nbsp;&nbsp;&nbsp;
            PSTAMP:&nbsp; Steve Christensen<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">&nbsp;
            INSTDATE:&nbsp; Apr 20 2011 16:24<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">&nbsp;&nbsp;&nbsp;&nbsp;
            EMAIL:&nbsp; <a class="moz-txt-link-abbreviated" href="mailto:steve@smc.vnet.net">steve@smc.vnet.net</a><o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">&nbsp;&nbsp;&nbsp;
            STATUS:&nbsp; completely
            installed<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">&nbsp;&nbsp;&nbsp;&nbsp;
            FILES:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 64 installed
            pathnames<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
            3 shared
            pathnames<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
            15 directories<o:p></o:p></span></p>
        <p class="MsoNormal" style="line-height: 10.5pt;"><span
            style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
            2 executables<o:p></o:p></span></p>
        <p class="MsoNormal"><span style="font-size: 8.5pt; font-family:
            &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: black;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
            2163 blocks used (approx)</span><o:p></o:p></p>
        <p class="MsoNormal"><o:p>&nbsp;</o:p></p>
        <p class="MsoNormal"><o:p>&nbsp;</o:p></p>
        <p class="MsoNormal"><o:p>&nbsp;</o:p></p>
        <p class="MsoNormal"><o:p>&nbsp;</o:p></p>
        <p class="MsoNormal"><o:p>&nbsp;</o:p></p>
        <p class="MsoNormal"><o:p>&nbsp;</o:p></p>
        <p class="MsoNormal"><o:p>&nbsp;</o:p></p>
        <p class="MsoNormal"><o:p>&nbsp;</o:p></p>
        <p class="MsoNormal"><o:p>&nbsp;</o:p></p>
        <p class="MsoNormal"><o:p>&nbsp;</o:p></p>
        <p class="MsoNormal"><o:p>&nbsp;</o:p></p>
        <p class="MsoNormal"><o:p>&nbsp;</o:p></p>
        <p class="MsoNormal"><i><span style="font-size: 10pt;
              font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;;
              color: rgb(31, 73, 125);">Thanks &amp; Regards,<o:p></o:p></span></i></p>
        <p class="MsoNormal"><i><span style="font-size: 10pt;
              font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;;
              color: rgb(31, 73, 125);">Ramesh Kumar,<o:p></o:p></span></i></p>
        <p class="MsoNormal"><i><span style="font-size: 10pt;
              font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;;
              color: rgb(31, 73, 125);">Wipro Infotech Hyderabad,<o:p></o:p></span></i></p>
        <p class="MsoNormal"><i><span style="font-size: 10pt;
              font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;;
              color: rgb(31, 73, 125);">Mobile: +91 905 221 3330<o:p></o:p></span></i></p>
        <p class="MsoNormal"><b><i><span style="font-size: 7.5pt;
                font-family: Wingdings; color: gray;">*</span></i></b><b><i><span
                style="font-size: 10pt; font-family:
                &quot;Verdana&quot;,&quot;sans-serif&quot;; color:
                gray;"> </span></i></b><b><i><span style="font-size:
                7.5pt; font-family:
                &quot;Verdana&quot;,&quot;sans-serif&quot;; color:
                gray;">:&nbsp;<a moz-do-not-send="true"
                  href="mailto:sramesh.kumar@wipro.com"><span
                    style="color: blue;">sramesh.kumar@wipro.com</span></a></span></i></b><b><i><span
                style="font-size: 10pt; font-family:
                &quot;Verdana&quot;,&quot;sans-serif&quot;; color:
                rgb(153, 153, 153);"><o:p></o:p></span></i></b></p>
        <p class="MsoNormal"><b><i><span style="font-size: 10pt;
                font-family: &quot;Arial
                Narrow&quot;,&quot;sans-serif&quot;; color: white;
                background: none repeat scroll 0% 0% red;">Intensity to
                Win</span></i></b><b><i><span style="font-size: 10pt;
                font-family: &quot;Arial
                Narrow&quot;,&quot;sans-serif&quot;; color: white;
                background: none repeat scroll 0% 0% lime;"> Act with
                Sensitivity</span></i></b><b><i><span style="font-size:
                10pt; font-family: &quot;Arial
                Narrow&quot;,&quot;sans-serif&quot;; color: white;
                background: none repeat scroll 0% 0% blue;"> Unyielding
                Integrity</span></i></b><span style="font-size: 12pt;
            font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;
            color: black;"><o:p></o:p></span></p>
        <p class="MsoNormal"><o:p>&nbsp;</o:p></p>
      </div>
      <p><strong><span style="font-size: 10pt; font-family:
            &quot;Palatino Linotype&quot;,&quot;serif&quot;; color:
            green;"> Please do not print this email unless it is
            absolutely necessary. </span></strong><span
          style="font-family: &quot;Arial&quot;,&quot;sans-serif&quot;;"><o:p></o:p></span></p>
      <p> The information contained in this electronic message and any
        attachments to this message are intended for the exclusive use
        of the addressee(s) and may contain proprietary, confidential or
        privileged information. If you are not the intended recipient,
        you should not disseminate, distribute or copy this e-mail.
        Please notify the sender immediately and destroy all copies of
        this message and any attachments. </p>
      <p>WARNING: Computer viruses can be transmitted via email. The
        recipient should check this email and any attachments for the
        presence of viruses. The company accepts no liability for any
        damage caused by any virus transmitted by this email. </p>
      <p>
        <a class="moz-txt-link-abbreviated" href="http://www.wipro.com">www.wipro.com</a>
      </p>
      <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>
  </body>
</html>