扫一扫
关注微信公众号

详解-Linux配置ntop(网络流量监控)
2010-03-02   网络

Linux发展迅速,你了解Linux系统么?你是Linux系统的应用者么?今天有需求要配置ntop,本文为你详细介绍Linux配置 ntop,为你在学习Linux配置ntop时起一定的作用。用来监控网络情况。

装rpmforge:
#wget ftp.freshrpms.net/pub/freshrpms/pub/dag/redhat/el5/en/i386/RPMS.dag/rrdtool-1.2.30-1.el5.rf.i386.rpm

源码包折腾一上午也不行,rpmforge还是很有用的啊。

  1. 装graphviz:  
  2. #yum install graphviz  
  3. 装ntop:  
  4. #yum install ntop  
  5. 改ntop.conf:  
  6. --user ntop  
  7. --db-file-path /var/ntop  
  8. --use-syslog=local1    #让ntop会记录日志到local1。  
  9. 改/etc/syslog.conf:  
  10. local1.* /var/log/ntop.log    #和ntop.conf的里面对应,记得重启syslog服务。  
  11. 改/etc/init.d/ntop:  
  12. #!/bin/bash  
  13. #  
  14. # Init file for the NTOP network monitor  
  15. #  
  16. # chkconfig: 35 93 83    #这里加上35原来是-,让ntop在35级别自动启动。记得用#chkconfig ntop on  
  17. #  
  18. # description: NTOP Network Monitor  
  19. #  
  20. # processname: ntop  
  21. # config: /etc/ntop.conf  
  22. # pidfile: /var/run/ntop  
  23. # Source function library.  
  24. . /etc/rc.d/init.d/functions  
  25. # Source networking configuration.  
  26. . /etc/sysconfig/network  
  27. # Check that networking is up.  
  28. [ "${NETWORKING}" == "no" ] && exit 0  
  29. [ -x "/usr/bin/ntop" ] || exit 1  
  30. [ -r "/etc/ntop.conf" ] || exit 1  
  31. #[ -r "/var/ntop/ntop_pw.db" ] || exit 1  
  32. RETVAL=0 
  33. prog="ntop" 
  34. start () {  
  35. echo -n $"Starting $prog: "  
  36. daemon $prog @/etc/ntop.conf -d -L    #这里原来是-d -L @.....但是会报错,改成这样就不回了。  
  37. RETVAL=$?  
  38. echo  
  39. [ $RETVAL -eq 0 ] && touch /var/lock/subsys/\$prog  
  40. return $RETVAL  
  41. }  
  42. stop () {  
  43. echo -n $"Stopping $prog: "  
  44. killproc $prog  
  45. RETVAL=$?  
  46. echo  
  47. [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/$prog  
  48. return $RETVAL  
  49. }  
  50. restart () {  
  51. stop  
  52. start  
  53. }  
  54. case "$1" in  
  55. start)  
  56. start  
  57. ;;  
  58. stop)  
  59. stop  
  60. ;;  
  61. restart|reload)  
  62. restart  
  63. ;;  
  64. condrestart)  
  65. [ -e /var/lock/subsys/$prog ] && restart  
  66. RETVAL=$?  
  67. ;;  
  68. status)  
  69. status $prog  
  70. RETVAL=$?  
  71. ;;  
  72. *)  
  73. echo $"Usage: $0 {start|stop|restart|condrestart|status}"  
  74. RETVAL=1 
  75. esac  
  76. exit $RETVAL 

配置ntop:

在Admin-Preferences中添加dot.path /usr/bin/dot,实现绘图功能。

其他注意事项:

第一次启动前用下面的命令设置一个管理密码,以后web页面设置的时候用得到。用户名默认admin,密码就是下面的命令设置的。

#/usr/bin/ntop -P /var/ntop -u ntop -A

防火墙打开3000端口,或者配置文件修改成别的。这样就成功完成了Linux配置ntop。

热词搜索:

上一篇:黑客介绍网络入侵大型网站完整思路
下一篇:Windows 7系统开机启动项目知多少?

分享到: 收藏