Hi there,<br><br>I'm working on using syslog-ng within our environment mainly due to the ability to use syslog with tcp. I will be traversing firewalls and therefore the tcp-keep-alive() option is vital for me. However when I try to turn this on in my tcp source it gives me a syntax error. I have pasted in the relevant part of the config below. I'm pretty sure I have it right. The strange thing is that when I search the source code for the option I can't find anything as if it has been removed from version
2.0 (the version I'm using).<br><br>Does anyone know what may have happened to the tcp-keep-alive option in version 2.0 and, if I'm right and it isn't there, what are the options in syslog-ng that I could use to prevent the sessions timing out on firewalls?
<br><br>source testsrc {<br> tcp( ip(<a href="http://0.0.0.0">0.0.0.0</a>) port(5514)<br> max-connections(300)<br> keep-alive(yes)<br> tcp-keep-alive(yes)<br> );<br>};<br><br>Thanks.<br>