<html>
<head>
<style><!--
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 12pt;
font-family:Calibri
}
--></style></head>
<body class='hmmessage'><div dir='ltr'>Greetings!<br><br>Is is possible to configure a syslog-ng client to forward logs to a syslog-ng server based on file?<br><br>I am thinking of the following as an example:<br><br>destination named-LOGS {<br>
udp(ip(192.168.1.100) port(555));<br>
};<br>
source named {<br>
file("/var/log/named/bind.log" log_prefix("BIND-LOGS"));<br>
};<BR>
log {<br>
source(named);<br>
destination(named-LOGS);<br>
};<BR><br><BR>destination dhcpd-LOGS {<br>
udp(ip(192.168.1.100) port(556));<br>
};<br>
source dhcpd {<br>
file("/var/log/dhcpd/dhcp.log" log_prefix("DHCPD-LOGS"));<br>
};<BR>
log {<br>
source(dhcpd);<br>
destination(dhcpd-LOGS);<br>
};<BR><br><BR>In this example, I am sending each to the same destination IP address, although that is configurable, but each log file to a different port, and with a different log_prefix as well.<BR><br><BR>Does this OK,or is their a simpler way?<BR><br><BR>Many thanks,<br><BR><br>.vp<br><br>&nbsp;   Vadim Anatoly Pushkin
<br>-- The Ukranian Stallion --<br><br>                                               </div></body>
</html>