liyeho 发表于 2019-1-15 09:02:12

nagios安装飞信

  一、安装所需要的软件
  总下载地址:http://bbs.it-adv.net/viewthread.php?tid=1081&extra=page%3D1
  wget http://www.it-adv.net/fetion/linuxso_20101113.rar
  //下面的这个连接是下载飞信的可执行文件fetion,要注册回复后才能看到
  http://bbs.it-adv.net/attachment.php?aid=43&k=954fb0d183808bfb706d8c4a35308874&t=1335168710
  //下面的这个连接是下载rar的解压缩软件文件的软件
  wget http://www.rarlab.com/rar/rarlinux-3.9.2.tar.gz
  二、解压下载的软件
  1,安装rar的解压缩软件
  tar zxvf rarlinux-3.9.2.tar.gz
  cd rar
  make && make install
  make时如果报以下
  rar: error while loading shared libraries: libstdc++.so.6: cannot open shared object file: No such file or directory
  解决方法:
  # yum install libstdc++.so.6
  2、创建fetion目录
  mkdir /usr/local/fetion
  rar x linuxso_20101113.rar
  cp ./lib* /usr/local/fetion
  把下载的fetion执行程序拷贝过去到fetion目录中,并修改fetion目录属主和属组为nagios,增加执行权限
  3、增加飞信所需的动态链接库
  vi /etc/ld.so.conf
  /usr/local/fetion
  4、这一步最关键,否则系统识别不到
  ldconfig   --更新/usr/local/fetion中的库文件,能够被系统识别
  5、手动执行fetion,看是否报错:
  /usr/local/fetion/fetion
  ************************ IMPORTANT STATEMENT ************************
  **                                                               **
  **   PLEASE DON'T USE THIS SOFTWARE TO SEND JUNK SHORT MESSAGES.   **
  **   OTHERWISE PLEASE BEAR YOUR OWN CONSEQUENCES.                  **
  **                                                               **
  **                              Version:      **
  *********************************************************************
  This program is the console version of China Fetion!
  It's free for personal user.
  This project website: http://www.it-adv.net/
  AUTHOR:KelvinH MSN/EMAIL:shichangguo@msn.com
  Usage:
  --mobile=
  --sid=
  --pwd=
  --config= *format:index mobile password
  --index=
  --debug*debug mode on
  --hide*login fetion in hidden state
  --to=
  --command-path=
  --robotmode
  --daemon(linux only)
  --proxy-ip(http proxy ip)
  --proxy-port(http proxy port)
  --msg-gb=
  --msg-utf8=
  --msg-type=
  --file-gb=
  --file-utf8=
  --query-cmcc-no
  --auto-retry
  --exit-on-verifycode
  --t3key=
  6】测试
  root># /usr/local/fetion/fetion --mobile=1371xx --pwd=xx --to=1371xx --msg-utf8="阿萨"
  SIP-C/4.0 280 Send SMS OK
  T: sip:203294876@fetion.com.cn;p=3044
  I: 2
  Q: 1 M
  L: 116
  D: Wed, 12 Dec 2012 03:41:17 GMT
  XI: 8EB4A6172FA8AD75614FB3CC323AD8F0
  --其中pwd为该手机的飞信密码,并不是139密码;如果出现send sms ok的话,就说明已经发生成功了,一般第一次发生的时候,会在fetion目录生成该手机的jpg
  7】修改commands.cfg
  define command {
  command_name    notify-service-by-fetion
  command_line    /usr/local/fetion/fetion --mobile=1371xx --pwd=xx --msg-utf8="***Nagios***\nNotification Type: $NOTIFICATIONTYPE$\nService: $SERVICEDESC$\nHost: $HOSTALIAS$\nAddress: $HOSTADDRESS$\nState: $SERVICESTATE$\nDate/Time: $LONGDATETIME$\n\nAdditional Info:\n$SERVICEOUTPUT$ " --to=1371xx
  }
  define command {
  command_name    notify-host-by-fetion
  command_line    /usr/local/fetion/fetion --mobile=1371xx --pwd=xx --msg-utf8="***** Nagios *****\n\nNotification Type: $NOTIFICATIONTYPE$\nHost: $HOSTNAME$\nState: $HOSTSTATE$\nAddress: $HOSTADDRESS$\nInfo: $HOSTOUTPUT$\nDate/Time: $LONGDATETIME$\n " --to=1371xx
  }
  --其中to后面可以是contacts.cfg里面的联系人
  信息格式可以随便修改,也可以这样写
  define command{
  command_name    notify-host-by-fetion
  command_line    /usr/local/fetion/fetion --mobile=1371x --pwd=xx --msg-utf8="***Nagios***\nNotification Type: $NOTIFICATIONTYPE$ Host Alert: $HOSTNAME$ is $HOSTSTATE$"--to=1371xx
  }
  # 'notify-service-by-fetion' command definition
  define command{
  command_name    notify-service-by-fetion
  command_line    /usr/local/fetion/fetion --mobile=1371 --pwd=xx --msg-utf8="***Nagios***\nNotification Type: $NOTIFICATIONTYPE$ Service Alert: $HOSTALIAS$/$SERVICEDESC$ is $SERVICESTATE$"--to=xx
  }
  8】修改contacts.cfg,增加pager
  define contact {
  contact_name                     nagiosadmin
  alias                              nagios administrator
  service_notification_period      24x7
  host_notification_period         24x7
  service_notification_options       w,u,c,r
  host_notification_options          d,u,r
  service_notification_commands      notify-service-by-fetion,notify-service-by-email
  host_notification_commands         notify-host-by-fetion,notify-service-by-email
  #       email                           1371@139.com
  pager   1371xx
  9】重启nagios服务



页: [1]
查看完整版本: nagios安装飞信