No Talker data displayed

This support forum board is for support questions relating to Nagios Network Analyzer, our network traffic and bandwidth analysis solution.
Locked
ColinL
Posts: 7
Joined: Tue Sep 12, 2017 12:17 pm

No Talker data displayed

Post by ColinL »

We set up our SonicWall NSA 3500 as a source and initially it was displaying Top 5 Talker data but now the fields are blank. The bandwidth graph is still showing data. The NSA is configured to use NetFlow v9. I have done the nfdump install and reboot NNA but still no change.

Thanks
dwhitfield
Former Nagios Staff
Posts: 4583
Joined: Wed Sep 21, 2016 10:29 am
Location: NoLo, Minneapolis, MN
Contact:

Re: No Talker data displayed

Post by dwhitfield »

What version of NNA is this? It may be a bug that has been fixed. Also, are you using SSL?
ColinL
Posts: 7
Joined: Tue Sep 12, 2017 12:17 pm

Re: No Talker data displayed

Post by ColinL »

Using NNA 2.3.0. Could be an SSL issue actually. Thanks.
dwhitfield
Former Nagios Staff
Posts: 4583
Joined: Wed Sep 21, 2016 10:29 am
Location: NoLo, Minneapolis, MN
Contact:

Re: No Talker data displayed

Post by dwhitfield »

Please put the following code in /etc/httpd/conf.d/ssl.conf just above </VirtualHost>

Code: Select all

    RewriteEngine on
    RewriteCond $1 !^(index\.php|scripts|media|app|js|css|img|font|vendor|config.js)
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule nagiosna/(.*)$ /var/www/html/nagiosna/www/index.php/$1 [L,QSA]
The run service httpd restart

Please let us know if that resolves the issue.
Locked