'reset by peer' would indicate that there is a something sending a reset packet when the client attempts to connect. Could be a firewall or the vx933 server itself. Make sure port 8543 is up, listening, accepting connections, and that there isn't a firewall blocking it.
As of May 25th, 2018, all communications with Nagios Enterprises and its employees are covered under our new Privacy Policy.
cdienger wrote:'reset by peer' would indicate that there is a something sending a reset packet when the client attempts to connect. Could be a firewall or the vx933 server itself. Make sure port 8543 is up, listening, accepting connections, and that there isn't a firewall blocking it.
But telnet seems to work:
telnet.png
Does it make sense with the hipotesis of firewall block?
You do not have the required permissions to view the files attached to this post.
Some firewalls can prevent a SSL connection over non standard ports which could explain why you're able to make a TCP connection with telnet.
A tcpdump taken on both the XI server and vx933 server while trying to run the curl command and plugin can shed some light on what's happen. On the XI server this can be done with:
yum -y install tcpdump
tcpdump -s 0 -i any port 8543 -w ouput.pcap
Use CTRL+C to stop the tcpdump after reproducing the problem. Output.pcap can be review with Wireshark. Feel free to PM me a copy if you'd like to have me review it.
As of May 25th, 2018, all communications with Nagios Enterprises and its employees are covered under our new Privacy Policy.
There does appear to be something between the two machines that is closing connection prematurely.
-The XI capture shows two attempt to connect but the remote side capture only shows one attempt
-The one connection that is seen on both traces doesn't show the same traffic. On the XI side we see the XI server sending a "Client Hello", but this is never received on the destination side. The connection on both ends is terminated with a RST packet.
Try running the check_plugin command with the "--sni" option. Some devices may require this option.
What OS is XI installed on?
As of May 25th, 2018, all communications with Nagios Enterprises and its employees are covered under our new Privacy Policy.