responses
NXLOG version: NXLog CE 3.0.2272
OS version: Windows 2019 server \ Windows 10 for client
Issue: I inspect the communication between NXLog client and server via Wireshark. Client output module is om_ssl and server input module is im_ssl.
I've been expecting to see the usage of TLS protocol, but all I see is TCP and RSH protocols, which are non secure protocols. How can this be explained?
Client config:
<Output out_ssl>
Module om_ssl
Host <host_ip>
Port 514
OutputType Binary
AllowUntrusted TRUE
</Output>
Server config:
<Input in_ssl>
Module im_ssl
Host 0.0.0.0
Port 514
InputType Binary
CAFile <CA path>
CertFile <Certificate path>
CertKeyFile <private key path>
KeyPass <key password>
AllowUntrusted TRUE
RequireCert FALSE
</Input>
Wireshark is tracking 514 port on the server.
Thanks!