home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 29 Fixes_o / 29-Fixes_o.zip / tcpcsd2.zip / BASECSD2.EXE / SAMPLES / SNMPSAMP / README.TXT < prev    next >
Text File  |  1992-12-02  |  2KB  |  57 lines

  1. Date:    November 1992
  2. To:      users of [drive]\tcpip\samples\snmp
  3. Subject: snmp related samples
  4.  
  5. This directory contains samples for the following:
  6.  
  7. 1.The src.pw file, defining the SNMP community names.
  8. 2.The snmptrap.dst file, defining the hosts where to send SNMP traps to.
  9. 3.A dpisampl.c program which serves as a sample for an SNMP-DPI sub-agent.
  10.  
  11. To use these samples:
  12.  
  13. 1.Set the environment variable as described in programmer's manual.
  14.  
  15. 2.First you may want to review and/or change the pw.src file and the
  16.   snmptrap.dst file.
  17.   Then, to install the SNMP community names and the SNMP trap destinations
  18.   you can issue:
  19.  
  20.    [C:\tcpip\samples\snmp] nmake snmpsmpl.mak
  21.  
  22.   This will create snmp.pw (via the make_pw cmd) and then copy the
  23.   snmp.pw and snmptrap.dst files to the ETC directory, as specified
  24.   in the environment variable %etc% (default: C:\TCPIP\ETC)
  25.  
  26.   If you want to do these steps manually:
  27.  
  28.    [C:\tcpip\samples\snmp] copy snmptrap.dst \tcpip\etc
  29.    [C:\tcpip\samples\snmp] make_pw
  30.    [C:\tcpip\samples\snmp] copy snmp.pw  \tcpip\etc
  31.  
  32. 3.You can now start the SNMP agent:
  33.  
  34.    [C:\tcpip\samples\snmp] start snmpd
  35.  
  36.   After this you should be able to get SNMP variables. In another window:
  37.  
  38.    [C:\tcpip\samples\snmp] start snmpreqd
  39.    [C:\tcpip\samples\snmp] snmp get host_name community_name sysDescr
  40.    [C:\tcpip\samples\snmp] snmpgrp host_name community_name sys
  41.  
  42. 4.Compiling and Linking the SNMP-DPI sample sub-agent
  43.  
  44.    [C:\tcpip\samples\snmp] nmake dpisampl.mak
  45.  
  46.   After this you can run the SNMP-DPI sub-agent (snmpd must be active):
  47.  
  48.    [C:\tcpip\samples\snmp] start dpisampl host_name community_name
  49.  
  50.   After this you should be able to get SNMP subagent variables.
  51.   In another window:
  52.  
  53.    [C:\tcpip\samples\snmp] start snmpreqd
  54.    [C:\tcpip\samples\snmp] snmp get host_name community_name dpiSampleNumber
  55.    [C:\tcpip\samples\snmp] snmp get host_name community_name dpiSampleCounter
  56.  
  57.