Displaying 4 results from an estimated 4 matches for "allowed_hosts".
2011 Nov 30
1
Using facts from stored configs based on class
...class="nagios::server" |>>
# Construct firewall rule from template using knowledge of external hosts.
ipt_fragment { "090nrpe_filter":
table => "filter",
content => template("nagios/nrpe.cfg.erb"),
}
}
templates/nrpe.cfg.erb:
...
allowed_hosts=<%= nagios_servers.join('','') %>
...
I''m currently storing this type of data (nagios_servers) in CSV & using
extlookup, but it seems to me that we should already know this information
if we''re using stored configs.
Thanks,
Grant
--
You received this...
2015 May 02
0
Could not complete SSL handshake to Amazon EC2 host
...IP
> >for the monitoring host in /etc/xinetd.d/npre.
>
> Not the xinetd config, the nrpe config (too).
Hmmmm. but the nrpe.confg file is ignored in the case of allowed hosts.
>From the nrpe config:
# NOTE: This option is ignored if NRPE is running under either inetd or
xinetd
allowed_hosts=127.0.0.1
Thanks for the input tho, I genuinely appreciate it!
On Sat, May 2, 2015 at 4:05 PM, Mark Milhollan <mlm at pixelgate.net> wrote:
> On Sat, 2 May 2015, Tim Dunphy wrote:
>
> >>>It's only when checking from the monitoring host that nrpe fails:
> >>Ch...
2015 May 01
8
Could not complete SSL handshake to Amazon EC2 host
Hello,
I am trying to monitor a host in the Amazon EC2 cloud.
Yet when I try to check NRPE from the monitoring host I am getting an SSL
handshake error:
[root at monitor1:~] #/usr/local/nagios/libexec/check_nrpe -H ops.jokefire.com
CHECK_NRPE: Error - Could not complete SSL handshake.
And if I telnet into the host on port 5666 to see if the FW port is open,
the connection closes right away:
2008 Jan 21
0
70 commits - configure.ac libswfdec-gtk/Makefile.am libswfdec-gtk/swfdec-gtk.h libswfdec-gtk/swfdec_gtk_loader.c libswfdec-gtk/swfdec_gtk_player.c libswfdec-gtk/swfdec_gtk_socket.c libswfdec-gtk/swfdec_gtk_socket.h libswfdec-gtk/swfdec_playback_alsa.c
...fine SWFDEC_IS_POLICY_FILE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), SWFDEC_TYPE_POLICY_FILE))
@@ -45,6 +44,8 @@ struct _SwfdecPolicyFile {
SwfdecURL * url; /* parent url we check with */
SwfdecLoader * stream; /* stream we are loading or NULL if done loading */
GSList * allowed_hosts; /* list of GPatternSpec of the allowed hosts */
+
+ GSList * requests; /* requests waiting for this file to finish loading */
};
struct _SwfdecPolicyFileClass {
@@ -59,12 +60,6 @@ gboolean swfdec_policy_file_is_loading (SwfdecPolicyFile * file);
gboolean swfdec_policy_file_allow (SwfdecPoli...