> http://www.campin.net/syslog-ng/faq.html
>
> What do I need to put in the .conf file to have the logs sent over the net
> work to another machine?
>
> Rick S.
That seems like a huge hassle.
would this work?:
destination loghost {
	tcp("192.168.1.56" port(5140));
};
log {
	source(src);
	destination(loghost);
};