Not able to access

This support forum board is for support questions relating to Nagios Network Analyzer, our network traffic and bandwidth analysis solution.
Locked
dhaval.khairnar
Posts: 1
Joined: Thu Oct 26, 2017 3:39 am

Not able to access

Post by dhaval.khairnar »

Hi Team,

I am not able to access the link given after completion of Nagios installation.
It is showing site can't be reached.
Can I access CISCO RV042 router's traffic through my Laptop? I have installed Nagios in my Laptop.
Kindly guide me.
npolovenko
Support Tech
Posts: 3457
Joined: Mon May 15, 2017 5:00 pm

Re: Not able to access

Post by npolovenko »

Hello, @dhaval.khairnar.

Was that a clean installation or did you recently upgrade Nagios Network Analyzer? Did you use precompiled OVA or a source installation? If you used your own Linux Installation then you might need to open port 80 in firewall:

Code: Select all

===== CentOS 5.x / 6.x | RHEL 5.x / 6.x | Oracle Linux 5.x / 6.x =====

iptables -I INPUT -p tcp --destination-port 80 -j ACCEPT
service iptables save
ip6tables -I INPUT -p tcp --destination-port 80 -j ACCEPT
service ip6tables save
 

===== CentOS 7.x | RHEL 7.x | Oracle Linux 7.x =====

firewall-cmd --zone=public --add-port=80/tcp
firewall-cmd --zone=public --add-port=80/tcp --permanent
 
Also, please run this command in your console:

Code: Select all

service httpd status
Can I access CISCO RV042 router's traffic through my Laptop? I have installed Nagios in my Laptop.
Yes. You will need to configure your router to send Netflow data to the Nagios NNA IP address. You can probably do it via your routers admin panel, in diagnostic section. Or you can do it manually. Please refer to your router's manufacturer documentation and here's the link from Nagios that might help with that as well:
https://assets.nagios.com/downloads/nag ... alyzer.pdf
As of May 25th, 2018, all communications with Nagios Enterprises and its employees are covered under our new Privacy Policy.
Locked