smokeping对网络进行监控

smokeping可以用来很好的检测网络状态和稳定性

1、调整防火墙的设置
[root@C65-A1 ~]# /etc/init.d/iptables stop
iptables: Setting chains to policy ACCEPT: filter          [  OK  ]
iptables: Flushing firewall rules:                        [  OK  ]
iptables: Unloading modules:                              [  OK  ]
[root@C65-A1 ~]# chkconfig iptables off
[root@C65-A1 ~]# getenforce 
Enforcing
[root@C65-A1 ~]# setenforce 0
[root@C65-A1 ~]# vim /etc/sysconfig/selinux
将“SELINUX=enforcing”改为“SELINUX=disabled”

2、修改yum安装源

[root@C65-A1 ~]# vim /etc/sysconfig/selinux 
[root@C65-A1 ~]# rpm -Uvh RedHat/el6/en/x86_64/rpmforge/RPMS/rpmforge-release-0.5.3-1.el6.rf.x86_64.rpm
Retrieving
warning: /var/tmp/rpm-tmp.7A2TOZ: Header V3 DSA/SHA1 Signature, key ID 6b8d79e6: NOKEY
Preparing...                ########################################### [100%]
  1:rpmforge-release      ########################################### [100%]

3、安装rrdtool与依赖库

[root@C65-A1 ~]# 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

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

5、配置smokeping
[root@C65-A1 smokeping-2.6.9]# cd /usr/local/smokeping/
[root@C65-A1 smokeping]# mkdir -p var cache data
[root@C65-A1 smokeping]# touch /var/log/smokeping.log
[root@C65-A1 smokeping]# chown apache:apache var cache data
[root@C65-A1 smokeping]# chown apache:apache /var/log/smokeping.log 
[root@C65-A1 smokeping]# ls
bin  cache  data  etc  htdocs  lib  share  thirdparty  var
[root@C65-A1 smokeping]# cd /usr/local/smokeping/htdocs/
[root@C65-A1 htdocs]# ls
cropper  smokeping.fcgi.dist
[root@C65-A1 htdocs]# cp -p smokeping.fcgi.dist /tmp/
[root@C65-A1 htdocs]# mv smokeping.fcgi.dist smokeping.fcgi
[root@C65-A1 htdocs]# cd /usr/local/smokeping/etc/
[root@C65-A1 etc]# ls
basepage.html.dist  examples        smokeping_secrets.dist
config.dist        smokemail.dist  tmail.dist
[root@C65-A1 etc]# cp -p config.dist /tmp/
[root@C65-A1 etc]# mv config.dist config
[root@C65-A1 etc]# vim config

a. 将“cgiurl  = ”修改为“cgiurl  = ”
b. 将 *** Database *** 中的“step    = 300”修改为"step    = 60",每分钟取样一次
      step    = 300
      pings    = 20
[root@C65-A1 etc]# chmod 600 /usr/local/smokeping/etc/smokeping_secrets.dist
备注:修改密码文件权限


6、调整apache的配置
123456789101112131415161718192021222324 [root@C65-A1 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>
[root@C65-A1 etc]# cd /usr/local/smokeping/htdocs/
[root@C65-A1 htdocs]# htpasswd -c /usr/local/smokeping/htdocs/htpasswd admin
New password: 
Re-type new password: 
Adding password for user admin

7、设置smokeping开机启动
[root@C65-A1 etc]# echo "/usr/local/smokeping/bin/smokeping --logfile=/var/log/smokeping.log 2>&1 &" >> /etc/rc.local

8、添加smokeping开机脚本

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/b899d7b81fe46c13feb0de1ef5fe77da.html