五、ntopng 配置详解
1.查看默认配置文件
[root@ntopng src]# cd /etc/ntopng/
[root@ntopng ntopng]# ls
ntopng.conf.sample ntopng.start
注,ntopng.conf.sample 文件是配置文件样例,ntopng.start是ntopng启动时需要的配置文件。下面我们来查看一下具体文件,
12 [root@ntopng ntopng]# vim ntopng.conf.sample
-G=/var/tmp/ntopng.gid
注,-G指定运行所用进程号文件。
[root@ntopng ntopng]# vim ntopng.start
--local-networks “192.168.1.0”
--interface 0
注,--local-network指定本地子网段,--interface 0 指定监听eth0网卡上的流量。我们来可以配置ntopng运行甩使用的账户、指定web服务端口,如果不指定默认为3000。
2.配置ntopng
注,我们可以将所以的配置文件都放存ntopng.conf的配置文件中。
[root@ntopng ntopng]# cp ntopng.conf.sample ntopng.conf
[root@ntopng ntopng]# vim ntopng.conf
-G=/var/tmp/ntopng.gid
--local-networks "192.168.18.0/24"
--interface eth0
--user nobody
--http-port 8888
注,配置文件说明 。
-G指定运行所用进程号文件
--local-network指定本地子网段
--interface eth1指定监听eth0网卡上的流量
--user nobody指定运行服务所使用账户
--http-port 8888 指定web服务端口,如果不指定默认为3000。
3.启动ntopng服务
注,在运行ntopng之前,要确认先启动redis服务,redis为ntopng提供键值存储。我们这边重新启动一下redis服务。
[root@ntopng ntopng]# service redis restart
Stopping redis-server: [确定]
Starting redis-server: [确定]
[root@ntopng ntopng]# service ntopng start
Starting ntopng
[root@ntopng ntopng]# netstat -ntulp
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
tcp 0 0 127.0.0.1:6379 0.0.0.0:* LISTEN 28069/redis-server
tcp 0 0 0.0.0.0:779 0.0.0.0:* LISTEN 2717/rpc.statd
tcp 0 0 0.0.0.0:111 0.0.0.0:* LISTEN 2674/portmap
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 3013/sshd
tcp 0 0 127.0.0.1:631 0.0.0.0:* LISTEN 3026/cupsd
tcp 0 0 0.0.0.0:8888 0.0.0.0:* LISTEN 28084/ntopng
tcp 0 0 127.0.0.1:25 0.0.0.0:* LISTEN 3051/sendmail
tcp 0 0 127.0.0.1:6010 0.0.0.0:* LISTEN 3247/sshd
tcp 0 0 127.0.0.1:6011 0.0.0.0:* LISTEN 21756/sshd
tcp 0 0 :::22 :::* LISTEN 3013/sshd
tcp 0 0 ::1:6010 :::* LISTEN 3247/sshd
tcp 0 0 ::1:6011 :::* LISTEN 21756/sshd
udp 0 0 0.0.0.0:773 0.0.0.0:* 2717/rpc.statd
udp 0 0 0.0.0.0:776 0.0.0.0:* 2717/rpc.statd
udp 0 0 0.0.0.0:48354 0.0.0.0:* 3162/avahi-daemon
udp 0 0 0.0.0.0:5353 0.0.0.0:* 3162/avahi-daemon
udp 0 0 0.0.0.0:111 0.0.0.0:* 2674/portmap
udp 0 0 0.0.0.0:631 0.0.0.0:* 3026/cupsd
udp 0 0 :::59191 :::* 3162/avahi-daemon
udp 0 0 :::5353 :::* 3162/avahi-daemon
4.测试访问一下
(1).:8888,默认的用户名和密码是admin。
(2).默认的界面