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

SNMP编程

开发平台:

Unix_Linux

  1. .TH SNMP.CONF 5 "5 May 2005" VVERSIONINFO "Net-SNMP"
  2. .UC 4
  3. .SH NAME
  4. snmp_config - handling of Net-SNMP configuration files
  5. .SH DESCRIPTION
  6. The Net-SNMP package uses various configuration files to configure its 
  7. applications.  This manual page merely describes the overall nature of 
  8. them, so that the other manual pages don't have to.
  9. .SH "DIRECTORIES SEARCHED"
  10. First off, there are numerous places that configuration files can be
  11. found and read from.  By default, the applications look for
  12. configuration files in the following 4 directories, in order:
  13. SYSCONFDIR/snmp,
  14. DATADIR/snmp, LIBDIR/snmp, and $HOME/.snmp.  In each of these
  15. directories, it looks for files with the extension of both
  16. .IR conf " and " local.conf
  17. (reading the second ones last).  In this manner, there are
  18. 8 default places a configuration file can exist for any given
  19. configuration file type.
  20. .PP
  21. Additionally, the above default search path can be overridden by
  22. setting the environment variable SNMPCONFPATH to a colon-separated
  23. list of directories to search for.  The path for the persistent
  24. data should be included when running applications that use
  25. persistent storage, such as snmpd.
  26. .PP
  27. Applications will read persistent configuration files 
  28. in the following order of preference:
  29. .RS
  30. .PP
  31. file in 
  32. .B SNMP_PERSISTENT_FILE
  33. environment variable
  34. .PP
  35. directories in 
  36. .B SNMPCONFPATH
  37. environment variable
  38. .PP
  39. directory defined by 
  40. .B
  41. persistentDir 
  42. snmp.conf variable
  43. .PP
  44. default 
  45. .B
  46. PERSISTENT_DIRECTORY 
  47. directory
  48. .RE
  49. .PP
  50. Finally, applications will write persistent configuration files 
  51. in the following order of preference:
  52. .RS
  53. .PP
  54. file in 
  55. .B SNMP_PERSISTENT_FILE
  56. environment variable
  57. .PP
  58. directory defined by 
  59. .B
  60. persistentDir 
  61. snmp.conf variable
  62. .PP
  63. default 
  64. .B
  65. PERSISTENT_DIRECTORY 
  66. directory
  67. .RE
  68. .PP
  69. Note:  When using SNMP_PERSISTENT_FILE, the filename should match the 
  70. application name.  For example, /var/net-snmp/snmpd.conf.
  71. .SH "CONFIGURATION FILE TYPES"
  72. Each application may use multiple configuration files, which will
  73. configure various different aspects of the application.  For instance, 
  74. the SNMP agent
  75. .RB ( snmpd )
  76. knows how to understand configuration
  77. directives in both the snmpd.conf and the snmp.conf files.  In fact,
  78. most applications understand how to read the contents of the snmp.conf 
  79. files.  Note, however, that configuration directives understood in one 
  80. file may not be understood in another file.  For further information,
  81. read the associated manual page with each configuration file type.
  82. Also, most of the applications support a 
  83. .B -H
  84. switch on the command line that will list the configuration files it
  85. will look for and the directives in each one that it understands.
  86. .PP
  87. The snmp.conf configuration file is intended to be a application suite 
  88. wide configuration file that supports directives that are useful for
  89. controlling the fundamental nature of all of the SNMP applications,
  90. such as how they all manipulate and parse the textual SNMP MIB files.
  91. .SH "SWITCHING CONFIGURATION TYPES IN MID-FILE"
  92. It's possible to switch in mid-file the configuration type that the
  93. parser is supposed to be reading.  Since that sentence doesn't make
  94. much sense, lets give you an example: say that you wanted to turn on
  95. packet dumping output for the agent by default, but you didn't want to
  96. do that for the rest of the applications (ie, snmpget, snmpwalk, ...).
  97. Normally to enable packet dumping in the configuration file
  98. you'd need to put a line like:
  99. .PP
  100. .RS
  101. dumpPacket true
  102. .RE
  103. .PP
  104. into the snmp.conf file.  But, this would turn it on for all of the
  105. applications.  So, instead, you can put the same line in the
  106. snmpd.conf file so that it only applies to the snmpd daemon.  However,
  107. you need to tell the parser to expect this line.  You do this by
  108. putting a special type specification token inside a [] set.  In other
  109. words, inside your snmpd.conf file you could put the above snmp.conf
  110. directive by adding a line like so:
  111. .PP
  112. .RS
  113. [snmp] dumpPacket true
  114. .RE
  115. .PP
  116. This tells the parser to parse the above line as if it were inside a
  117. snmp.conf file instead of an snmpd.conf file.  If you want to parse a
  118. bunch of lines rather than just one then you can make the context
  119. switch apply to the remainder of the file or until the next context
  120. switch directive by putting the special token on a line by itself:
  121. .PP
  122. .RS
  123. .nf
  124. # make this file handle snmp.conf tokens:
  125. [snmp]
  126. dumpPacket true
  127. logTimestamp true
  128. # return to our original snmpd.conf tokens:
  129. [snmpd]
  130. rocommunity mypublic
  131. .RE
  132. .SH COMMENTS
  133. .PP
  134. Any lines beginning with the character '#' in the configuration files
  135. are treated as a comment and are not parsed.
  136. .SH "API INTERFACE"
  137. .PP
  138. Information about writing C code that makes use of this system in
  139. either the agent's MIB modules or in applications can be found in the
  140. .I read_config(3)
  141. manual page.
  142. .SH "SEE ALSO"
  143. read_config(3).
  144. ." Local Variables:
  145. ."  mode: nroff
  146. ." End: