Monitoring network traffic by Ntopng in Ubuntu 22.04

The following tutorial describes how to install and configure Ntopng on our server so that we can monitor our network.

For starters We update the system and install the necessary packages:

sudo apt-get update -y
sudo apt-get install pfring-dkms nprobe ntopng n2disk cento -y

Then we grab a script and unpack it.

cd /tmp
wget https://packages.ntop.org/apt/22.04/all/apt-ntop.deb

sudo dpkg -i apt-ntop.deb

Installation:

sudo apt install ntopng

We make the configuration script.
edit file:

nano /etc/ntopng/ntopng.conf
G=/var/run/ntopng.pid

##Specifies  the  network  interface or collector endpoint to be used by ntopng for network monitoring.
-i=enp0s3

##Sets the HTTP port of the embedded web server.
-w=3000

-i=enp0s3 – zmieniamy na nazwę naszego interfejsu sieciowego
-w=3000 – Jest to port połączenia się przez przeglądarkę

Save the file and make editing of the second file.

nano /etc/ntopng/ntopng.start

And we make editing:

--local-networks "192.168.0.0/24"  ## give your local IP Ranges here.
--interface 1

–local-networks “192.168.0.0/24” podaj tutaj swoje lokalne zakresy adresów IP.

Add the service to startup and run:

sudo systemctl start ntopng
sudo systemctl enable ntopng

Now we go to your browser and run: http://our-IP_address:3000

I log in to the default data.

Login: admin
Password: admin

Linux

Udostępnij
Opublikowane przez
Linux

Recent posts

KeePass2 2.52 w Ubuntu 22.04

The guide below describes how to install KeePass on Ubuntu. Całość wykonamy za pomocą kilku poleceń

2 years temu

Installing Master PDF editor in Ubuntu 22.04

Master PDF Editor is a comprehensive PDF program, which includes many features. Oprócz tworzenia i edycji

2 years temu

iotop - memory monitoring

Iotop jest prostym narzędziem dla systemów Uniksowych umożliwiającym monitorowanie użycia dowolnego nośnika pamięci flash/hdd/ssd w

2 years temu

Run multiple commands in one cron job

You can separate two or more commands with semicolons (;), Semicolon (;): służy do oddzielania

2 years temu

Changing the exif data of a photo in the Linux terminal

Poniższy poradnik opisuje w jaki sposób za pomocą konsoli możemy dokonać edycji danych zdjęcia exif.

2 years temu

Installing Rocket.Chat Server on Rocky Linux 8

The following guide describes how to install Rocket.Chat on Rocky Linux 8 Całość bardzo prosto zainstalujemy

2 years temu