home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 29 Fixes_o / 29-Fixes_o.zip / tcpcsd2.zip / BASECSD2.EXE / SAMPLES / SNMPSAMP / PW.SRC < prev    next >
Text File  |  1992-06-16  |  3KB  |  51 lines

  1. * This is a sample pw.src file. First we see some sample entries.
  2. * NetView on the mainframe passes Uppercase community names from the
  3. * command line, that is why we have the NVTEST entry as a sample.
  4. *
  5. *community name  netw_addr    mask             priv_mask
  6. *
  7. public           0.0.0.0      0.0.0.0
  8. monitor          0.0.0.0      0.0.0.0
  9. NVTEST           0.0.0.0      0.0.0.0
  10. password1        0.0.0.0      0.0.0.0
  11. password2        9.0.0.0      255.0.0.0
  12. password3        9.132.2.4    255.255.255.255
  13. *-----------------------------------------------------------------------
  14. *
  15. * The following community names will turn tracing within the
  16. * agent on/off when a packet arrives with such a community name.
  17. * This is achieved by specifying an appropriate priv_mask
  18. *
  19. *                     /-------> bit 0 (trace on or off)
  20. *                     |/------> bit 1 (trace SNMP responses)
  21. *                     ||/-----> bit 2 (trace SNMP requests)
  22. *                     |||/----> bit 3 (trace external)
  23. *                     ||||/---> bit 4 (trace internal)
  24. *                     |||||/--> bit 5 (trace DPI)
  25. *                     |||||/--> bit 6 (trace DPI Internals)
  26. *                     ||||||/-> bit 7 (reserved)
  27. *                     |||||||                        bit 31 (last bit)
  28. *                     vvvvvvv                        v
  29. *  In here, string    xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxs
  30. *  is used by the agent to grant access and turn tracing on/off.
  31. *  The string represents bits in a 32 bit integer.
  32. *  The last bit (if set to s) means you have access.
  33. *  Bit zero turns tracing on (if set to s) or off (if set to x)
  34. *  Bits 1-7  specify which tracing is turned on or off.
  35. *
  36. debug_reply      0.0.0.0   0.0.0.0   ssxxxxxxxxxxxxxxxxxxxxxxxxxxxxxs
  37. debug_reply_off  0.0.0.0   0.0.0.0   xsxxxxxxxxxxxxxxxxxxxxxxxxxxxxxs
  38. debug_req        0.0.0.0   0.0.0.0   sxsxxxxxxxxxxxxxxxxxxxxxxxxxxxxs
  39. debug_req_off    0.0.0.0   0.0.0.0   xxsxxxxxxxxxxxxxxxxxxxxxxxxxxxxs
  40. debug_ext        0.0.0.0   0.0.0.0   sxxsxxxxxxxxxxxxxxxxxxxxxxxxxxxs
  41. debug_ext_off    0.0.0.0   0.0.0.0   xxxsxxxxxxxxxxxxxxxxxxxxxxxxxxxs
  42. debug_int        0.0.0.0   0.0.0.0   sxxxsxxxxxxxxxxxxxxxxxxxxxxxxxxs
  43. debug_int_off    0.0.0.0   0.0.0.0   xxxxsxxxxxxxxxxxxxxxxxxxxxxxxxxs
  44. debug_dpi        0.0.0.0   0.0.0.0   sxxxxsxxxxxxxxxxxxxxxxxxxxxxxxxs
  45. debug_dpi_int    0.0.0.0   0.0.0.0   sxxxxxsxxxxxxxxxxxxxxxxxxxxxxxxs
  46. debug_all_dpi    0.0.0.0   0.0.0.0   sxxxxssxxxxxxxxxxxxxxxxxxxxxxxxs
  47. debug_dpi_off    0.0.0.0   0.0.0.0   xxxxxssxxxxxxxxxxxxxxxxxxxxxxxxs
  48. debug_all        0.0.0.0   0.0.0.0   sssssssxxxxxxxxxxxxxxxxxxxxxxxxs
  49. debug_all_off    0.0.0.0   0.0.0.0   xssssssxxxxxxxxxxxxxxxxxxxxxxxxs
  50. debug_off        0.0.0.0   0.0.0.0   xssssssxxxxxxxxxxxxxxxxxxxxxxxxs
  51.