README
上传用户:gzpyjq
上传日期:2013-01-31
资源大小:1852k
文件大小:2k
源码类别:

手机WAP编程

开发平台:

WINDOWS

  1. Kannel monitoring module for 'mon'
  2. ==================================
  3.   This Perl script is a custom monitoring module for mon, the system monitoring
  4.   tool, see http://www.kernel.org/pub/software/admin/mon/. The module watchs for
  5.   availibility of the Kannel SMS gateway, basicaly it checks the state of the 
  6.   connected SMSC links. In case of an error it will returns the affected SMSC IDs
  7.   of the links.
  8.   2002-07-31 Ingo Brombach, <brombach@wapme-systems.de>
  9. USAGE: $program [options] hosts...
  10.     
  11.   where options can be any of:
  12.   -h                this help message
  13.   -n "smsc-ids..."  a list of smsc-ids that should be ignored by the test
  14.   -s URI            the URI on the hosts containing the status-document (default: status.xml)
  15.   -p port           the port to connect to (default: 13000)
  16.   -S                use https:// scheme to access the URI (via SSLv3) (default: http://)
  17.   -P password       the status-password (default: )
  18.   -f file           local XML file to read (mainly for testing)
  19.   -v                verbose output
  20.   -i                info mode, displays the whole information to stdout
  21.   Examples: 
  22.     ./kannel.monitor -i -v -n "smpp_foo smpp_bar" kannel.foobar.com
  23.     Checks out the status page status.xml (default) on kannel.foobar.com, 
  24.     port 13000 (default) without password. It lookes for the general 
  25.     status as well as for the status of the smsc-connections but ignores 
  26.     error on the smsc-ids smpp_foo and smpp_bar. The whole status is displayed. 
  27.     The failure messages are verbose.
  28.     ./kannel.monitor -i -v -f status.xml -n "smpp_foo smpp_bar"
  29.     The same as above, but reading from a local status.xml file
  30.     ./kannel.monitor -p 13001 -P secret kannel.foobar.com
  31.   
  32.     Looking for status on port 13001 with password "secret". Only failing 
  33.     smsc-ids are displayed.
  34. Installation
  35. ============
  36.   You need the following Perl modules installed in order to run kannel.monitor 
  37.   on your system:
  38.     URI.pm
  39.     HTML/Tagset.pm
  40.     HTML/Parser.pm
  41.     LWP/UserAgent.pm
  42.     XML/Parser
  43.   They may be found on a CPAN mirror close to you, see http://www.cpan.org.
  44. Disclaimer
  45. ==========
  46. THIS SOFTWARE IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, BUT WITHOUT ANY 
  47. WARRANTY; WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR A 
  48. PARTICULAR PURPOSE.