DEV Community

Büşra
Büşra

Posted on

Ubuntu 22.04 NTOPNG Kurulumu

NTOPNG, bir ağdaki trafiği analiz etmeye yardımcı olan açık kaynaklı bir ağ trafiği izleme aracıdır. Ağ kullanımını gerçek zamanlı olarak gösteren grafiksel bir ağ analyzer.

sudo apt update

sudo apt install ntopng

  • İndirdikten sonra "ip a " komutuyla ethernet ağ arayüzünü öğreniyoruz.

Image description

  • " sudo nano /etc/ntopng.conf " içine giriyoruz. Kendi arayüzümüzü yazıyoruz.
# This configuration file is similar to the command line, with the exception
# that an equal sign '=' must be used between key and value. Example: -i=p1p2
# or --interface=p1p2 For options with no value (e.g. -v) the equal is also
# necessary. Example: "-v=" must be used.
#
# DO NOT REMOVE the following option, required for daemonization.
-e=

# * Interfaces to sniff on: one interface per line, prefix with -i=
# E.g.
-i=ens3
#-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

Enter fullscreen mode Exit fullscreen mode

Image description

sudo systemctl start ntopng

sudo systemctl stop ufw

http://10.10.2.10:3000

  • kullanıcı adı ve şifreye admin girip şifre değişikliği yapıyoruz.

Top comments (0)