Thanks for the response.
The following is the output from netstat on Nagios XI machine;
Code: Select all
[root@nagiosxi etc]# netstat -l -n|grep 5667
tcp 0 0 :::5667 :::* LISTEN Code: Select all
root@muninnagios:~# telnet 192.168.3.121 5667
Trying 192.168.3.121...
telnet: Unable to connect to remote host: No route to host/etc/xinetd.d/nsca
Where I have the following;
Code: Select all
# description: NSCA (Nagios Service Check Acceptor)
service nsca
{
flags = REUSE
type = UNLISTED
port = 5667
socket_type = stream
wait = no
server = /usr/sbin/nsca
server_args = -c /usr/local/nagios/etc/nsca.cfg --inetd
user = nagios
group = nagios
log_on_failure += USERID
only_from = 192.168.3.121
}Using the command below you can install a nsca.cfg file (/etc/nsac.cfg), but once again it uses Nagios references in that file and changed them to the same as the Nagios XI machine still leads to the above telnet error.
Code: Select all
aptitude install nscaThank you.
Kind Regards,
gshergill