Search found 16 matches
- Wed Nov 29, 2017 1:40 pm
- Forum: Nagios XI
- Topic: Changed host IP now get SSL handshake failed from NRPE
- Replies: 14
- Views: 2666
Re: Changed host IP now get SSL handshake failed from NRPE
I'm very sorry, but this ended up being a firewall issue. Our next-gen firewall was doing some inconsistent things that weren't getting logged, so I missed it. I really appreciate your time on this. FYI for anyone running PAN-OS firewalls, entering "nagios" as the application and "app...
- Wed Nov 29, 2017 12:16 pm
- Forum: Nagios XI
- Topic: Changed host IP now get SSL handshake failed from NRPE
- Replies: 14
- Views: 2666
Re: Changed host IP now get SSL handshake failed from NRPE
Also keep in mind that this worked before I made a change. The only change that was made was to the IP address.
- Wed Nov 29, 2017 12:14 pm
- Forum: Nagios XI
- Topic: Changed host IP now get SSL handshake failed from NRPE
- Replies: 14
- Views: 2666
Re: Changed host IP now get SSL handshake failed from NRPE
NMAP shows it open. [root@nagiosxi libexec]# nmap 10.33.16.39 -p 5666 Starting Nmap 6.47 ( http://nmap.org ) at 2017-11-29 10:51 CST Nmap scan report for redrad01.uark.edu (10.33.16.39) Host is up (0.0012s latency). PORT STATE SERVICE 5666/tcp open nrpe Also, I took out the 130.184. address from nrp...
- Wed Nov 29, 2017 12:09 pm
- Forum: Nagios XI
- Topic: Changed host IP now get SSL handshake failed from NRPE
- Replies: 14
- Views: 2666
Re: Changed host IP now get SSL handshake failed from NRPE
ScottG , Are you able to nmap the nrpe client server from the Nagios server? nmap <target IP> -p 5666 What happens when you run service nrpe status on the remote server? Do you get any errors? I've seen some old bug where nrpe.pid file would not get properly created/replaced. So if you're able to f...
- Wed Nov 29, 2017 10:06 am
- Forum: Nagios XI
- Topic: Changed host IP now get SSL handshake failed from NRPE
- Replies: 14
- Views: 2666
Re: Changed host IP now get SSL handshake failed from NRPE
/usr/local/nagios/etc/nrpe.cfg allowed_hosts=127.0.0.1,Nagios_Server_IP Mine is actually in a different directory. This is on RHEL7 and installed from repo. [root@redrad01 sgardne]# cat /etc/nagios/nrpe.cfg | grep allowed_hosts= allowed_hosts=127.0.0.1,10.7.2.37,130.184.253.9 The Nagios server is t...
- Tue Nov 28, 2017 4:55 pm
- Forum: Nagios XI
- Topic: Changed host IP now get SSL handshake failed from NRPE
- Replies: 14
- Views: 2666
Re: Changed host IP now get SSL handshake failed from NRPE
No problem, Could you post your nagios.cfg for us also? # MODIFIED admin_email=root@localhost admin_pager=root@localhost translate_passive_host_checks=1 log_event_handlers=0 use_large_installation_tweaks=1 enable_environment_macros=0 # NDOUtils module broker_module=/usr/local/nagios/bin/ndomod.o co...
- Tue Nov 28, 2017 3:53 pm
- Forum: Nagios XI
- Topic: Changed host IP now get SSL handshake failed from NRPE
- Replies: 14
- Views: 2666
Re: Changed host IP now get SSL handshake failed from NRPE
Hey ScottG, just checking in to see if your issue is resolved? Did you have any more questions? Or did you figure this out? I apologize. I have not circled back around to this yet. I can say that the troubleshooting tips in that link did not solve my issue. I need to do more looking at it though. I...
- Mon Nov 13, 2017 4:54 pm
- Forum: Nagios XI
- Topic: Changed host IP now get SSL handshake failed from NRPE
- Replies: 14
- Views: 2666
Changed host IP now get SSL handshake failed from NRPE
Hi, I migrated a host from one network to another and subsequently had to change the IP address. Now, my check_nrpe commands return SSL error on the Nagios XI server: CHECK_NRPE: Error - Could not complete SSL handshake. And on the client syslog: Nov 13 15:50:54 redrad01 nrpe[28397]: Error: Network ...
- Thu Sep 15, 2016 1:46 pm
- Forum: Nagios XI
- Topic: New API error "No API Key provided"
- Replies: 13
- Views: 1807
Re: New API error "No API Key provided"
Go for it. Thanks again.mcapra wrote:Is it alright if we lock this thread and mark the issue as resolved?
- Thu Sep 15, 2016 1:28 pm
- Forum: Nagios XI
- Topic: New API error "No API Key provided"
- Replies: 13
- Views: 1807
Re: New API error "No API Key provided"
Looks like an issue in your ssl.conf. Specifically this line: RewriteRule nagiosxi/api/v1/(.*)$ /usr/local/nagiosxi/html/api/v1/index.php?request=$1[QSA,NC,L] Has no space at the end of the request which is going to do some potentially nasty things to the rewrite. Add a space to the end and see if ...