网络检测工具smokeping安装配置

本文涉及的产品
对象存储 OSS,20GB 3个月
对象存储 OSS,恶意文件检测 1000次 1年
对象存储 OSS,内容安全 1000次 1年
简介:

smokeping是MRTG和RRDtool作者Tobi Oetiker的作品,主要用于对IDC网络质量,稳定性等做检测,主要功能包括常规的ping,dig,echoping,curl等,依赖rrdtool来画图。选择smokeping我觉得有以下原因:

1,最佳的画图功能,延迟和丢包用颜色和阴影表示很直观。

2,免费和开源。

3,支持主从的分布式模式。

4,可以自定义报警功能。

smokeping官方网站:http://oss.oetiker.ch/smokeping/

如下安装配置的系统为:redhat 5.8 + Perl 5.8.8

smokeping官方对perl版本要求:Perl 5.8.8 or later

一,安装

官方下载地址:http://oss.oetiker.ch/smokeping/pub/

1,安装yum源,这个rpmforge源中有smokeping所需的依赖包:

# rpm -Uhv http://apt.sw.be/redhat/el5/en/i386/rpmforge/RPMS/rpmforge-release-0.3.6-1.el5.rf.i386.rpm

安装成功之后会在yum仓库配置中多一个repo文件:

[root@yd_82_215 soft]# ls /etc/yum.repos.d/
5AS.repo  5ASU5.repo  mirrors-rpmforge  redhat.repo  rhel-debuginfo.repo  rpmforge.repo


2,安装依赖包:

# yum install httpd

# yum install rrdtool

# yum install fping

# yum install echoping

# yum install curl

# yum install perl perl-Net-Telnet perl-Net-DNS perl-LDAP perl-libwww-perl perl-RadiusPerl perl-IO-Socket-SSL perl-Socket6 perl-CGI-SpeedyCGI

3,安装最新版smokeping:

# wget http://oss.oetiker.ch/smokeping/pub/smokeping-2.6.9.tar.gz

# tar xf smokeping-2.6.9.tar.gz 

# cd smokeping-2.6.9/

# ./configure --prefix=/opt/smokeping

注意:

1,configure之后,如果依赖的perl module没有安装好,会提示用脚本进行安装。根据提示,直接运行脚本即可。如果脚本运行之后,仍然有问题,参考第2条

2,如果configure时候,出现如下报错,则是FCGI模块没有安装:

checking checking for perl module 'FCGI'... Failed
checking checking for perl module 'CGI'... Ok
checking checking for perl module 'CGI::Fast'... Failed

安装FCGI模块:

# perl -MCPAN -e 'install FCGI'

如果提示未安装cpan,则用yum进行安装

# yum install cpan

然后在安装:

# ./configure --prefix=/opt/smokeping

# make install

查看安装目录:

[root@yd_82_215 smokeping]# ls
bin  etc  htdocs  lib  share  thirdparty

4,在smokeping目录中有很多以dist结尾的配置文件,需要把dist结尾的文件重命名,配置才能生效:

# cd htdocs

# cp smokeping.fcgi.dist smokeping.fcgi

# cp tr.cgi.dist tr.cgi

# cd ../etc/

# cp config.dist config

# cp basepage.html.dist basepage.html

# cp smokemail.dist smokemail

# cp tmail.dist tmail

# cp smokeping_secrets.dist smokeping_secrets

# chmod 600 /opt/smokeping/etc/smokeping_secrets

二,修改smokeping和apache配置文件

1,修改二进制命令权限:

# chmod 4775 /bin/traceroute

2,建立下面三个目录用于保存smokeping的数据等

# mkdir /opt/smokeping/data

# mkdir /opt/smokeping/var

# mkdir /opt/smokeping/htdocs/cache

# mkdir -p /opt/smokeping/htdocs/img

# chown -R apache:apache /opt/smokeping

3,指定rrdtool的perl模块库文件路径

先找到系统上库文件位置:(不同系统或者不同的perl-rrdtool的安装方法,位置会不同)

[root@yd_82_215 ~]# rpm -qa|grep rrdtool
perl-rrdtool-1.4.7-1.el5.rf
rrdtool-1.2.27-4.el5
rrdtool-1.4.7-1.el5.rf

[root@yd_82_215 ~]# rpm -ql perl-rrdtool-1.4.7-1.el5.rf
/usr/lib/perl5/vendor_perl/5.8.8/RRDp.pm
/usr/lib64/perl5/vendor_perl/5.8.8/x86_64-linux-thread-multi/RRDs.pm
/usr/lib64/perl5/vendor_perl/5.8.8/x86_64-linux-thread-multi/auto/RRDs/RRDs.bs
/usr/lib64/perl5/vendor_perl/5.8.8/x86_64-linux-thread-multi/auto/RRDs/RRDs.so
/usr/share/doc/perl-rrdtool-1.4.7
/usr/share/doc/perl-rrdtool-1.4.7/MANIFEST
/usr/share/doc/perl-rrdtool-1.4.7/README
/usr/share/man/man3/RRDp.3pm.gz
/usr/share/man/man3/RRDs.3pm.gz

# vim /opt/smokeping/bin/smokeping_cgi

把如下行:

#use lib qw(); # PERL5LIB

修改为:
use lib qw(/usr/lib64/perl5/vendor_perl/5.8.8/x86_64-linux-thread-multi/auto/RRDs); # PERL5LIB

4,修改apache配置文件

# vim /etc/httpd/conf/httpd.conf 

添加下面虚拟主机: 

<VirtualHost *:80>
    ServerAdmin root@localhost
    ServerName 10.13.82.215
    DocumentRoot /opt/smokeping/htdocs
    ErrorLog logs/174-error_log
    CustomLog logs/174-access_log common
    <Directory "/opt/smokeping/htdocs">
      Options FollowSymLinks ExecCGI
      AllowOverride None
      DirectoryIndex index.html smokeping.fcgi
      AddHandler cgi-script fcgi .cgi
      Order allow,deny
      Allow from all
      </Directory>
</VirtualHost>

重启apache:

# /etc/init.d/httpd restart

5,修改smokeping配置文件

# vim config
*** General ***

owner    = shengjiali
contact  = shengjiali@com
mailhost = mail.com
sendmail = /usr/lib/sendmail

# NOTE: do not put the Image Cache below cgi-bin
# since all files under cgi-bin will be executed ... this is not
# good for images.
imgcache = /opt/smokeping/htdocs/img
imgurl   = http://10.13.82.215/img
datadir  = /opt/smokeping/data
piddir  = /opt/smokeping/var
cgiurl   = http://10.13.82.215/smokeping.cgi
smokemail = /opt/smokeping/etc/smokemail
tmail = /opt/smokeping/etc/tmail
# specify this to get syslog logging
syslogfacility = local0
# each probe is now run in its own process
# disable this to revert to the old behaviour
# concurrentprobes = no

*** Alerts ***
to = shengjiali@com 
from = shengjiali@com

+someloss
type = loss
# in percent
#pattern = >0%,*12*,>0%,*12*,>0%
pattern = >0%,*10*,>0%,*10*,>0%

comment = loss 3 times  in a row

+manyloss

type = loss

pattern = >15%,*30*,>15%,*30*,>15%

comment = loss 5 packages in 30 continuous 3 times.

+rttbad
type = rtt
pattern = ==S,>50,>50 # in milliseconds
comment = For more than two consecutive 50-millisecond delay

*** Database ***

step     = 60
pings    = 20

# consfn mrhb steps total

AVERAGE  0.5   1  1008
AVERAGE  0.5  12  4320
    MIN  0.5  12  4320
    MAX  0.5  12  4320
AVERAGE  0.5 144   720
    MAX  0.5 144   720
    MIN  0.5 144   720

*** Presentation ***

template = /opt/smokeping/etc/basepage.html
charset=UTF-8

+ charts

menu = Charts
title = The most interesting destinations

++ stddev
sorter = StdDev(entries=>4)
title = Top Standard Deviation
menu = Std Deviation
format = Standard Deviation %f

++ max
sorter = Max(entries=>5)
title = Top Max Roundtrip Time
menu = by Max
format = Max Roundtrip Time %f seconds

++ loss
sorter = Loss(entries=>5)
title = Top Packet Loss
menu = Loss
format = Packets Lost %f

++ median
sorter = Median(entries=>5)
title = Top Median Roundtrip Time
menu = by Median
format = Median RTT %f seconds

+ overview 

width = 600
height = 50
range = 10h

+ detail

width = 600
height = 200
unison_tolerance = 2

"Last 3 Hours"    3h
"Last 30 Hours"   30h
"Last 10 Days"    10d
"Last 400 Days"   400d


#+ hierarchies
#++ owner
#title = Host Owner
#++ location
#title = Location

#如下所示,定义多个FPing,然后在最下面node定义的时候(如下配置中的红色字体),使用不同的probe,就实现了探测的多进程,多与机器多的检测,提升了效率。
*** Probes ***

+ FPing

binary = /usr/sbin/fping
blazemode = true

++ FPing

++ FPing1
pings = 20
step = 60

++ FPing2
pings = 20
step = 60

++ FPing3
pings = 20
step = 60

++ FPing4
pings = 20
step = 60

++ FPing5
pings = 20
step = 60

++ FPing6
pings = 20
step = 60

++ FPing7
pings = 20
step = 60

++ FPing8
pings = 20
step = 60

++ FPing9
pings = 20
step = 60

++ FPing10
pings = 20
step = 60

*** Slaves ***
secrets=/opt/smokeping/etc/smokeping_secrets
+boomer
display_name=boomer
color=0000ff

+slave2
display_name=another
color=00ff00

*** Targets ***

probe = FPing

menu = Top
title = Network Latency Grapher
remark = Welcome to the SmokePing website of SoHu Company. \
         Here you will learn all about the latency of our network.

+ net_yd_eth1
menu = 移动机房外网
title = yd-->外网

++ baidu_node
probe = FPing1
menu = 百度_node
#alerts = someloss
title = yd--->61.135.169.125(百度)
host = 61.135.169.125

++ sohu_node
probe = FPing2
menu = 搜狐_node
#alerts = someloss
title = yd--->123.125.116.12(搜狐)
host = 123.125.116.12

++ zong_yd_eth1
menu = 移动机房外网_汇总 
title = yd--->移动机房外网_汇总
host = /net_yd_eth1/baidu_node /net_yd_eth1/sohu_node

注意:

1),配置文件如果有中文的话,不仅如上配置文件中要设置charset=UTF-8,系统也要设置中文字符集在/etc/profile中加入export LANG=zh_CN.UTF-8,并且所有的xshell或者crt中断也要设置成utf-8格式,这样就不会影响中文在配置文件中的编辑和中文在访问页面的展示。

2),配置的详细信息可以参考官方网站:http://oss.oetiker.ch/smokeping/doc/smokeping_config.en.html

6,重启脚本定制

# vim /etc/init.d/smokeping

添加如下内容:

#!/bin/bash
#
# chkconfig: 2345 80 05
# Description: Smokeping init.d script
# Hacked by : How2CentOS - http://www.how2centos.com
# Get function from functions library
. /etc/init.d/functions
# Start the service Smokeping
start() {
        echo -n "Starting Smokeping: "
        /opt/smokeping/bin/smokeping >/dev/null 2>&1
        ### Create the lock file ###
        touch /var/lock/subsys/smokeping
        success $"Smokeping startup"
        echo
}
# Restart the service Smokeping
stop() {
        echo -n "Stopping Smokeping: "
        kill -9 `ps ax | grep "/opt/smokeping/bin/smokeping" | grep -v grep | awk '{ print $1 }'` >/dev/null 2>&1
        ### Now, delete the lock file ###
        rm -f /var/lock/subsys/smokeping
        success $"Smokeping shutdown"
        echo
}
### main logic ###
case "$1" in
  start)
        start
        ;;
  stop)
        stop
        ;;
  status)
        status smokeping
        ;;
  restart|reload|condrestart)
        stop
        start
        ;;
  *)
        echo $"Usage: $0 {start|stop|restart|reload|status}"
        exit 1
esac
exit 0

增加执行权限

# chmod +x /etc/init.d/smokeping

7,smokeping服务启动

正常启动:

# /etc/init.d/smokeping start

# /opt/smokeping/bin/smokeping

调试故障时,使用debug模式启动:

/opt/smokeping/bin/smokeping --config=/opt/smokeping/etc/config --debug

三,访问页面

http://10.13.82.215/

页面效果如下:


wKioL1PXTnvDSYwlAASQtC1x9z4924.jpg

wKiom1PXTXTzZCcmAATc7gtUiLw231.jpg










本文转自 leejia1989 51CTO博客,原文链接:http://blog.51cto.com/leejia/1532245,如需转载请自行联系原作者
目录
相关文章
|
13天前
|
数据采集 人工智能 自然语言处理
FireCrawl:开源 AI 网络爬虫工具,自动爬取网站及子页面内容,预处理为结构化数据
FireCrawl 是一款开源的 AI 网络爬虫工具,专为处理动态网页内容、自动爬取网站及子页面而设计,支持多种数据提取和输出格式。
73 18
FireCrawl:开源 AI 网络爬虫工具,自动爬取网站及子页面内容,预处理为结构化数据
|
21天前
|
存储 安全 物联网
浅析Kismet:无线网络监测与分析工具
Kismet是一款开源的无线网络监测和入侵检测系统(IDS),支持Wi-Fi、Bluetooth、ZigBee等协议,具备被动监听、实时数据分析、地理定位等功能。广泛应用于安全审计、网络优化和频谱管理。本文介绍其安装配置、基本操作及高级应用技巧,帮助用户掌握这一强大的无线网络安全工具。
55 9
浅析Kismet:无线网络监测与分析工具
|
8天前
|
网络协议 安全 测试技术
Nping工具详解:网络工程师的瑞士军刀
### Nping工具详解:网络工程师的瑞士军刀 Nping是Nmap项目的一部分,支持TCP、UDP、ICMP和ARP等多种协议,用于生成和分析网络数据包。它提供灵活的命令行界面,适用于网络探测、安全测试和故障排除。本文介绍Nping的基础与高级用法,包括发送不同类型的网络请求、自定义TCP标志位、路由跟踪等,并通过实战案例展示其应用。掌握Nping有助于更好地理解和管理网络环境。 (239字符)
37 8
|
19天前
|
Ubuntu Unix Linux
Linux网络文件系统NFS:配置与管理指南
NFS 是 Linux 系统中常用的网络文件系统协议,通过配置和管理 NFS,可以实现跨网络的文件共享。本文详细介绍了 NFS 的安装、配置、管理和常见问题的解决方法,希望对您的工作有所帮助。通过正确配置和优化 NFS,可以显著提高文件共享的效率和安全性。
137 7
|
2月前
|
安全 Windows
【Azure Cloud Service】在Windows系统中抓取网络包 ( 不需要另外安全抓包工具)
通常,在生产环境中,为了保证系统环境的安全和纯粹,是不建议安装其它软件或排查工具(如果可以安装,也是需要走审批流程)。 本文将介绍一种,不用安装Wireshark / tcpdump 等工具,使用Windows系统自带的 netsh trace 命令来获取网络包的步骤
85 32
|
2月前
|
网络协议 网络架构
网络工程师必知:什么是OSPF多区域?如何配置?
网络工程师必知:什么是OSPF多区域?如何配置?
108 2
网络工程师必知:什么是OSPF多区域?如何配置?
|
2月前
|
网络协议 Linux
图形界面配置网络
本文介绍了在Linux上配置网络服务的步骤。首先打开RHEL-01服务器,找到桌面网络配置选项,进入网络配置面板。点击面板右下角的小齿轮,进入有线配置面板,选择IPv4选项,将地址设置为手动。接下来配置IP地址、子网掩码、网关和DNS服务器。配置完成后,使用新的IP地址进行访问。
50 4
图形界面配置网络
|
2月前
|
安全 网络安全 数据安全/隐私保护
访问控制列表(ACL)是网络安全管理的重要工具,用于定义和管理网络资源的访问权限。
访问控制列表(ACL)是网络安全管理的重要工具,用于定义和管理网络资源的访问权限。ACL 可应用于路由器、防火墙等设备,通过设定规则控制访问。其类型包括标准、扩展、基于时间和基于用户的ACL,广泛用于企业网络和互联网安全中,以增强安全性、实现精细管理和灵活调整。然而,ACL 也存在管理复杂和可能影响性能的局限性。未来,ACL 将趋向智能化和自动化,与其他安全技术结合,提供更全面的安全保障。
148 4
|
2月前
|
监控 负载均衡 网络协议
OSPF在小型网络中的应用:简化配置与高效管理
OSPF在小型网络中的应用:简化配置与高效管理
146 1
|
2月前
|
存储 网络协议 定位技术
OSPF路由汇总:优化网络的强大工具
OSPF路由汇总:优化网络的强大工具
81 1