[syslog-ng]Solaris 8 Syslog-ng not logging

syslog-ng@lists.balabit.hu syslog-ng@lists.balabit.hu
Wed, 26 Feb 2003 09:25:03 -0700


> From: Ratliff, Lonnie 
> 
<snip>
> Here is my system and configuration.
> 
> Sun V880
> Solaris 8
> syslog-ng version 1.6.0rc1
> 
> No errors noted during compiling and I verified it did come back with
> Sun Streams and door support.
> 
> I've carved my config file down to the following, just to get
> something.  I've even tried the default filter and all it logged was
> Syslog-ng was starting.
> 
> options { sync(0);
> 	use_dns(no);
> 	use_fqdn(no);
> 	 };


You need to use: source net { udp(); tcp(); };


> 
> source local { sun-streams("/dev/log" door("/etc/.syslog_door"));
> internal(); };
> 
> filter f_host { host("10.0.0.1"); };
> 
> destination pix01 { file("/syslog/firewalls/pix01"); };
> 
> log { source(local); filter(f_host); destination(pix01); };


log { source(net); filter(f_host); destination(pix01); };

log { source(local); filter(new local filter); destination(new local dest);
};


-mike