Ntopng installation ubuntu: Unterschied zwischen den Versionen

Aus xinux.net
Zur Navigation springen Zur Suche springen
(Die Seite wurde neu angelegt: „=In order to use this repository do (as root)= 14.04 LTS *wget http://www.nmon.net/apt/14.04/all/apt-ntop.deb *sudo dpkg -i apt-ntop.deb Debian 7.6 (stable) *wg…“)
 
 
(16 dazwischenliegende Versionen von 3 Benutzern werden nicht angezeigt)
Zeile 1: Zeile 1:
 
=In order to use this repository do (as root)=  
 
=In order to use this repository do (as root)=  
 +
12.04 LTS
 +
*wget http://www.nmon.net/apt/12.04/all/apt-ntop.deb
 +
*sudo dpkg -i apt-ntop.deb
 
14.04 LTS
 
14.04 LTS
 
*wget http://www.nmon.net/apt/14.04/all/apt-ntop.deb
 
*wget http://www.nmon.net/apt/14.04/all/apt-ntop.deb
Zeile 5: Zeile 8:
 
Debian 7.6 (stable)
 
Debian 7.6 (stable)
 
*wget http://www.nmon.net/apt/7.6/all/apt-ntop.deb
 
*wget http://www.nmon.net/apt/7.6/all/apt-ntop.deb
*sudo dpkg -i apt-ntop.deb  
+
*sudo dpkg -i apt-ntop.deb
 +
 
 
=then run=
 
=then run=
 
*apt-get clean all
 
*apt-get clean all
Zeile 13: Zeile 17:
 
*apt-get install pfring-drivers-zc-dkms
 
*apt-get install pfring-drivers-zc-dkms
 
*apt-get install pfring-drivers-dna-dkms
 
*apt-get install pfring-drivers-dna-dkms
 +
=create the config files=
 +
*touch /etc/ntopng/ntopng.conf /etc/ntopng/ntopng.start
 +
==cat  ntopng.conf==
 +
<pre>
 +
-W=3001
 +
-G=/var/tmp/ntopng.pid
 +
-F=db
 +
-d=/var/tmp/ntopng
 +
-i=eth0
 +
-i=ppp0
 +
-m="192.168.240.0/21,172.20.20.0/24"
 +
-H
 +
</pre>
 +
 +
==Description==
 +
*-W=3001 -
 +
*-F=db - "store the historical data in sqlite format" 
 +
*-d=/var/tmp/ntopng - "location of sqlite data"
 +
*-i=eth0  - "listen on eth0"
 +
*-i=ppp0 - "listen on ppp0"
 +
*-m="192.168.240.0/21" - "definition of the local net"
 +
*-H - "Disable alerts generation"
 +
 +
=start stop restart=
 +
*service ntopng start
 +
*service ntopng stop
 +
*service ntopng restart
 +
 +
=SSL mit Certbot=
 +
Certbot installieren:
 +
*apt-get -y install software-properties-common
 +
*add-apt-repository -y ppa:certbot/certbot
 +
*apt-get update
 +
*apt-get install -y python-certbot-apache
 +
Certbot ausführen:
 +
*certbot certonly --standalone -d domain.de  #--standalone wird nur benötigt, wenn kein apache auf port 80 läuft.
 +
*cd /etc/letsencrypt/live/domain.de 
 +
*cat privkey*.pem cert*.pem > /usr/share/ntopng/httpdocs/ssl/ntopng-cert.pem
 +
*systemctl restart ntopng.service
  
From:
+
=From:=
 
*http://www.nmon.net/apt-stable/
 
*http://www.nmon.net/apt-stable/

Aktuelle Version vom 26. Oktober 2018, 18:36 Uhr

In order to use this repository do (as root)

12.04 LTS

14.04 LTS

Debian 7.6 (stable)

then run

  • apt-get clean all
  • apt-get update
  • apt-get install pfring nprobe ntopng ntopng-data n2disk nbox

You can (optionally) install the ZC and/or DNA drivers as follows

  • apt-get install pfring-drivers-zc-dkms
  • apt-get install pfring-drivers-dna-dkms

create the config files

  • touch /etc/ntopng/ntopng.conf /etc/ntopng/ntopng.start

cat ntopng.conf

-W=3001
-G=/var/tmp/ntopng.pid
-F=db
-d=/var/tmp/ntopng
-i=eth0
-i=ppp0
-m="192.168.240.0/21,172.20.20.0/24"
-H

Description

  • -W=3001 -
  • -F=db - "store the historical data in sqlite format"
  • -d=/var/tmp/ntopng - "location of sqlite data"
  • -i=eth0 - "listen on eth0"
  • -i=ppp0 - "listen on ppp0"
  • -m="192.168.240.0/21" - "definition of the local net"
  • -H - "Disable alerts generation"

start stop restart

  • service ntopng start
  • service ntopng stop
  • service ntopng restart

SSL mit Certbot

Certbot installieren:

  • apt-get -y install software-properties-common
  • add-apt-repository -y ppa:certbot/certbot
  • apt-get update
  • apt-get install -y python-certbot-apache

Certbot ausführen:

  • certbot certonly --standalone -d domain.de #--standalone wird nur benötigt, wenn kein apache auf port 80 läuft.
  • cd /etc/letsencrypt/live/domain.de
  • cat privkey*.pem cert*.pem > /usr/share/ntopng/httpdocs/ssl/ntopng-cert.pem
  • systemctl restart ntopng.service

From: