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

SNMP编程

开发平台:

Unix_Linux

  1. ." /***********************************************************
  2. ."  Copyright 1988, 1989 by Carnegie Mellon University
  3. ." 
  4. ."                       All Rights Reserved
  5. ." 
  6. ." Permission to use, copy, modify, and distribute this software and its 
  7. ." documentation for any purpose and without fee is hereby granted, 
  8. ." provided that the above copyright notice appear in all copies and that
  9. ." both that copyright notice and this permission notice appear in 
  10. ." supporting documentation, and that the name of CMU not be
  11. ." used in advertising or publicity pertaining to distribution of the
  12. ." software without specific, written prior permission.  
  13. ." 
  14. ." CMU DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  15. ." ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  16. ." CMU BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  17. ." ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  18. ." WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  19. ." ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  20. ." SOFTWARE.
  21. ." ******************************************************************/
  22. .TH VARIABLES 5 "02 Mar 1999" VVERSIONINFO "Net-SNMP"
  23. .UC 4
  24. .SH NAME
  25.     variables - Format of specifying variable names to SNMP tools.
  26. .SH SYNOPSIS
  27.     system.sysdescr.0
  28. .SH DESCRIPTION
  29. Variable names are in the format of Object Identifiers (ASN.1).  There are
  30. several methods of representation. Each variable name is given in the format of A.B.C.D...,
  31. where A, B, C, and D are subidentifiers in one of two forms of notation.
  32. Each subidentifier may be encoded as a decimal integer, or a symbol as found in
  33. the RFC1066 MIB.  The case of the symbols is not significant.
  34. .br
  35. If there is no leading "." in the variable name, the name will be formed
  36. as if having been preceded with "iso.org.dod.internet.mgmt.mib.".  A "." must
  37. be placed before the first variable if the user is to fully specify the name.
  38. For example:
  39. .PP
  40. .I 1.1.0  system.sysDescr.0 and 1.sysDescr.0
  41. .PP
  42. all refer to the same variable name.  Likewise:
  43. .PP
  44. .I .1.3.6.1.2.1.1.1.0 .iso.org.dod.internet.mgmt.mib.system.sysdescr.0 .1.3.6.1.2.1.1.sysdescr.0
  45. .PP
  46. All refer to the same variable name.
  47. .PP
  48. The description of the variables in the MIB is given in the set of MIB
  49. files defined by the MIBS environment variable (or the default list
  50. defined at compilation time) and the MIB files in the
  51. DATADIR/snmp/mibs directory (or the MIBDIRS environment variable).
  52. .SH "SEE ALSO"
  53. RFC 1065, RFC 1066, RFC 1067, ISO IS 8824(ASN.1)
  54. .SH BUGS
  55. The parser of the MIB files file is not expected to handle bizarre
  56. (although correct) interpretations of the ASN.1 notation.