使用smokeping检查机房网络质量

smokeping服务端测试:

1、调整防火墙的设置

[[email protected] ~]# /etc/init.d/iptables stop
iptables: Setting chains to policy ACCEPT: filter          [  OK  ]
iptables: Flushing firewall rules:                         [  OK  ]
iptables: Unloading modules:                               [  OK  ]
[[email protected] ~]# chkconfig iptables off
[[email protected] ~]# getenforce 
Enforcing
[[email protected] ~]# setenforce 0
[[email protected] ~]# vim /etc/sysconfig/selinux
将“SELINUX=enforcing”改为“SELINUX=disabled”

2、修改yum安装源

[[email protected] ~]# vim /etc/sysconfig/selinux 
[[email protected] ~]# rpm -Uvh http://apt.sw.be/redhat/el6/en/x86_64/rpmforge/RPMS/rpmforge-release-0.5.3-1.el6.rf.x86_64.rpm
Retrieving http://apt.sw.be/redhat/el6/en/x86_64/rpmforge/RPMS/rpmforge-release-0.5.3-1.el6.rf.x86_64.rpm
warning: /var/tmp/rpm-tmp.7A2TOZ: Header V3 DSA/SHA1 Signature, key ID 6b8d79e6: NOKEY
Preparing...                ########################################### [100%]
   1:rpmforge-release       ########################################### [100%]

3、安装rrdtool与依赖库

[[email protected] ~]# yum -y install perl perl-Net-Telnet perl-Net-DNS perl-LDAP perl-libwww-perl perl-RadiusPerl perl-IO-Socket-SSL perl-Socket6 perl-CGI-SpeedyCGI perl-FCGI perl-CGI-SpeedCGI perl-Time-HiRes perl-ExtUtils-MakeMaker perl-RRD-Simple rrdtool rrdtool-perl curl fping echoping  httpd httpd-devel gcc make  wget libxml2-devel libpng-devel glib pango pango-devel freetype freetype-devel fontconfig cairo cairo-devel libart_lgpl libart_lgpl-devel mod_fastcgi

4、安装smokeping

[[email protected] ~]# tar zxvf smokeping-2.6.9.tar.gz
[[email protected] ~]# cd smokeping-2.6.9
出现问题是因为需要安装perl的模块,所以运行下面内容即可
[[email protected] ~]# ./setup/build-perl-modules.sh /usr/local/smokeping/thirdparty
[[email protected] ~]# ./configure --prefix=/usr/local/smokeping
[[email protected] ~]# /usr/bin/gmake install

5、配置smokeping

[[email protected] smokeping-2.6.9]# cd /usr/local/smokeping/
[[email protected] smokeping]# mkdir -p var cache data
[[email protected] smokeping]# touch /var/log/smokeping.log
[[email protected] smokeping]# chown apache:apache var cache data
[[email protected] smokeping]# chown apache:apache /var/log/smokeping.log 
[[email protected] smokeping]# ls
bin  cache  data  etc  htdocs  lib  share  thirdparty  var
[[email protected] smokeping]# cd /usr/local/smokeping/htdocs/
[[email protected] htdocs]# ls
cropper  smokeping.fcgi.dist
[[email protected] htdocs]# cp -p smokeping.fcgi.dist /tmp/
[[email protected] htdocs]# mv smokeping.fcgi.dist smokeping.fcgi
[[email protected] htdocs]# cd /usr/local/smokeping/etc/
[[email protected] etc]# ls
basepage.html.dist  examples        smokeping_secrets.dist
config.dist         smokemail.dist  tmail.dist
[[email protected] etc]# cp -p config.dist /tmp/
[[email protected] etc]# mv config.dist config
[[email protected] etc]# vim config 
a. 将“cgiurl   = http://some.url/smokeping.cgi”修改为“cgiurl   = http://192.168.1.14/smokeping.cgi”
b. 将 *** Database *** 中的“step     = 300”修改为"step     = 60",每分钟取样一次
      step     = 300
      pings    = 20
[[email protected] etc]# chmod 600 /usr/local/smokeping/etc/smokeping_secrets.dist
备注:修改密码文件权限

6、调整apache的配置

[[email protected] etc]# vim /etc/httpd/conf/httpd.conf
添加如下信息:
###set for smokeping###
Alias /cache "/usr/local/smokeping/cache/"
Alias /cropper "/usr/local/smokeping/htdocs/cropper/"
Alias /smokeping "/usr/local/smokeping/htdocs/smokeping.fcgi"
<Directory "/usr/local/smokeping">
AllowOverride None
Options All
AddHandler cgi-script .fcgi .cgi
AllowOverride AuthConfig
Order allow,deny
Allow from all
AuthName "Smokeping"
AuthType Basic
AuthUserFile /usr/local/smokeping/htdocs/htpasswd
Require valid-user
DirectoryIndex smokeping.fcgi
</Directory>
[[email protected] etc]# cd /usr/local/smokeping/htdocs/
[[email protected] htdocs]# htpasswd -c /usr/local/smokeping/htdocs/htpasswd admin
New password: 
Re-type new password: 
Adding password for user admin

7、设置smokeping开机启动

[[email protected] etc]# echo "/usr/local/smokeping/bin/smokeping --logfile=/var/log/smokeping.log 2>&1 &" >> /etc/rc.local

8、添加smokeping开机脚本

在/etc/init.d目录下新建smokeping的文件,内容如下:

#!/bin/bash
#
# chkconfig: 2345 80 05
# Description: Smokeping init.d script
# Hacked by : jeff kang - http://www.jffnms.net
# Get function from functions library
. /etc/init.d/functions
# Start the service Smokeping
start() {
echo -n "Starting Smokeping: "
/usr/local/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 " /usr/local/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

9、开启smokeping服务

[[email protected] init.d]# chmod +x smokeping

[[email protected] init.d]# /etc/init.d/smokeping start

Starting Smokeping:                                        [  OK  ]

[[email protected] init.d]# ps -ef | grep smokeping

root       9670      1  0 17:42 ?        00:00:00 /usr/local/smokeping/bin/smokeping [FPing]

root       9673   1264  0 17:42 pts/0    00:00:00 grep smokeping

然后我们可以通过http://192.168.1.144/smokeping.cgi,输入用户名和密码进入smokeping了

10、smokeping里面开启中文支持并安装中文字体

[[email protected] htdocs]# vim /usr/local/smokeping/etc/config 
如果需要在网页里展示中文,修改/usr/local/smokeping/etc/config文件
*** Presentation ***
charset = utf-8 //注:在这里添加
[[email protected] htdocs]# yum -y install wqy*

11、添加监控信息,重启服务,使配置生效

[[email protected] htdocs]# vim /usr/local/smokeping/etc/config 
[[email protected] htdocs]# /etc/init.d/smokeping stop
Stopping Smokeping:                                        [  OK  ]
[[email protected] htdocs]# /etc/init.d/smokeping start
Starting Smokeping:                                        [  OK  ]
[[email protected] htdocs]# ps -ef | grep smokeping
root       9861      1  0 18:04 ?        00:00:00 /usr/local/smokeping/bin/smokeping [FPing]
root       9864   1442  0 18:04 pts/1    00:00:00 grep smokeping

12、其它资料

检查smokeping的配置文件

[[email protected] htdocs]# /usr/local/smokeping/bin/smokeping --check
Configuration file ‘/usr/local/smokeping/bin/../etc/config‘ syntax OK.
[[email protected] htdocs]# /usr/local/smokeping/bin/smokeping --help
说明:
+ Gansu //注意,这里加号后面的必须是英文,不能是中文
menu = 甘肃
title = 甘肃
++ Daliang //同样,这里‘++’后面的必须是英文,+和++后面的内容是不会被现实的,只是起一个命名的作用。
menu =大梁
title =大梁:10.138.1.11
host = 10.138.1.11
alerts = someloss
一级、二级、三级目录的结构:
+ yiji
menu = 一级
title = 一级
++ erji
menu = 二级
title = 二级
+++ sanji
menu = sanji
title =sanji:10.138.16.54
host = 10.138.16.54
alerts = someloss

说明:title代表的是右边图片显示的标题,memu代表的是左边的菜单

13、监控显示界面

时间: 2024-10-10 09:40:48

使用smokeping检查机房网络质量的相关文章

使用smokeping监测机房网络质量

smokeping服务端测试: 1.调整防火墙的设置 [[email protected] ~]# /etc/init.d/iptables stop iptables: Setting chains to policy ACCEPT: filter          [  OK  ] iptables: Flushing firewall rules:                         [  OK  ] iptables: Unloading modules:          

IDC机房服务器网络质量检测

一 应用场景描述 使用了多个IDC机房的服务器作为外层代理,但是经常有用户反映网站卡.当联系用户时,又不卡了.所以有必要对每台外网服务器到各个区域的网络质量进行监测以确保不是服务器的网络问题. 参考文档: http://blog.coocla.org/smokeping-slave.html http://blog.coocla.org/smokeping-with-nginx.html

联想机房网络同传7.6——联想教育应用使用说明

联想教育应用使用说明 目  录 第1章 联想教育应用方案功能简介 1 第2章 联想教育应用的首次部署 4 第3章 联想教育应用的日常维护与使用 43 第4章 网络控制工具的使用 64 第5章 常见的问题与解答 100 联想教育应用方案注意事项 1. 每个系统不能超过8个分区:在硬盘保护分区设置过程中,每个系统包含的分区数不能超过8个(包括系统分区,共享数据区和专属数据区),否则可能影响网络同传的使用. 2. 硬盘每个分区的划分,请将容量控制在500MB到200GB之间. 3. 请您安装完操作系统

Oracle EBS-SQL (OM-4):检查发运网络.sql

select          msn.FROM_ORGANIZATION_CODE 开始库存组织,         msn.FROM_ORGANIZATION_NAME 开始库存名称,         msn.TO_ORGANIZATION_CODE   结束库存组织,         msn.TO_ORGANIZATION_NAME   结束库存名称,         decode(msn.INTRANSIT_TYPE,1,'直接',2,'在途','未知') 转换类型,         k1

Python网络质量测试工具增加乱序统计

半月月前,我用Python写了一个工具,可以测试网络的纯丢包率以及探测网络路径中的队列情况,经过一些使用者的反馈,还算比较好用,关于这个工具,请参见<动手写一个探测网络质量(丢包率/RTT/队形等)的工具>.        但是我觉得这个少了关于乱序度的测试功能,于是补充之.其实,在Linux的TC工具上,除了队列,丢包率,延迟之外,乱序度也是一个非常重要的配置参数,不过请记住,Linux不是全部,对于程序员而言,除了抓包之外,了解一点Linux之外的东西,比如Cisco,运营商之类的,还是必

创业公司办公网络安全访问机房网络方案

[背景] 办公网络使用ADSL上网,无固定IP.IDC机房有固定的IP.为了安全,服务器的公网ip只开放了应用的端口,基于这种情况,要访问机房,使用VPN是一个较好方案. 但是给公司每个员工分一个IDC的vpn帐号是一个苦逼的活儿,因为每个客户机会遇到各种问题,vpn本来就不是一个非常稳定的东西. 那么就想到,只要哥哥使用一台linux服务器拨号,之后用这个机器做网关,做snat那么就能让办公网络访问线上服务器了^_^ 这个方案已经做出来,实际运行一段时间了,经历了检验,今天成文,和大家分享.

怎样检查Android网络连接状态

在发送任何HTTP请求前最好检查下网络连接状态,这样可以避免异常.这个教程将会介绍怎样在你的应用中检测网络连接状态. 创建新的项目 1.在Eclipse IDE中创建一个新的项目并把填入必须的信息.  File->New->Android Project 2.创建新项目后的第一步是要在AndroidManifest.xml文件中添加必要的权限. 为了访问网络我们需要 INTERNET 权限 为了检查网络状态我们需要 ACCESS_NETWORK_STATE 权限 AndroidManifest

通过持续ping来检测网络质量

通过在两个远程节点之间持续ping,可以来检测网络质量是否稳定. 下面的办法是每秒ping一次,每天一个日志. 一.ping脚本/opt/pinglog.sh,带日志记录 #!/usr/bin/env bash if [ ! -d /var/log/ping ];then     mkdir -p /var/log/ping fi pkill -f "/bin/ping -i 1 192.168.1.10" || sleep 1 /bin/ping -i 1 192.168.1.10 

zabbix使用fping监控任意两个节点之间的网络质量、丢包率和响应时间

zabbix使用fping监控任意两个节点之间的网络质量.丢包率和响应时间 之前的博文 使用zabbix3.0.4的ICMP Ping模版实现对客户端网络状态的监控 https://www.cnblogs.com/reblue520/p/6832059.html 只能监控zabbix server到zabbix_agent之间的网络情况,不能监控任意两点间的网络情况 此次的方法可以监控任意两点之间的网络情况 需求: mysql主从之间同步经常会延迟,为了查看是否网络问题,先添加两个节点之间的网络