r3421555 发表于 2017-8-18 08:54:08

Nagios监控打印机

Nagios以为其良好的状态检测机制,使Nagios可以利用在不同平台上的不同插件实现监控,当然它也支持使用SNMP协议(简单网络管理协议)实现各个平台和设备的监控,所以Nagios也可以使用SNMP协议来监控局域网内的打印机,Nagios监控打印机是使用check_hpjd工具调用SNMP协议来监控打印机的,在安装好的Nagios中的libexec插件目录下可能没有,是因为服务器上没有安装SNMP协议相关的依赖包net-snmp和net-snmp-utils,所以可以直接用yum或者是apt安装下,再重新编译下nagios-plugins,有一点像Nagios没有安装MySQL时没有check_mysql一样,操作如下:

1
2
3
# yum -y install net-snmp net-snmp-utils
# ./configure --with-nagios-user=nagios --with-nagios-group=nagios
# make && make install




此时再看libexec插件目录下就有check_hpjd插件,打印机的监控方式有点类似于Nagios监控Windows上的NSClient++,可以参看http://jim123.blog.51cto.com/4763600/1956790,在Nagios配置好后就有打印的配置模板,同NSClient++中一样修改下模板:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/usr/local/nagios/etc/objects/printer.cfg

define hostgroup{
      hostgroup_namenetwork-printers
      alias         Network Printers
      }
########################################################################################      
/usr/local/nagios/etc/servers/192.168.1.254.cfg

define host{
      use             generic-printer         ; Inherit default values from a template
      host_name       hplj200               ; The name we're giving to this printer
      alias         HP LaserJet 200dn       ; A longer name associated with the printer
      address         192.168.1.254         ; IP address of the printer
      hostgroups      network-printers      ; Host groups this printer is associated with
      contact_groupsadmins
      }
define service{
      use                     generic-service         ; Inherit values from a template
      host_name               hplj200               ; The name of the host the service is associated with
      service_description   Printer Status          ; The service description
      check_command         check_hpjd!-C public    ; The command used to monitor the service
      check_interval10      ; Check the service every 10 minutes under normal conditions
      retry_interval1       ; Re-check the service every minute until its final/hard state is determined
      max_check_attempts      2
      notifications_enabled   1
      }
define service{
      use                     generic-service
      host_name               hplj200
      service_description   PING
      check_command         check_ping!3000.0,80%!5000.0,100%
      check_interval10
      retry_interval1
      max_check_attempts      2
      notifications_enabled   1
      }




配置好后重启Nagios后就可以实现打印机的监控

mayiwen123456 发表于 2017-8-18 09:20:56

说的不是很详细,看的云里雾里

elfen_lied 发表于 2017-8-18 10:34:12

学习了,感谢分享
页: [1]
查看完整版本: Nagios监控打印机