网创优客建站品牌官网
为成都网站建设公司企业提供高品质网站建设
热线:028-86922220
成都专业网站建设公司

定制建站费用3500元

符合中小企业对网站设计、功能常规化式的企业展示型网站建设

成都品牌网站建设

品牌网站建设费用6000元

本套餐主要针对企业品牌型网站、中高端设计、前端互动体验...

成都商城网站建设

商城网站建设费用8000元

商城网站建设因基本功能的需求不同费用上面也有很大的差别...

成都微信网站建设

手机微信网站建站3000元

手机微信网站开发、微信官网、微信商城网站...

建站知识

当前位置:首页 > 建站知识

nagios邮件报警脚本

一.python邮件发送脚本

创新互联公司基于成都重庆香港及美国等地区分布式IDC机房数据中心构建的电信大带宽,联通大带宽,移动大带宽,多线BGP大带宽租用,是为众多客户提供专业遂宁服务器托管报价,主机托管价格性价比高,为金融证券行业服务器托管,ai人工智能服务器托管提供bgp线路100M独享,G口带宽及机柜租用的专业成都idc公司。

1.linux服务器发送邮件,许多人会直接用mail命令发送,虽然可以发送成功,但是许多都会被互联网邮箱当初垃圾邮件处理

2.mutt和msmtp相关于linux下的邮件客户端,和windows上的outlook,foxmail之类有点类似

3.安装mutt和msmtp虽然可以,但是通过python脚本也可以代替,如下

ubuntu@ubuntu:/etc/nagios3/scripts$ cat sendmail

#!/usr/bin/python

import smtplib

import string

import sys

import getopt

def usage():

  print """sendmail is a send mail Plugins

  Usage:

  sendmail [-h|--help][-t|--to][-s|--subject][-m|--message]

  Options:

         --help|-h)

                print sendmail help.

         --to|-t)

                Sets sendmail to email.

         --subject|-s)

                 Sets the mail subject.

         --message|-m)

                 Sets the mail body

   Example:

          only one to email  user

         ./sendmail -t 'eric@nginxs.com' -s 'hello eric' -m 'hello eric,this is sendmail test!

          many to email  user

         ./sendmail -t 'eric@nginxs.com,yangzi@nginxs.com,zhangsan@nginxs.com' -s 'hello eric' -m 'hello eric,this is sendmail test!"""

  sys.exit(3)

try:

  options,args = getopt.getopt(sys.argv[1:],"ht:s:m:","--help --to= --subject= --message=")

except getopt.GetoptError:

  usage()

for name,value in options:

   if name in ("-h","--help"):

      usage()

   if name in ("-t","--to"):

# accept message user

      TO = value

      TO = TO.split(",")

   if name in ("-s","--title"):

      SUBJECT = value

   if name in ("-m","--message"):

      MESSAGE = value

      MESSAGE = MESSAGE.split('\\n')

      MESSAGE = '\n'.join(MESSAGE)

#smtp HOST

HOST = "smtp.126.com"      (这个是126的smtp服务域名)        

#smtp port

PORT = "25"                 (126邮箱smtp端口号)            

#FROM mail user

USER = 'Czar_test'      (你注册126邮箱的用户名)                  

#FROM mail password

PASSWD = 'test123'       (你注册126邮箱的密码)            

#FROM EMAIL

FROM = "Czar_test@126.com"   (你的126邮箱地址)

try:

  BODY = string.join((

     "From: %s" % FROM,

     "To: %s" % TO,

     "Subject: %s" % SUBJECT,

     "",

     MESSAGE),"\r\n")

  smtp = smtplib.SMTP()

  smtp.connect(HOST,PORT)

  smtp.login(USER,PASSWD)

  smtp.sendmail(FROM,TO,BODY)

  smtp.quit()

except:

  print "UNKNOWN ERROR"

  print "please look help"

  print "./sendmail -h"

然后测试发送邮件

ubuntu@ubuntu:/etc/nagios3/scripts$ /etc/nagios3/scripts/sendmail -t "yongkang_tian@126.com" -s "Nagios Test" -m "Hello Wrold"

nagios 邮件报警脚本

二.nagios命令文件里面添加代码

ubuntu@ubuntu:/etc/nagios3$ vim commands.cfg

define command{

       command_name    notify-host-by-email

       command_line    /etc/nagios3/scripts/sendmail  -t $CONTACTEMAIL$ -s "** $NOTIFICATIONTYPE$ Host Alert: $HOSTNAME$ is $HOSTSTATE$ **" -m "%b" -m "***** Nagios *****\n\nNotification Type: $NOTIFICATIONTYPE$\nHost: $HOSTNAME$\nState: $HOSTSTATE$\nAddress: $HOSTADDRESS$\nInfo: $HOSTOUTPUT$\n\nDate/Time: $LONGDATETIME$\n"

       }

define command{

       command_name    notify-service-by-email

       command_line    /etc/nagios3/scripts/sendmail -t $CONTACTEMAIL$ -s "** $NOTIFICATIONTYPE$ Service Alert: $HOSTALIAS$/$SERVICEDESC$ is $SERVICESTATE$ **" -m "%b" -m "***** Nagios *****\n\nNotification Type: $NOTIFICATIONTYPE$\n\nService: $SERVICEDESC$\nHost: $HOSTALIAS$\nAddress: $HOSTADDRESS$\nState: $SERVICESTATE$\n\nDate/Time: $LONGDATETIME$\n\nAdditional Info:\n\n$SERVICEOUTPUT$\n"

       }


当前文章:nagios邮件报警脚本
网站URL:http://bjjierui.cn/article/jhhpdp.html

其他资讯