共计 1777 个字符,预计需要花费 5 分钟才能阅读完成。
Nagios 默认没有监控 Windows 网卡流量的插件,但是可以通过第三方的插件脚本实现。
1: 下载 check_traffic.sh 脚本,上传至 Nagios 监控服务器的 /usr/local/nagios/libexec 目录下。
官方下载地址:https://github.com/cloved/check_traffic
2: 为 check_traffic.sh 赋执行权限:
#chmod a+x /usr/local/nagios/libexec/check_traffic.sh
3: 修改 nagios 命令脚本,添加网卡监控命令。
# vi /usr/local/nagios/etc/objects/command.cfg
define command{
command_name check_Interface
command_line $USER1$/check_traffic.sh -V $ARG1$ -C $ARG2$ -H $ARG3$ -I $ARG4$ -w $ARG5$ -c $ARG6$ -K -B
}
注:- V 为 snmp 版本,- C 为 snmp 组名,- H 为主机,- I 为网卡编号。网卡编号可以用以下命令获取:
# /usr/local/nagios/libexec/check_traffic.sh -V 2c -C cmh -H 182.118.46.69 -L
4: 编辑监控服务文件,添加网卡监控服务:
# vi /usr/local/nagios/etc/objects/localhost.cfg
define service{
use linux-service ; Name of service template to use
host_name 116.255.220.76
service_description Interface_traffic_media_69
check_command check_Interface!2c!cmh!182.118.46.69!11!23000,23000!25000,25000
normal_check_interval 3
notifications_enabled 1
}
5: 查看监控页面,效果如下:
在 Ubuntu 下配置 Mrtg 监控 Nginx 和服务器系统资源 http://www.linuxidc.com/Linux/2013-08/88417.htm
使用 snmp+Mrtg 监控 Linux 系统 http://www.linuxidc.com/Linux/2012-11/73561.htm
Mrtg 服务器搭建(监控网络流量)http://www.linuxidc.com/Linux/2012-07/64315.htm
网络监控器 Nagios 全攻略 http://www.linuxidc.com/Linux/2013-07/87067.htm
Nagios 搭建与配置详解 http://www.linuxidc.com/Linux/2013-05/84848.htm
Nginx 环境下构建 Nagios 监控平台 http://www.linuxidc.com/Linux/2011-07/38112.htm
在 RHEL5.3 上配置基本的 Nagios 系统 (使用 Nagios-3.1.2) http://www.linuxidc.com/Linux/2011-07/38129.htm
CentOS 5.5+Nginx+Nagios 监控端和被控端安装配置指南 http://www.linuxidc.com/Linux/2011-09/44018.htm
Ubuntu 13.10 Server 安装 Nagios Core 网络监控运用 http://www.linuxidc.com/Linux/2013-11/93047.htm
Nagios 系统监控基本安装配置过程详解 http://www.linuxidc.com/Linux/2017-01/139758.htm
Nagios 的详细介绍 :请点这里
Nagios 的下载地址 :请点这里
本文永久更新链接地址 :http://www.linuxidc.com/Linux/2017-02/140483.htm