<div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr">Hi,<div><br></div><div>I am using TLS over TCP connection to forward my syslog events to a remote server.</div><div>My remote server uses SNI (Server Name Identification) to route connections/events to one of the available backend servers.</div><div><br></div><div>I observe that syslog-ng doesn't send SNI during TLS handshake.</div><div><br></div><div>How can I enable it?</div><div><br></div><div>My configuration is as follows:</div><div><br></div><div><span style="color:rgb(0,0,0);font-family:-webkit-standard;font-size:medium">===================================</span><br></div><div>source s_net { syslog(transport(udp) port(1514)); };<br></div><div><div>destination d_tcp {</div><div>        tcp(</div><div>                "<a href="http://XX.example.net">XX.example.net</a>"</div><div>                port(96)</div><div>                tls(</div><div>                        peer-verify(required-untrusted)</div><div>                        ca_dir("/etc/syslog-ng/ssl")</div><div>                        key-file("/etc/syslog-ng/ssl/globaltest/XX.example.net.key.pem")</div><div>                        cert-file("/etc/syslog-ng/ssl/globaltest/XX.example.net.cert.pem")</div><div>                  )</div><div>        );</div><div>};</div></div><div><div>log {</div><div>        source(s_net);</div><div>        destination(d_tcp);</div><div>};</div></div><div>===================================</div><div><br></div><div>I want syslog-ng to send <a href="http://XX.example.net">XX.example.net</a> as SNI to my remote server</div><div><br></div><div>Please advise</div><div><br></div><div>Thanks</div><div>Raghu</div></div></div></div></div></div>