Hello

I am having a problem where anytime I point a new host to my Syslog-ng server, it seems to write to all logfiles located in the syslog-ng.conf file.  Thanks for your response in advance.

Here is my configuration file:


options { sync (0);
          time_reopen (10);
          log_fifo_size (1000);
            check_hostname(yes);
          long_hostnames (off);
          use_dns (yes);
          use_fqdn (yes);
          create_dirs (yes);
          keep_hostname (yes);
        };


filter f_borderpix      { host("525edgepixpair") or match ("*.*.*.*"); };
destination d_borderpix { file("/var/log/logfiles/borderpix/borderpix.log"); };
log { source(s_net); destination(d_borderpix); };

filter f_stelt_hurricane        { host("hurricane") or match ("*.*.*.*"); };
destination d_stelt_hurricane   { file("/var/log/logfiles/stelt/hurricane.log"); };
log { source(s_net); destination(d_stelt_hurricane); };


filter f_stelt_cyclone          { host("cyclone") or match ("*.*.*.*"); };
destination d_stelt_cyclone     { file("/var/log/logfiles/stelt/cyclone.log"); };
log { source(s_net); destination(d_stelt_cyclone); };

Thanks,

Brian