Mmm, that's actually a pretty good video. There is some total garbage out there!
Importantly they restrict what can open port forwards. I would still check the upnp status for anything opening port 3000 though.
Steve
@Gertjan said in My traffic network like crazy:
What network device / brand ?
also :
any messages in the system log ?
The output of the (console option 8) 'dmesg' command ?
I'd log a bug in Redmine (https://redmine.pfsense.org) under pfSense Packages for this. Make sure to choose Status Traffic Totals as the category. There are a number of other bugs for this package also logged there. The package was created by a Netgate employee a few years ago when RRD was dropped as the graphing tool, but I don't think it's being actively maintained anymore.
Good to hear - I found this out also because I fiddled with my interfaces long ago and had the same issues, not a very intuitive fix but at least it works.
There is one way you can do it. Do this:
vnstat --exportdb
edit the output to correct the month values from the dailies (you will have to do this manually)
reimport with:
vnstat --importdb
Did not try it but could work...
I don't believe it runs as a service. Instead, I think it's called via CRON every 5 minutes to update. If you install the CRON package, it should be listed among the various other things set to run on a schedule.
i have the same problem with pfsense 2.5.x and ntopng 0.8.13_3
it's still trying to download geoip from the wrong url
$fetchcmd = "/usr/bin/fetch";
$geolite_city = "https://geolite.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz";
$geolite_city_v6 = "https://geolite.maxmind.com/download/geoip/database/GeoLiteCityv6-beta/GeoLiteCityv6.dat.gz";
$geoip_asnum = "https://download.maxmind.com/download/geoip/database/asnum/GeoIPASNum.dat.gz";
$geoip_asnum_v6 = "https://download.maxmind.com/download/geoip/database/asnum/GeoIPASNumv6.dat.gz";
i have changed it inside /usr/local/pkg/ntopng.inc as suggested here -> https://redmine.pfsense.org/issues/9211 by Mark Vejvoda to
$geolite_city = "https://centminmod.com/centminmodparts/geoip-legacy/GeoLiteCity.dat.gz";
$geolite_city_v6 = "https://centminmod.com/centminmodparts/geoip-legacy/GeoLiteCityv6.dat.gz";
$geoip_asnum = "https://centminmod.com/centminmodparts/geoip-legacy/GeoIPASNum.dat.gz";
$geoip_asnum_v6 = "https://centminmod.com/centminmodparts/geoip-legacy/GeoIPASNumv6.dat.gz";