snmpstatus.1.def
上传用户:wxp200602
上传日期:2007-10-30
资源大小:4028k
文件大小:4k
源码类别:

SNMP编程

开发平台:

Unix_Linux

  1. ." Portions of this file are subject to the following copyright.  See
  2. ." the Net-SNMP's COPYING file for more details and other copyrights
  3. ." that may apply:
  4. ." /***********************************************************
  5. ."  Copyright 1988, 1989 by Carnegie Mellon University
  6. ." 
  7. ."                       All Rights Reserved
  8. ." 
  9. ." Permission to use, copy, modify, and distribute this software and its 
  10. ." documentation for any purpose and without fee is hereby granted, 
  11. ." provided that the above copyright notice appear in all copies and that
  12. ." both that copyright notice and this permission notice appear in 
  13. ." supporting documentation, and that the name of CMU not be
  14. ." used in advertising or publicity pertaining to distribution of the
  15. ." software without specific, written prior permission.  
  16. ." 
  17. ." CMU DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  18. ." ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  19. ." CMU BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  20. ." ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  21. ." WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  22. ." ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  23. ." SOFTWARE.
  24. ." ******************************************************************/
  25. ." Portions of this file are copyrighted by:
  26. ." Copyright Copyright 2003 Sun Microsystems, Inc. All rights reserved.
  27. ." Use is subject to license terms specified in the COPYING file
  28. ." distributed with the Net-SNMP package.
  29. ." ******************************************************************/
  30. .TH SNMPSTATUS 1 "25 Jul 2003" VVERSIONINFO "Net-SNMP"
  31. .UC 4
  32. .SH NAME
  33. snmpstatus - retrieves a fixed set of management information from a network entity
  34. .SH SYNOPSIS
  35. .B snmpstatus
  36. [COMMON OPTIONS] [-Cf] AGENT
  37. .SH DESCRIPTION
  38. .B snmpstatus
  39. is an SNMP application that retrieves several important statistics
  40. from a network entity.
  41. .PP
  42. AGENT identifies a target SNMP agent, which is instrumented
  43. to monitor the given objects.  At its simplest, the AGENT
  44. specification will consist of a hostname or an IPv4 address.
  45. n this situation, the command will attempt communication with
  46. the agent, using UDP/IPv4 to port 161 of the given target host.
  47. .PP
  48. See the 
  49. .I snmpcmd(1)
  50. manual page for a full list of the possible formats for AGENT.
  51. .PP
  52. The information returned is:
  53. .IP
  54. The IP address of the entity.
  55. .br
  56. A textual description of the entity (sysDescr.0)
  57. .br
  58. The uptime of the entity's SNMP agent (sysUpTime.0)
  59. .br
  60. The sum of received packets on all interfaces
  61. (ifInUCastPkts.* + ifInNUCastPkts.*)
  62. .br
  63. The sum of transmitted packets on all interfaces
  64. (ifOutUCastPkts.* + ifOutNUCastPkts.*)
  65. .br
  66. The number of IP input packets (ipInReceives.0)
  67. .br
  68. The number of IP output packets (ipOutRequests.0)
  69. .PP
  70. For example:
  71. .PP
  72. snmpstatus -c public -v 1 netdev-kbox.cc.cmu.edu
  73. .PP
  74. will produce output similar to the following:
  75. .PP
  76. [128.2.56.220]=>[Kinetics FastPath2] Up: 1 day, 4:43:31
  77. .br
  78. Interfaces: 1,  Recv/Trans packets: 262874/39867 |
  79. IP: 31603/15805
  80. .PP
  81. .B snmpstatus
  82. also checks the operational status of all interfaces (ifOperStatus.*),
  83. and if it finds any that are not running, it will report in a manner
  84. similar to this:
  85. .PP
  86. 2 interfaces are down!
  87. .PP
  88. If the network entity has an error processing the request packet, an
  89. error packet will be returned and a message will be shown, helping to
  90. pinpoint in what way the request was malformed.
  91. .B snmpstatus
  92. will attempt to reform its request to eliminate the malformed
  93. variable (unless the
  94. .B -Cf
  95. option is given, see below), but this variable will then be missing
  96. from the displayed data.
  97. .PP
  98. .SH OPTIONS
  99. .TP
  100. .B COMMON OPTIONS
  101. Please see
  102. .I snmpcmd(1)
  103. for a list of possible values for COMMON OPTIONS
  104. as well as their descriptions.
  105. .TP
  106. .B -Cf
  107. By default, snmpstatus will try to fix errors returned
  108. by the agent and retry a request. In this situation,
  109. the command will display the data that it can. If the -Cf option
  110. is specified, then snmpstatus will not try to fix
  111. errors, and the error will cause the command to terminate.
  112. .SH "SEE ALSO"
  113. snmpcmd(1), snmpget(1)