• Categories
    Category
  • Categories
    Category
  • News
  • Tutorials
  • Forums
  • Tags
  • Users
Tutorial Comments FAQ Related Articles

How to install Ntopng on Ubuntu 18.04

  • 0:51 apt-get update
  • 1:20 apt-get install ntopng
  • 1:57 vim /etc/ntopng.conf
  • 2:41 ufw allow 3000
4970

Ntopng Installation on Ubuntu 18.04

Ntopng is the next generation version of the original ntop, a network traffic probe that monitors network usage. ntopng is based on libpcap and it has been written in a portable way in order to virtually run on every Unix platform, MacOSX and on Windows as well. Ntopng used to High-Speed Web-based Traffic Analysis and Flow Collection.

Installation

Use this command to update the repository files.

root@linuxhelp:~# apt-get update
Hit:1 https://deb.nodesource.com/node_10.x bionic InRelease         
Hit:2 http://in.archive.ubuntu.com/ubuntu bionic InRelease               
Get:3 http://security.ubuntu.com/ubuntu bionic-security InRelease [83.2 kB]
Get:4 http://in.archive.ubuntu.com/ubuntu bionic-updates InRelease [88.7 kB]
Get:5 http://in.archive.ubuntu.com/ubuntu bionic-backports InRelease [74.6 kB]    

.
.
.
W: GPG error: https://cloud.r-project.org/bin/linux/ubuntu bionic-cran35/ InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 51716619E084DAB9
E: The repository 'https://cloud.r-project.org/bin/linux/ubuntu bionic-cran35/ InRelease' is not signed.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.

To install the ntopng use the following command.

root@linuxhelp:~# apt-get install ntopng
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following packages were automatically installed and are no longer required:
  libpython-stdlib python python-minimal python2.7 python2.7-minimal
Use 'sudo apt autoremove' to remove them.
.
.
.
Processing triggers for libc-bin (2.27-3ubuntu1) ...
Processing triggers for systemd (237-3ubuntu10.9) ...
Processing triggers for ureadahead (0.100.0-20) ...

Open the default configuration file and add a connection name.

root@linuxhelp:~# vim /etc/ntopng.conf
#DO NOT REMOVE the following option, required for daemonization.
-e=

#* Interfaces to sniff on: one interface per line, prefix with -i=
#E.g.
-i=ens33
#-i=wlan0
#If none is specified, ntopng will try to auto-detect the best interface.
#* Port on which ntopng will listen for the web-UI.
-w=3000

Restart the ntopng service.

root@linuxhelp:~#systemctl restart ntopng

allow the port on firewall.

root@linuxhelp:~# ufw allow 3000
Rules updated
Rules updated (v6)

Now you can proceed the further installation and configuration from the browser by navigating to the following URL: http://ip address (or) domain name:3000

Change the default admin password.

1

Here you can see the upload and download speed

2

Here you can see the upload and download size by hosts

3

Here you can see the upload and download size by ports 4

With this The method to install ntopng on ubuntu 18.04 comes to an end.

Tags:
jacob
Author: 

Comments ( 0 )

No comments available

Add a comment

Frequently asked questions ( 5 )

Q

What is the competitive advantages of ntop?

A

ntop is unique as the products are home-grown with no dependencies on third parties. This means fast application development/customization and support directly from the source.

Q

How will Ntopng data be indexed?

A

Ntopng will populate index and type fields based on its configuration:

Example:

es;Ntopng;Ntopng-%Y.%m.%d;http://localhost:9200/_bulk;

Q

How can I have Kibana recognize correct data types from Ntopng?

A

Ntopng automatically pushes a template to specify the proper data type for any field.

Q

What Ntopng can do ?

A

Ntopng can do the following:
1.Sort network traffic according to many criteria including IP address, port, L7 protocol, throughput, AS.
2.Show network traffic and IPv4/v6 active hosts.
3.Produce long-term reports about various network metrics such as throughput, application protocols, top X talkers/listeners, top ASs, top L7 applications.
4.For each communication flow report network/application latency/RTT, TCP stats (retransmissions, packets OOO, packet lost), and bytes/packets are stored on disk persistent traffic statistics in RRD format.

Q

What is Ntopng ?

A

ntopng is the next generation version of the original ntop, a network traffic probe that monitors network usage. ntopng is based on libpcap and it has been written in a portable way in order to virtually run on every Unix platform, MacOSX and on Windows as well.

Related Tutorials in How to install Ntopng on Ubuntu 18.04

Related Tutorials in How to install Ntopng on Ubuntu 18.04

How to install Meld tool in Ubuntu
How to install Meld tool in Ubuntu
Feb 25, 2017
How to install Dconf-Editor on Ubuntu 18.04
How to install Dconf-Editor on Ubuntu 18.04
Jul 14, 2018
How to install and update OpenSSL on Ubuntu 16.04
How to install and update OpenSSL on Ubuntu 16.04
Mar 9, 2017
How to install GLib 2.0 on Ubuntu 17.04
How to install GLib 2.0 on Ubuntu 17.04
May 22, 2017
How to Install Android Emulator on Ubuntu 20.4.1
How to Install Android Emulator on Ubuntu 20.4.1
Jul 13, 2021
How To Install AnyDesk on Ubuntu 16.04
How To Install AnyDesk on Ubuntu 16.04
Apr 4, 2018
How to install Genymotion 2.12.1 on Ubuntu 18.04
How to install Genymotion 2.12.1 on Ubuntu 18.04
Jul 9, 2018
How to install Timeshift 18.4 on Ubuntu 18.04
How to install Timeshift 18.4 on Ubuntu 18.04
Jul 6, 2018

Related Forums in How to install Ntopng on Ubuntu 18.04

Related Forums in How to install Ntopng on Ubuntu 18.04

Ubuntu
matthew class=
Failed to enable unit: Refusing to operate on linked unit file sshd.service
Apr 15, 2019
Ubuntu
mason class=
Passwd: You may not view or modify password information for root On Ubuntu 19.04
May 27, 2019
Ubuntu
isaac class=
/etc/apt/sources.list Permission denied
May 18, 2017
Ubuntu
yousuf class=
lsb_release command not working : Debian
Jan 18, 2018
ifconfig command
jackbrookes class=
what is the location of the ifconfig program on your machine?
Jan 4, 2018
Ubuntu
mason class=
"E: Package 'php-mcrypt' has no installation candidate" error on Ubuntu 20.4.1
Mar 15, 2021
NFS
luke class=
clnt_create: RPC: Program not registered
Apr 25, 2017
Apache
isaac class=
How to disable apache welcome page on Ubuntu
Dec 15, 2018

Related News in How to install Ntopng on Ubuntu 18.04

Related News in How to install Ntopng on Ubuntu 18.04

How To Install Mixxx on Ubuntu 16.04
How To Install Mixxx on Ubuntu 16.04
Oct 11, 2017
Ubuntu 17.04 released with greater expectations
Ubuntu 17.04 released with greater expectations
Apr 15, 2017
Ubuntu Core now available on i.MX6 based TS-4900 thanks to Technologic Systems Inc.
Ubuntu Core now available on i.MX6 based TS-4900 thanks to Technologic Systems Inc.
Mar 1, 2017
Ubuntu 17.10 Artful Aardvark Beta 1 is now here. Download Now
Ubuntu 17.10 Artful Aardvark Beta 1 is now here. Download Now
Sep 2, 2017
Ubuntu Unity is no more: One Linux dream has been axed
Ubuntu Unity is no more: One Linux dream has been axed
Apr 7, 2017
What’s next for Ubuntu Linux Desktop?
What’s next for Ubuntu Linux Desktop?
Apr 11, 2017
Say Hi to Ubuntu's new mascot
Say Hi to Ubuntu's new mascot
Mar 22, 2019
KDE Connect App was removed from Google Play Store and brought back in 24 hours
KDE Connect App was removed from Google Play Store and brought back in 24 hours
Mar 22, 2019
Back To Top!
Rank
User
Points

Top Contributers

userNamenaveelansari
135850

Top Contributers

userNameayanbhatti
92510

Top Contributers

userNamehamzaahmed
32150

Top Contributers

1
userNamelinuxhelp
31040

Top Contributers

userNamemuhammadali
24500
Can you help Ganesh Konka ?
Zentya 6.1 http proxy configuration

please send link for creating zentyal 6.1 for http proxy and firewall as gateway.

Networking
  • Routing
  • trunk
  • Netmask
  • Packet Capture
  • domain
  • HTTP Proxy
Server Setup
  • NFS
  • KVM
  • Memory
  • Sendmail
  • WebDAV
  • LXC
Shell Commands
  • Cloud commander
  • Command line archive tools
  • last command
  • Shell
  • terminal
  • Throttle
Desktop Application
  • Linux app
  • Pithos
  • Retrospect
  • Scribe
  • TortoiseHg
  • 4Images
Monitoring Tool
  • Monit
  • Apache Server Monitoring
  • EtherApe 
  • Arpwatch Tool
  • Auditd
  • Barman
Web Application
  • Nutch
  • Amazon VPC
  • FarmWarDeployer
  • Rukovoditel
  • Mirror site
  • Chef
Contact Us | Terms of Use| Privacy Policy| Disclaimer
© 2025 LinuxHelp.com All rights reserved. Linux™ is the registered trademark of Linus Torvalds. This site is not affiliated with linus torvalds in any way.