please i want to integred nagios Na with nagios xi but i have some difficulties
NRDP adress and NRDP token i want some informations on these terms
NNA integreted with nagios xi and nagios core
-
- Posts: 63
- Joined: Wed Aug 13, 2014 5:39 am
-
- Posts: 9117
- Joined: Mon Sep 23, 2013 8:40 am
Re: NNA integreted with nagios xi and nagios core
Former Nagios employee
-
- Posts: 63
- Joined: Wed Aug 13, 2014 5:39 am
Re: NNA integreted with nagios xi and nagios core
i read this documents but i have some difficulties with nrdp adress and nrdp token
-
- Posts: 7698
- Joined: Mon Apr 23, 2012 4:28 pm
- Location: Travelling through time and space...
Re: NNA integreted with nagios xi and nagios core
What troubles are you running into? They are found under Admin > Inbound Transfers.
-
- Posts: 63
- Joined: Wed Aug 13, 2014 5:39 am
Re: NNA integreted with nagios xi and nagios core
please i have installed nagios network analyzer and nagios core.
now i want to integrate NNA with nagios core...but if put the NRDP server the server said url does not appear the NRDP server.
i ask help please!
now i want to integrate NNA with nagios core...but if put the NRDP server the server said url does not appear the NRDP server.
i ask help please!
-
- Posts: 7698
- Joined: Mon Apr 23, 2012 4:28 pm
- Location: Travelling through time and space...
Re: NNA integreted with nagios xi and nagios core
Your statement about NRDP is a little bit vague, you need to install it on the core server and set up your token following:
http://assets.nagios.com/downloads/nrdp ... erview.pdf
Then test that you can access the NRDP URL at the end, if you can, from your core server, you should then configure it through network analyzer following the document I provided.
http://assets.nagios.com/downloads/nrdp ... erview.pdf
Then test that you can access the NRDP URL at the end, if you can, from your core server, you should then configure it through network analyzer following the document I provided.
-
- Posts: 63
- Joined: Wed Aug 13, 2014 5:39 am
Re: NNA integreted with nagios xi and nagios core
i do these configuration...but i see nothing between core server and NNA server.
what happen when we integrated NNa with core???
what happen when we integrated NNa with core???
-
- -fno-stack-protector
- Posts: 4366
- Joined: Mon Nov 19, 2012 12:10 pm
Re: NNA integreted with nagios xi and nagios core
Are you able to browse to the core system with nrdp via a web browser with a url like:
Are you seeing any access attempts from the NNA server in the core systems apache logs?
Code: Select all
http://[hostname\IP]/nrdp
Code: Select all
grep -i 'NNA hostname\IP' /var/log/httpd/access_log
grep -i 'NNA hostname\IP' /var/log/httpd/error_log
Nagios-Plugins maintainer exclusively, unless you have other C language bugs with open-source nagios projects, then I am happy to help! Please pm or use other communication to alert me to issues as I no longer track the forum.
-
- Posts: 63
- Joined: Wed Aug 13, 2014 5:39 am
Re: NNA integreted with nagios xi and nagios core
Yes i am seeing some access attempts from the NNA server the core server system apache log...thanks!
that is the result of grep -i /var/log/apache2/access.log:
/var/log/apache2/access.log:192.168.0.222 - - [18/Sep/2014:02:05:24 -0700] "POST /nrdp/ HTTP/1.1" 200 383 "-" "Python-urllib/2.6"
please what does it mean really???
but i don't see nothing in core server.
that is the result of grep -i /var/log/apache2/access.log:
/var/log/apache2/access.log:192.168.0.222 - - [18/Sep/2014:02:05:24 -0700] "POST /nrdp/ HTTP/1.1" 200 383 "-" "Python-urllib/2.6"
please what does it mean really???
but i don't see nothing in core server.
-
- -fno-stack-protector
- Posts: 4366
- Joined: Mon Nov 19, 2012 12:10 pm
Re: NNA integreted with nagios xi and nagios core
That means that the NNA server or at least something with the IP of 192.168.0.222 was attempting to access /nrdp/, which should be a good thing! NRDP is going to be run via the apache user and should be submitting to the nagios command pipe, so let's check some stuff there.
Code: Select all
grep 'nag' /etc/group
grep 'command_file' /etc/nagios3/nagios.cfg (presuming this is where your nagios.cfg is on ubuntu\debian)
ls -lart [nagios command file found in last command]
Nagios-Plugins maintainer exclusively, unless you have other C language bugs with open-source nagios projects, then I am happy to help! Please pm or use other communication to alert me to issues as I no longer track the forum.