千家信息网

Centos6.5 或6.x 5.x搭建smokeping

发表于:2025-01-31 作者:千家信息网编辑
千家信息网最后更新 2025年01月31日,1.准备工作关掉防火墙和SELINUX2.安装rpmforge# yum install wget(****CentOS 6请使用这个库****)wget http://pkgs.repoforge.
千家信息网最后更新 2025年01月31日Centos6.5 或6.x 5.x搭建smokeping

1.准备工作

关掉防火墙和SELINUX

2.安装rpmforge

# yum install wget

(****CentOS 6请使用这个库****)

wget http://pkgs.repoforge.org/rpmforge-release/rpmforge-release-0.5.2-2.el6.rf.x86_64.rpm

rpm -Uvh rpmforge-release-0.5.2-2.el6.rf.x86_64.rpm

(****CentOS 5请使用这个库****)

wget http://pkgs.repoforge.org/rpmforge-release/rpmforge-release-0.5.2-2.el5.rf.x86_64.rpm

rpm -Uvh rpmforge-release-0.5.2-2.el5.rf.x86_64.rpm

3.安装需要的软件包

# yum install mod_fcgid httpd httpd-devel rrdtool fping wget curl bind-utils gcc make

# 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 perl-FCGI perl-RRD-Simple perl-CGI-SpeedCGI perl-ExtUtils-MakeMaker

4.安装smokeping

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

# tar -zxvf smokeping-2.6.8.tar.gz -C /opt/
# mkdir /opt/smokeping
# cd /opt/smokeping-2.6.8/setup
# ./build-perl-modules.sh
# cp -r ../thirdparty /opt/smokeping/
# cd ..
# ./configure -prefix=/opt/smokeping

# make install

5.创建丢失的文件夹

# cd /opt/smokeping
# mkdir data var cache

6.添加smokeping启动/停止脚本

# wget http://new.wedebugyou.com/static/smokeping_start_stop.txt
# mv smokeping_start_stop.txt /etc/init.d/smokeping
# chmod 755 /etc/init.d/smokeping

7.重命名配置文件和更改安全

# cd /opt/smokeping/etc/
# for foo in *.dist; do cp $foo `basename $foo .dist`; done
# chmod 600 /opt/smokeping/etc/smokeping_secrets.dist

8.更改默认配置文件

# vim config

("*"号范围离得为配置文件样例)

************************************************************************

*** General ***

owner = Nolan Guo

contact = guoyingce@originpoker.com

# mailhost = my.mail.host

# sendmail = /usr/sbin/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 p_w_picpaths.

imgcache = /opt/smokeping/cache

imgurl = cache

datadir = /opt/smokeping/data

piddir = /opt/smokeping/var

cgiurl = http://*****/smokeping.cgi

smokemail = /opt/smokeping/etc/smokemail.dist

tmail = /opt/smokeping/etc/tmail.dist

# 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 = alertee@address.somewhere

from = smokealert@company.xy

+someloss

type = loss

# in percent

pattern = >0%,*12*,>0%,*12*,>0%

comment = loss 3 times in a row

*** Database ***

step = 300

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.dist

+ 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

#++ owner

#title = Host Owner

#++ location

#title = Location

*** Probes ***

+ FPing

binary = /usr/sbin/fping

+ Curl

binary = /usr/bin/curl

urlformat = https://%host%/

pings = 3

*** Targets ***

probe = FPing

menu = Top

title = Network Latency Grapher

remark = Welcome to the SmokePing website of Originpoker Company. \

Here you will learn all about the latency of our network.



************************************************************************

9.smokeping到Web服务器的配置

# cd /opt/smokeping
# ln -s /opt/smokeping/cache /opt/smokeping/htdocs/cache
# chown -R apache cache
# chown -R apache data

(添加这些行为的文件/ etc /服务器/ conf.d/smokeping.conf)

ScriptAlias/smokeping/smokeping.cgi /opt/smokeping/htdocs/smokeping.fcgi.dist

Alias /smokeping /opt/smokeping/htdocs


Options FollowSymLinks

10.启动服务

# /etc/init.d/smokeping start
# /etc/init.d/httpd start


0