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

SNMP编程

开发平台:

Unix_Linux

  1. ***************************************************************************
  2. *
  3. * README.win32
  4. *
  5. ***************************************************************************
  6. This guide describes building with Microsoft Visual C++ 6.0 and higher, with
  7. the gcc compiler from MinGW / MSYS, and with the gcc compiler from Cygwin.
  8. As developers build with other Win32 environments, their notes will be 
  9. included here.
  10. The remainder of this guide has the following sections :
  11. Status as of 28-May-2004 for Win32 platforms
  12. Interactions with Other Vendor's Products
  13. Co-existence with Microsoft SNMP services
  14. Installing Platform SDK
  15. Microsoft Visual C++ - Overview
  16. Microsoft Visual C++ - Configure / nmake - Building
  17. Microsoft Visual C++ - Workspace - Building
  18. Microsoft Visual C++ - Workspace - Building the Perl SNMP modules
  19. Microsoft Visual C++ - Workspace - Installing
  20. Microsoft Visual C++ - Building with OpenSSL
  21. Microsoft Visual C++ - Building with IPv6
  22. Microsoft Visual C++ - Building your own applications with snmplib
  23. Microsoft Visual C++ - Extending the Agent
  24. GCC on Windows
  25. Cygwin - Building
  26. MinGW - Building
  27. MinGW - Building with OpenSSL
  28. Configuring Net-SNMP
  29. How to Register the Net-SNMP Agent and Trap Daemon as Windows services
  30. Notes on SET support for WIN32 ports
  31. Notes on preprocessor defines for MSVC, MinGW and Cygwin
  32. Acknowledgements
  33. ***************************************************************************
  34. *
  35. * Status as of 28-May-2004 for Win32 platforms
  36. *
  37. ***************************************************************************
  38. All applications build with Microsoft Visual C++ 6.0, Microsoft Development
  39. Environment 2003 (MSVC 7.0/7.1), gcc under Cygwin, and gcc under MinGW.  
  40.   -  All of the applications work
  41.      (snmpwalk, snmpget, snmpset, snmptrap, etc...).
  42.   -  The system, snmp, ip, tcp, udp, icmp mibgroups function
  43.          (when agent is built using the snmpdsdk project).
  44.   -  The Net-SNMP agent runs as an AgentX master agent or as subagent.
  45.   -  smux is working.
  46.   -  The target, notification, disman/mte groups compile but are not tested.
  47.   -  The TCP/IPv6 and UDP/IPv6 transports compile but are not tested.
  48.          
  49.   -  Extending the agent to support enterprise-specific MIBs works.
  50.   -  Running the agent on a non-standard UDP or TCP port works.
  51.   -  Snmpd can be registered as a Windows NT/2000/XP service.
  52.   -  Snmptrapd can be registered as a Windows NT/2000/XP service.
  53.   -  Some build environments allow long pathnames that contain
  54.      embedded spaces.  As this is not true for Cygwin "configure",
  55.      the documented example scripts will refer to "c:/usr"
  56.      as the base directory for installed Net-SNMP software.
  57. The next subsection relates to items that are built using Visual Studio
  58.   -  All Visual Studio project (.dsp) files are cleaned, and 
  59.      a) Generate code to use Multi-Threaded DLL (/MD) "C" run-time library;
  60.      b) Provide the same preprocesor defines (WIN32,_CONSOLE,_MBCS);
  61.      c) Remove unnecessary references to GDI, ODBC, and "C" libraries;
  62.      d) Debug versions build source browsing and debugging information;
  63.      e) Provide consistent include search paths.
  64.   -  Building netsnmp.dll is only supported for compiling libagent, 
  65.      libhelpers, libsnmp_dll, libnetsnmptrapd and netsnmpmibs for use with 
  66.      the Perl module.  Using netsnmp.dll for other components is not 
  67.      supported as the DLL does not prevent corruption of dynamically changing 
  68.      shared data.
  69.   -  All Debug and Release targets linked with libsnmp project targets
  70.      build without errors, and are fully functional.
  71.   -  Both the Workspace graphical environment and command line nmake is 
  72.      supported for building under MSVC.
  73. ***************************************************************************
  74. *
  75. * Interactions with Other Vendor's Products
  76. *
  77. ***************************************************************************
  78.   -  Install scripts etc are written assuming Windows NT / 2000 or higher
  79.   -  Running the Net-SNMP Agent or trap receiver on Windows 95 or Win3.1
  80.      is not supported.
  81.   -  Running the Net-SNMP Agent or trap receiver as a service on Windows 95
  82.      or Windows 98 is not supported.
  83.   -  The Net-SNMP agent and trap receiver will fail to start if either 
  84.      cannot bind to their connect port (161 for agent, 162 for trap receiver).
  85.      Check the Services panel to be sure no other SNMP program conflicts. See
  86.      the section titled 'Co-existence with Microsoft SNMP services' below.
  87.   -  Running the Net-SNMP agent instead of the MS supplied one works
  88.      (at the loss of most of the functionality).   See the section titled 
  89.      'Co-existence with Microsoft SNMP services' below.
  90.   -  The Net-SNMP agent does not use the MS SNMP.dll, therefore it cannot 
  91.      run as an extensible part of the MS agent.  It is possible to use a third
  92.      party proxy agent for the MS agent to 'proxy' requests to the Net-SNMP
  93.      agent listening on a different UDP port on the same machine.
  94.   -  Snmptrapd does not "share" nor multiplex traps with SNMPTRAP.EXE,
  95.      a program that is available from Microsoft or ACE#COMM.
  96. ***************************************************************************
  97. *
  98. * Co-existence with Microsoft SNMP services
  99. *
  100. ***************************************************************************
  101. If the Microsoft SNMP agent service (SNMP Service) is running, the Net-SNMP 
  102. agent (snmpd) will fail to start as it will not be able to bind to the default
  103. TCP/IP port of 161.
  104. If the Microsoft SNMP Trap Receiver service is running, the Net-SNMP trap 
  105. receiver (snmptrapd) will fail to start as it will not be able to bind to the 
  106. default TCP/IP port of 162.
  107. It is not a requirement to install the Net-SNMP agent (snmpd) or trap receiver
  108. (snmptrapd).  All the command line utilties such as snmpget.exe, snmpset.exe 
  109. and the Perl modules will work without the Net-SNMP services.  All the 
  110. utilities will work against any SNMP agent.
  111. The main benefit of running the Microsoft SNMP agent instead of the Net-SNMP 
  112. agent is that many Windows applications such as Microsoft SQL Server, 
  113. Microsoft Exchange etc, extend the Microsoft agent.  Net-SNMP is NOT a drop 
  114. in replacement for the Microsoft agent.  Running Net-SNMP in place of the 
  115. Microsoft agent will prevent the other applications from working with SNMP.  
  116. Also, the Net-SNMP agent does not contain as many MIBs as the Microsoft agent.  
  117. For example, as of August 2005, the HOST-RESOURCES (host) MIB is not yet
  118. implemented in Net-SNMP.
  119. There are many benefits of running the Net-SNMP agent instead of the Microsoft
  120. such as you can extend the agent using various features found in snmpd.conf 
  121. such as pass and pass_persist (support for others are being added), you can
  122. use SNMP v3, and there is more granular access control.
  123. To allow both the Microsoft and Net-SNMP agent / trap receiver to run at the 
  124. same time, the default TCP/IP port must be changed on either the Microsoft or 
  125. Net-SNMP version of the application.
  126. The Net-SNMP ports for snmpd and snmptrapd can be modified via snmpd.conf and 
  127. snmptrapd.conf or by using a command line option with each program.  See the 
  128. Net-SNMP Help file for instructions on changing the port number.
  129. The Microsoft services use the 'snmp' and 'snmptrap' entries in the SERVICES 
  130. file (%SystemRoot%system32driversetcservices) to determine the port to bind
  131. the service to when the service starts.  Simply modify the entries and restart 
  132. the affected services.
  133. Note:  Changing the default port the service listens on will prevent it from 
  134.        accepting requests or receiving traps from standard SNMP devices and 
  135.        management stations unless they have also been reconfigured to use the 
  136.        new port numbers.
  137. It is possible to configure Net-SNMP agent to listen on the default UDP port
  138. (161), have the Microsoft agent listen on another port such as 1161, and have
  139. Net-SNMP proxy (forward) requests to the Microsoft agent.  This will allow you
  140. to use the advanced features of Net-SNMP while still being able to query
  141. the Microsoft agent and subagents.  To this, follow these steps:
  142.  1.  Change the port that the Microsoft agent listens on.
  143.  2.  Configure the Microsoft agent to only accept requests from localhost.  
  144.      This can be set in the Security tab for the SNMP service in Windows 2000+.
  145.      This is recommended to prevent users from querying the Microsoft agent
  146.      directly.
  147.  
  148.  3.  Add a r/c community string to the Microsoft agent.  This can be set in 
  149.      the Security tab for the SNMP service in Windows 2000+.  This will give 
  150.      Net-SNMP full SNMP access.  User access can be restricted by Net-SNMP
  151.      as explained below.
  152.  
  153.  4.  Restart the Microsoft SNMP service.
  154.  5.  Configure Net-SNMP to proxy requests to the Microsoft agent.  To have it
  155.      forward ALL requests to the Microsoft agent, add the following line to 
  156.      snmpd.conf:
  157.  
  158.        proxy  -v 1 -c public localhost:1161 .1.3
  159.  
  160.      To only forward a section of the MIB tree such as the host section, use:
  161.  
  162.        proxy  -v 1 -c public localhost:1161 host
  163.  
  164.  6.  Start the Net-SNMP agent.
  165.  
  166.      Notes: If Net-SNMP has built in support for an OID and the proxy statement
  167.             is not for a specific OID, then it will respond instead of proxying
  168.             the request.  For example, if you proxy the 'system' tree and issue
  169.             an snmpget for sysDescr.0, Net-SNMP will respond with it's own 
  170.             version of sysDescr.0 instead of forwarding it.  To prevent Net-SNMP
  171.             from doing this, you must prevent the system MIB from being 
  172.             initialized when snmpd.exe is started by specifying what MIBS to 
  173.             initialize using the -I switch.
  174.   
  175.             If you are forwarding everything to the Microsoft agent (.1.3), 
  176.             start snmpd.exe using:
  177.  
  178.               snmpd.exe -Ivacm_conf,proxy,pass,pass_persist
  179.  
  180.             The above will enable proxy, pass and pass_persist support.  See the
  181.             snmpd man page for more information on the -I switch.
  182.  
  183.             If you are forwarding a section of the tree that is not immplemented
  184.             in Net-SNMP such as 'host', you do not need to use the -I switch as
  185.             Net-SNMP will forward the request.  This may cause issues in the 
  186.             future if newer versions of Net-SNMP implement the section of the
  187.             tree you are forwarding, such as the HOST-RESOURCES MIB.
  188.  
  189.             The pass and pass_persist commands will work even if the entire 
  190.             tree is proxied to the Microsoft Agent.
  191.  
  192.  7.  Test the agent.  If you have forwarded the entire tree, issue an snmpget
  193.      for sysDescr.0.  For example:
  194.  
  195.        snmpget -v 1 -c public localhost sysDescr.0
  196.  
  197.      The Microsoft agent will respond in a format similar to:
  198.  
  199.        Hardware: x86 Family 15 Model 12 Stepping 0 AT/AT COMPATIBLE - Software: 
  200.         Windows 2000 Version 5.0 (Build 2195 Uniprocessor Free)
  201.   
  202.      The Net-SNMP agent would normally respond in a format similar to:
  203.  
  204.        Windows host1 5.0.2195 Service Pack 4 2000 Server x86 Family 15 Model 12
  205.         Stepping 0
  206. If you had previously configured the Microsoft agent with multiple community 
  207. strings to restrict who can read and write to the OID tree, the security
  208. settings should be transferred to snmpd.conf.  For example, if the Microsoft
  209. agent was configured with:
  210.  Community              Rights
  211.  ---------------------------------
  212.  public                 read
  213.  S3cur39876             read/write
  214.  Sn0wb0ard345           read/create
  215. Add the following to snmpd.conf:
  216.  rocommunity  public
  217.  rwcommunity  S3cur39876
  218.  rwcommunity  Sn0wb0ard345
  219. It is possible to add more granular security using Net-SNMP.  For example, to 
  220. restrict the public community string to only read the system tree, use:
  221.  rocommunity  public 0.0.0.0 system
  222. See the snmpd.conf man page for more information on configuring security.
  223. ***************************************************************************
  224. *
  225. * Installing Platform SDK
  226. *
  227. ***************************************************************************
  228. If you are compiling using Microsoft Visual C++ 6.0, it is recommended that
  229. you install the Core Platform SDK (PSDK).  Without the PSDK, some functionality
  230. will be disabled such as the core elements of the mibII group of the agent 
  231. which use the "IP Helper API" (IPHLPAPI).
  232. To determine what code is disabled when the PSDK is not used, search the
  233. source code for HAVE_WIN32_PLATFORM_SDK.
  234. The PSDK can be downloaded from:
  235.     http://msdn.microsoft.com/downloads/
  236. as follows:
  237.     -  Using Internet Explorer (Netscape / Mozilla won't work), go to the 
  238.        above URL
  239.     -  From the menu at the left, Click "Downloads by Topic";
  240.             From the main window, Click "Platform SDK".
  241.     -  From the new window that appears, select "Core SDK".
  242.     -  The full Core SDK is ~240Mb (expanding to ~560Mb on installation).
  243.        In fact, the only portion that's required is the basic "Build
  244.        Environment" (36Mb) So it's safe to deselect the pre-release version,
  245.        documentation, sample code and 64-bit elements.
  246.     -  Once this package has installed, from the Start Menu run
  247.        "Programs ->Microsoft Platform SDK... -> Visual Studio Registration
  248.        ->Register PSDK Directories with Visual Studio"
  249. If you are compiling using any of the following systems, the PSDK download
  250. is not necessary, as the required parts of the PSDK are included with the 
  251. installation of the compiler:
  252.     - Microsoft Development Environment 2002 (MSVC 7.0)
  253.     - Microsoft Development Environment 2003 (MSVC 7.1)
  254.     - Cygwin (gcc)
  255.     - MinGW (gcc)
  256. In order for the process part of the host resources MIB to work under Windows
  257. NT you will need to obtain PSAPI.DLL. This is available under the download 
  258. section of www.microsoft.com.  The DLL is included with Windows 2000 and XP, 
  259. and is also part of the VC++ distribution.  
  260. If you are building Net-SNMP using Cygwin, go now to "Cygwin - Building".
  261. If you are building Net-SNMP using MinGW, go now to "MinGW - Building".
  262. Otherwise, see the Building section below.
  263. ***************************************************************************
  264. *
  265. * Microsoft Visual C++ - Overview
  266. *
  267. ***************************************************************************
  268. There are two ways to build Net-SNMP using Microsoft Visual C++.  The first
  269. and easiest method is using Configure and nmake on the command line, and the 
  270. second is using the Workspace files with the graphical interface.
  271. To use nmake on the command line, the Configure script is run first to create
  272. the various make files.  Once they are created, nmake is used to build the 
  273. applications.  Perl is required to use this method, as the Configure script
  274. is written in Perl.  ActiveState ActivePerl is available at:
  275.         http://www.activestate.com/Products/ActivePerl/
  276. The make file system is based on and uses the directory structure of the 
  277. projects contained in the Workspace files which are described below.  It is
  278. recommended that you read and understand how the workspaces are configured
  279. even if you will only be using the command line Configure / nmake system.
  280. For the graphical interface, there are two main Win32 workspaces 
  281. ('win32.dsw' and 'win32sdk.dsw'), containing more or less the same set 
  282. of projects, plus 'libdll.dsw' which contains a minimal set of projects 
  283. for use with the Perl module only.  
  284. Win32.dsw is for developers who have not installed the Platform SDK from 
  285. Microsoft's MSDN SDK Update site when using Microsoft Visual Studio 6.0.
  286. Win32sdk.dsw is for those who have or who are using the Microsoft Development 
  287. Environment 2002/2003 (MSVC 7.0/7.1), Cygwin (gcc) or MinGW (gcc).
  288. Libdll.dsw compiles a DLL version of snmplib (netsnmp.dll) which should 
  289. only be used for the Perl module.  Using netsnmp.dll for other components 
  290. is not supported as the DLL does not prevent corruption of dynamically 
  291. changing shared data.  Although the same problems can occur using the Perl 
  292. modules, the Perl modules will not function correctly without a shared 
  293. snmplib library or DLL.
  294. There is one core development library ('libsnmp'), together with a number 
  295. of utility projects for the individual executable commands ('snmpget', 
  296. 'snmpwalk', etc...).  All of these projects require the .lib created by 
  297. the libsnmp project.
  298. The agent requires the core library plus the other three library projects 
  299. ('libagent', libhelpers' and either 'netsnmpmibs' or 'netsnmpmibssdk' 
  300. depending on which workspace is being used) together with the main agent 
  301. project (either 'snmpd' or 'snmpdsdk').
  302. The final application project is the trap handler 'snmptrapd'.  This also
  303. requires the agent libraries ('libagent', 'libhelpers' and 'netsnmpmibs')
  304. as well as the core development library.
  305. There is a Debug version and Release version for each subproject.
  306. This is so the Debug and Release versions of an application can be built and 
  307. tested separately.
  308. Both VC++ 6.0 and 7.1 have been tested.  Building with earlier Microsoft
  309. compiler versions is no longer supported.
  310. Note:  Compiling Net-SNMP using MSVC 2003 .NET (MSVC 7.1) will add a 
  311.        dependency of MSVCR71.DLL for NETSNMP.DLL and all applications.
  312.        Search msdn.microsoft.com for msvcr71.dll for more information
  313.        on distributing applications compiled with MSVC 2003 .Net.
  314. OpenSSL is required to support the encryption capabilities in SNMPv3,
  315. or SHA authentication.
  316. Since the MSVC build environment does not natively use "configure" nor "make"
  317. to generate the various pathnames that the programs require, the header files 
  318. need to be manually modified when using the graphical build system, and an 
  319. install script is provided.  When using the Perl Configure / nmake system, 
  320. the header files are automatically modified and require no manual editing.
  321. The projects are arranged so that ALL of the usable products, the .exe files,
  322. are written to the win32bin directory.  The win32lib directory is used only 
  323. to build the the files in the win32bin directory.  Once building is 
  324. completed, there is no further use for the files in the win32lib directory.
  325. Debug Information
  326. -----------------
  327. Note that VC++ 6.0 has options for debugging information - the 'Program 
  328. Database'.  This option is set in the Project settings, C/C++ tab, 'General' 
  329. category, and is turned on by default during the conversion of the project 
  330. files. This option is not for use with a library, as it embeds debug 
  331. information into the library that references an external file that will 
  332. not be available to the linking application. If you get an error message 
  333. along the lines of 'debugging information not available in file vc60.pdb, 
  334. make sure the library debug option is set to 'Program Database' or "/Zi".
  335. ***************************************************************************
  336. *
  337. * Microsoft Visual C++ - Configure / nmake - Building
  338. *
  339. ***************************************************************************
  340. There are two ways to build Net-SNMP using the Configure / nmake system.  
  341. The first and easiest method is by running the win32build.bat script.  The
  342. second is manually running Configure and nmake.
  343. Note:  Perl is required to use this method as the Configure script is 
  344.        written in Perl.  ActiveState ActivePerl is available at:
  345.         http://www.activestate.com/Products/ActivePerl/
  346. Win32build.bat script
  347. ======================
  348. The build.bat script is an easy menu driven system that allows you to select
  349. how Net-SNMP should be built, and where it should be installed.  Follow these
  350. steps to build using build.bat:
  351. 1.  Open a command prompt
  352. 2.  Initialize the Visual Studio build environment by running VCVARS32.bat
  353.     which can be found in the bin folder of your Visual Studio install folder.
  354. 3.  Run win32build.bat
  355. 4.  The following screen will appear:
  356.     Net-SNMP build and install options
  357.     ==================================
  358.     
  359.     1.  OpenSSL support:            disabled
  360.     2.  Platform SDK support:       disabled
  361.     
  362.     3.  Install path:               c:/usr
  363.     4.  Install after build:        enabled
  364.     
  365.     5.  Perl modules:               disabled
  366.     6.  Install perl modules:       disabled
  367.     
  368.     7.  Quiet build (logged):       enabled
  369.     8.  Debug mode:                 disabled
  370.     9.  IPv6 transports:            disabled
  371.     
  372.     10. Install development files   disabled
  373.     
  374.     F.  Finished - start build
  375.     Q.  Quit - abort build
  376.     
  377.     Select option to set / toggle: 
  378. 5.  Toggle the options on and off as desired by typing the line number 
  379.     followed by <enter>.  
  380.     To compile with OpenSSL, the OpenSSL library and header files must 
  381.     already be installed.  See the section 'Microsoft Visual C++ - Building 
  382.     with OpenSSL' for details.
  383.     To compile with the Platform SDK, the Platform SDK must already be 
  384.     installed.  See the section 'Installing Platform SDK' for details.
  385.     To use the IPv6 transports, you must be using Windows 98 or later.
  386.     If Quiet mode is enabled, all build activity is stored in various *.out 
  387.     files inside of the win32 folder.
  388.     When you are ready to build, type f <enter>
  389. 6.  Building will begin.  Following is a sample screen shot of a quiet build:
  390.     Building...
  391.     
  392.     Deleting old log files...
  393.     Running Configure...
  394.     Cleaning...
  395.     Building main package...
  396.     Installing main package...
  397.     Running Configure for DLL...
  398.     Cleaning libraries...
  399.     Building DLL libraries...
  400.     Installing DLL libraries...
  401.     Cleaning Perl....
  402.     Building Perl modules...
  403.     Testing Perl modules...
  404.     Installing Perl modules...
  405.     
  406.     See perlmake.out for Perl test results
  407.     
  408.     Done!
  409. 7.  If the folder that Net-SNMP was installed to is ever changed, modify the 
  410.     system environment variables or registry keys as explained in the 
  411.     'Configuration_Overview.html' file located in win32/dist/htmlhelp.
  412. Manual build using Configure / nmake
  413. ====================================
  414. To build using nmake on the command line, the make files need to be generated
  415. first by the Configure script.  Following are sample steps to:
  416.   -enable Platform SDK support
  417.   -enable OpenSSL support
  418.   -enable debug mode
  419.   -build Net-SNMP
  420.   -install to 'c:usr'
  421.   -compile the Perl modules
  422.   -test the Perl modules
  423.   -install the Perl modules
  424. 1.  Open a command prompt
  425. 2.  Initialize the Visual Studio build environment by running VCVARS32.bat
  426.     which can be found in the bin folder of your Visual Studio install folder.
  427. 3.  Type (all on one line):
  428.       perl Configure --with-sdk --with-ssl --config=debug
  429.            --prefix="c:/usr"
  430. 4.  The make files will be generated, and a configuration summary will appear:
  431.     ---------------------------------------------------------
  432.                 Net-SNMP configuration summary:
  433.     ---------------------------------------------------------
  434.     
  435.       Config type:                debug
  436.       SDK:                        enabled
  437.       Link type:                  static
  438.       Prefix / Destdir:           c:/usr
  439.       OpenSSL:                    enabled
  440. 5.  Type:
  441.       nmake clean
  442.       nmake
  443.       nmake install
  444.       perl Configure --with-sdk --with-ssl --config=debug --linktype=dynamic
  445.            --prefix="c:/usr"
  446.       nmake libs_clean
  447.       nmake libs
  448.       nmake install
  449.       nmake perl_clean
  450.       nmake perl
  451.       nmake perl_test
  452.       nmake perl_install
  453. For a complete list of Configure options, run:
  454.   perl Configure --help
  455. For a complete list of possible build targets, after generating the make files
  456. using Configure, run:
  457.   nmake help
  458.       
  459. Note:  The Configure option --linktype=static (or not specifying a linktype)
  460.        will result in libsnmp being compiled and all other components being 
  461.        statically linked to it.
  462.        The Configure option --linktype=dynamic will result in libsnmp_dll 
  463.        (netsnmp.dll) being compiled and all other components being dynamically 
  464.        linked to it.
  465.        Building netsnmp.dll is only supported for compiling libagent, 
  466.        libhelpers, libsnmp_dll, libnetsnmptrapd and netsnmpmibs for use with 
  467.        the Perl module.  Using netsnmp.dll for other components is not 
  468.        supported as the DLL does not prevent corruption of dynamically changing 
  469.        shared data.
  470. ***************************************************************************
  471. *
  472. * Microsoft Visual C++ - Workspace - Building
  473. *
  474. ***************************************************************************
  475. The win32sdk.dsw workspace will build the agent that provides mib-II objects
  476. for network interface layers, and the IP, ICMP, TCP and UDP tables.  This
  477. workspace requires the Platform SDK to be installed.  Use the win32.dsw 
  478. workspace if you don't have or don't need these features.  Note:  Other 
  479. features may be disabled if the Platform SDK is not used.  See the section
  480. 'Installing Platform SDK' for more information.
  481. 1. If SNMPv3 encryption capabilities or SHA authentication is required,
  482.    install the OpenSSL DLL and library file as described in the section 
  483.    'Microsoft Visual C++ - Building with OpenSSL" and then continue with 
  484.    step 2.
  485. 2. The default installation path is c:usr.  This folder will contain all
  486.    the binaries, MIB files, configuration files etc.  To change the location,
  487.    the win32net-snmpnet-snmp-config.h file needs to be modified by changing
  488.    the INSTALL_BASE variable. 
  489.    Note:
  490.   
  491.      All paths in net-snmp-config.h use the "/" UNIX pathname delimiter.
  492.      If a drive letter is not specified, the current drive letter is assumed.
  493.      For example: #define INSTALL_BASE "c:/usr".  
  494. 3. If you are using win32sdk, the Platform SDK must be enabled.  Edit the 
  495.    the win32net-snmpnet-snmp-config.h file and *change*:
  496.         /* #undef HAVE_WIN32_PLATFORM_SDK */
  497.    to:
  498.         #define HAVE_WIN32_PLATFORM_SDK 1
  499. 4. Build the applications
  500.    MS VC++ 6.0:
  501.    ------------
  502.    a. Open win32.dsw or win32sdk.dsw.
  503.    b. Click "Build->Batch Build..."  
  504.    c. Set Release and/or Debug in 'Project configurations' to suit.
  505.    d. Click "ReBuild All".
  506.    e. When building is done, View the Output window, clip and
  507.       save to a text file if there is some information to share.
  508.    f. Click "File->Close Workspace".
  509.    MS VC++ 7.0+:
  510.    -------------
  511.    a.  Open win32.dsw or win32sdk.dsw.
  512.    b.  Click "Yes to All" to convert the workspace
  513.    c.  Click "Build->Configuration Manager" and select either Release or Debug for 
  514.        'Active Solution Configuration' and click "Close"
  515.    d.  Right-click the "libagent" project, and select "Rebuild"
  516.    e.  Right-click the "libhelpers" project, and select "Rebuild"
  517.    f.  Right-click the "libnetsnmptrapd" project, and select "Rebuild"
  518.    g.  Right-click the "snmplib" project, and select "Rebuild"
  519.    h.  Right-click the "netsnmpmibs(sdk)" project, and select "Rebuild"
  520.    i.  Click "Build->Batch Build..." 
  521.    j.  Set Release and/or Debug in 'Project configurations' to suit making
  522.        sure libagent, libhelpers, libnetsnmptrapd, snmplib and netsnmpmibs are 
  523.        NOT selected.
  524.    k.  Click "Rebuild".
  525.    l.  When building is done, View the Output window, clip and
  526.        save to a text file if there is some information to share.
  527.    m.  Click "File->Close Solution".
  528.   
  529. 5.  If the Perl modules are required, continue with the next section:
  530.     'Microsoft Visual C++ - Building the Perl SNMP modules'.
  531.     Otherwise, continue with the section: 
  532.     'Microsoft Visual C++ - Installing'
  533. ***************************************************************************
  534. *
  535. * Microsoft Visual C++ - Workspace - Building the Perl SNMP modules
  536. *
  537. ***************************************************************************
  538. The Perl modules should be compiled against the DLL version of snmplib.
  539. Compiling against a static version is possible, but each module will
  540. load it's own copy of the MIB, and sharing data between modules will
  541. not be possible.  For example, the conf module tests will fail.
  542. 1.  Complete the section 'Microsoft Visual C++ - Building'.  This will build
  543.     the static version of the applications.  
  544.     Note:  SNMPD.EXE and SNMPTRAPD.EXE are required for running the tests 
  545.            against the SNMP Perl module.
  546. 2.  Make a backup of the existing net-snmp-config.h which contains settings
  547.     for a static build of Net-SNMP:
  548.     Copy win32net-snmpnet-snmp-config.h to 
  549.     win32net-snmpstatic-config.h.
  550. 3.  Open win32net-snmpnet-snmp-config.h using a text editor.
  551. 4.  *Change* the following line which is located near the top of the file:
  552.         /* #undef NETSNMP_USE_DLL */
  553.     *to*
  554.         #define NETSNMP_USE_DLL 1
  555. 5.  Make a backup of the new net-snmp-config.h which contains settings
  556.     for a DLL build of Net-SNMP:
  557.     Copy win32net-snmpnet-snmp-config.h to 
  558.     win32net-snmpdll-config.h.
  559. 6. Build the DLL
  560.    MS VC++ 6.0:
  561.    ------------
  562.    a. Open libsdll.dsw.
  563.    b. Click "Build->Batch Build..."  
  564.    c. Set Release and/or Debug in 'Project configurations' to suit.
  565.    d. Click "Clean".  ** Do NOT skip this step. **
  566.    e. Click "Build->Batch Build..."  
  567.    f. Click "ReBuild All".
  568.    g. When building is done, View the Output window, clip and
  569.       save to a text file if there is some information to share.
  570.    h. Click "File->Close Workspace".
  571.    MS VC++ 7.0+:
  572.    -------------
  573.    a. Open libsdll.dsw.
  574.    b. Click "Yes to All" to convert the workspace
  575.    c. Click "Build->Batch Build..." 
  576.    d. Set Release and/or Debug in 'Project configurations' to suit.
  577.    e. Click "Clean".  ** Do NOT skip this step. **
  578.    f. Click "Build->Batch Build..." 
  579.    g. Click "Rebuild".
  580.    h. When building is done, View the Output window, clip and
  581.       save to a text file if there is some information to share.
  582.    i. Click "File->Close Solution".
  583. 7.  Install Net-SNMP as described in the 'Microsoft Visual C++ - Installing'
  584.     section to install the applications, the DLL and the .lib files.
  585. 8.  Continue with the Win32 section of the Perl README file located in 
  586.     perlSNMPREADME.
  587. ***************************************************************************
  588. *
  589. * Microsoft Visual C++ - Workspace - Installing
  590. *
  591. ***************************************************************************
  592. The install script "win32install-net-snmp.bat" should be run after a
  593. build is successful.  It copies the programs, MIB files, and development
  594. components to an install directory named in the INSTALL_BASE variable.
  595. 1.  Complete the section 'Microsoft Visual C++ - Building'. 
  596. 2.  Open win32install-net-snmp.bat using a text editor.
  597.     The INSTALL_BASE variable must match the INSTALL_BASE compile constant
  598.     defined in "win32net-snmpnet-snmp-config.h", using these rules:
  599.     a.  All paths in install-net-snmp.bat use the "" DOS pathname delimiter.
  600.         Example: set INSTALL_BASE="c:usr".  
  601.     b.  All paths in net-snmp-config.h use the "/" UNIX pathname delimiter.
  602.         If a drive letter is not specified, the current drive letter is 
  603.         assumed.
  604.         Example: #define INSTALL_BASE "c:/usr".  
  605.     Note: You may also modify "install-net-snmp.bat" in order to not install 
  606.           the linking libraries, or the header files.
  607. 3.  Open a command prompt window.
  608. 4.  Cd to the base directory where this file README.win32 is located.
  609. 5.  Run win32install-net-snmp.bat to install the programs.
  610.     ## sample output from install-net-snmp.bat
  611.     
  612.     NOTE: Directory already exist messages are normal. If you are
  613.           not building with OpenSSL, then DLL not found messages
  614.           are normal.
  615.     
  616.     C:net-snmp-5.1.1>    win32install-net-snmp
  617.     Remember to run this script from the base of the source directory.
  618.     Creating "c:usr" sub-directories
  619.     A subdirectory or file c:usr already exists.
  620.     A subdirectory or file c:usrbin already exists.
  621.     A subdirectory or file c:usretcsnmp already exists.
  622.     A subdirectory or file c:usrsharesnmpsnmpconf-data
  623.          already exists
  624.     A subdirectory or file c:usrsharesnmpsnmpconf-data
  625.          snmp-data already exists.
  626.     A subdirectory or file c:usrsharesnmpsnmpconf-data
  627.          snmpd-data already exists.
  628.     A subdirectory or file c:usrsharesnmpsnmpconf-data
  629.          snmptrapd-data already exists.
  630.     A subdirectory or file c:usrlib already exists.
  631.     A subdirectory or file c:usrmibs already exists.
  632.     A subdirectory or file c:usrinclude already exists.
  633.     A subdirectory or file c:usrincludenet-snmp already 
  634.          exists
  635.     .
  636.     A subdirectory or file c:usrincludeucd-snmp already 
  637.          exists
  638.     .
  639.     Copying MIB files to "c:usr"mibs
  640.     Copying compiled programs to "c:usr"bin
  641.     Copying snmpconf files to "c:usr"sharesnmpsnmpconf-
  642.          datasnmp-data
  643.     Copying link libraries to "c:usr"lib
  644.     Copying header files to "c:usr"include
  645.     Deleting debugging files from "c:usr"
  646.     Copying DLL files to "c:usr"
  647.     The system cannot find the file specified.
  648.     Done copying files to "c:usr"
  649.     C:net-snmp-5.1.1>
  650.     
  651.     ## END sample output from install-net-snmp.bat
  652. 6.  Add the bin folder (c:usrbin in the above example) to
  653.     your system path.
  654. 7.  Test the installation.  For a simple test to see if Net-SNMP is working, 
  655.     open a _new_ command prompt window, and type:
  656.     snmptranslate -IR -Td linkDown
  657. 8.  If the folder that Net-SNMP was installed to is ever changed, modify the 
  658.     system environment variables or registry keys as explained in the 
  659.     'Configuration_Overview.html' file located in win32/dist/htmlhelp.
  660. ***************************************************************************
  661. *
  662. * Microsoft Visual C++ - Building with OpenSSL
  663. *
  664. ***************************************************************************
  665. OpenSSL is required to support the encryption capabilities in SNMPv3
  666. (or SHA authentication).  The win32 version of OpenSSL can be built
  667. from the sources or you can download a pre-compiled version.
  668. Building from source:
  669. =====================
  670.  1. Install an assembler.  If you do not have the M$ assembler installed (MASM)
  671.     you can get a free one(NASM) from:
  672. http://www.kernel.org/pub/software/devel/nasm
  673.  2. Obtain the OpenSSL source from the link below. Follow instructions in 
  674.     INSTALL.W32
  675. ftp://ftp.openssl.org/source/
  676.  3. Once the OpenSSL libraries are built, you must copy them to the the MSVC 
  677.     directory:
  678.     a.  Copy folder inc32openssl to the include folder of MSVC++
  679.         Example: "C:Program FilesMicrosoft Visual Studio .NET 2003
  680.                   Vc7includeopenssl*.h"
  681.         Example: "C:Program FilesMicrosoft Visual Studio
  682.                   VC98includeopenssl*.h"
  683.     b.  Copy file out32dlllibeay32.lib to the lib folder of MSVC++
  684.         Example: "C:Program FilesMicrosoft Visual Studio .NET 2003
  685.                   Vc7liblibeay32.lib"
  686.         Example: "C:Program FilesMicrosoft Visual Studio
  687.                   VC98liblibeay32.lib"
  688.     c.  Copy file out32dlllibeay32.dll to your %windir%system32 folder
  689.         Example: "C:winntsystem32libeay32.dll"
  690. Using a pre-compiled version
  691. ============================
  692.  1. Obtain the latest OpenSSL binary from the link below. 
  693. http://www.slproweb.com/products/Win32OpenSSL.html
  694.  2. Install the package to c:OpenSSL.
  695.  3. Copy the header and library files to the the MSVC directory:
  696.     a.  Copy folder c:OpenSSLincludeopenssl to the include folder of 
  697.         MSVC++.
  698.         Example: "C:Program FilesMicrosoft Visual Studio .NET 2003
  699.                   Vc7includeopenssl*.h"
  700.         Example: "C:Program FilesMicrosoft Visual Studio
  701.                   VC98includeopenssl*.h"
  702.     b.  Copy file c:OpenSSLlibVClibeay32.lib to the lib folder of MSVC++.
  703.         Example: "C:Program FilesMicrosoft Visual Studio .NET 2003
  704.                   Vc7liblibeay32.lib"
  705.         Example: "C:Program FilesMicrosoft Visual Studio
  706.                   VC98liblibeay32.lib"
  707. Project changes
  708. ===============
  709.  1. Edit the win32net-snmpnet-snmp-config.h header file.  Add:
  710. #define USE_OPENSSL 1
  711.  2. Open Visual Studio, add the link line to the Project Settings
  712.     for all the applications, and especially for the libsnmp_dll project,
  713.     for as you know, a .DLL is an application.
  714.     You MUST do this for libsdll.dsw, and either win32.dsw or win32sdk.dsw,
  715.     whichever you use.
  716.    MS VC++ 6.0:
  717.    ------------
  718.    a.  Click Project->Settings.  
  719.    b.  Highlight the names of all projects except libsnmp, libagent, libhelpers,
  720.        libnetsnmptrapd, netsnmpmibs, netsnmpmibssdk.
  721.    c.  Select the Link section.
  722.    d.  Add the next line to the 'Object/Library Modules' list for Debug and 
  723.        Release versions:
  724.          libeay32.lib 
  725.    MS VC++ 7.0+:
  726.    -------------
  727.    a.  For each project (except libsnmp, libagent, libhelpers, libnetsnmptrapd,
  728.        netsnmpmibs, netsnmpmibssdk), click Project->Properties. 
  729.    b.  For Configuration, select 'Release'
  730.    c.  Click Linker and then Input
  731.    d.  Add to the 'Additional Dependencies' section:
  732.          libeay32.lib 
  733.    e.  For Configuration, select 'Debug'
  734.    f.  Click Linker and then Input
  735.    g.  Add to the 'Additional Dependencies' section:
  736.          libeay32.lib 
  737.  3. Continue with the section 'Microsoft Visual C++ - Building"
  738. ***************************************************************************
  739. *
  740. * Microsoft Visual C++ - Building with IPv6
  741. *
  742. ***************************************************************************
  743. The default build configuration supports SNMP over IPv4-based transports.
  744. However, Windows XP and Windows 2000 include an IPv6-capable stack, which
  745. can be used to provide SNMP over IPv6.   This requires the following
  746. changes to the Net-SNMP win32 Visual C++ configuration:
  747. Project changes
  748. ===============
  749.  1. Edit the win32net-snmpnet-snmp-config.h header file.  Change
  750.     the single INET6 line from:
  751.         /* #undef INET6 */
  752.     to:
  753.         #define INET6 1
  754.  2. Edit the win32libsnmp_dlllibsnmp.def file.  All the IPv6 functions will
  755.     be commented out and will need to be enabled by removing ';IPv6' from the
  756.     beginning of each line.  
  757.     For example, change:
  758.         ;IPv6        netsnmp_udp6_parse_security
  759.     to:
  760.                 netsnmp_udp6_parse_security
  761.  3. Continue with the section 'Microsoft Visual C++ - Building"
  762. ***************************************************************************
  763. *
  764. * Microsoft Visual C++ - Building your own applications with snmplib
  765. *
  766. ***************************************************************************
  767. Linking in an snmplib built to use the Multithreaded DLL runtime library to 
  768. an application configured for the Debug Multithreaded DLL runtime library 
  769. results in a link error along the lines of 'defaultlib "MSVCRT" conflicts 
  770. with use of other libs'.   If you receive a similar message, check that the
  771. projects settings between library and application match up.
  772. To successfully build your existing project with Net-SNMP libraries,
  773. change the project settings FOR YOUR APPLICATION ONLY as follows:
  774.    1. In the Link section, Select "Additional Libraries".
  775.       Add netsnmp.lib for Release version.
  776.       Add netsnmp_d.lib for Debug version.
  777.    2. Remove all references to these libraries:
  778.       libsnmp*.lib msvcrt*.lib libc*.lib oldnames.lib
  779.    3. In the C++ section, Select "Code Generation".
  780.       For Release, select /MD or "MultiThreaded DLL".
  781.       For Debug, select /MDd or "Debug MultiThreaded DLL".
  782.    4. Make sure "Ignore all default libraries" is NOT SET.
  783.    5. Make sure "_MBCS" is included in your pre-processor defines.
  784. Note: Some users may have better results compiling other packages that use
  785.       the installed header files by removing the "mode_t" definition from
  786.       net-snmp-config.h file in the installed directories.
  787. ***************************************************************************
  788. *
  789. * Microsoft Visual C++ - Extending the Agent
  790. *
  791. ***************************************************************************
  792. Assuming that the MIB compiler generated the my.h and my.c files for the
  793. custom MIB "my", the following changes are required to extend the agent
  794. using VC++:
  795.    - Add the my.h and my.c files to your 'netsnmpmibs' project in VC++.
  796.    - Next edit the '<sourcedir>win32mib_module_includes.h' file to
  797.      add an include to your .h file.
  798.         #include "mibgroup/my.h"
  799.    - Next edit the '<sourcedir>win32mib_module_inits.h' file to add
  800.      code to call your initialize function.
  801.         if (should_init("my")) init_my();
  802. That's all that is needed. Now go ahead and compile the 'netsnmpmibs'
  803. and 'snmpd' project. And things should work just fine.
  804. ***************************************************************************
  805. *
  806. * GCC on Windows
  807. *
  808. ***************************************************************************
  809. There are two versions of GCC (the GNU Compiler Collection) in common use on
  810. Microsoft Windows operating systems. This section will attempt to point the 
  811. user to the information required to choose the one to best suit their needs.
  812. Cygwin
  813. The Cygwin compiler and toolkit provides a Unix style shell and environment
  814. for Windows based systems. The cygwin1.dll provides a POSIX emulation layer 
  815. that simplifies porting Unix / Linux applications to Windows. The Cygwin dlls
  816. are required if an application is to be distributed. The dependency on the 
  817. Cygwin dlls can be eliminated with the --mno-cygwin compiler flag, which uses
  818. MinGW to compile a native Windows binary, but the benefit of the POSIX emulation
  819. is lost. The Cygwin tool chain and documentation can be found at:
  820. http://sources.redhat.com/cygwin/
  821. MinGW
  822. The MinGW compiler is a Windows native version of gcc. The tool chain links 
  823. against existing Windows dlls found on most systems. Binaries compiled with MinGW
  824. do not require additional libraries to be distributed. The MSyS environment 
  825. provides a shell (Bash) and tools to emulate a Unix style build environment on 
  826. Windows. The MinGW and MSyS tools and documentation can be found at:
  827. http://www.mingw.org
  828. ***************************************************************************
  829. *
  830. * Cygwin - Building
  831. *
  832. ***************************************************************************
  833. An alternate way to build Net-SNMP for win32 is to use Cygnus's cygwin32
  834. environment.  Information on the Cygnus cygwin32 environment is available
  835. on the web at: http://sources.redhat.com/cygwin/.
  836. Cygwin allows you to compile almost the complete agent and applications.
  837. The following configure options creates a working set of programs:
  838. ./configure 
  839. --with-mib-modules="host agentx disman/event-mib examples/example" 
  840. --with-out-mib-modules=host/hr_network --with-libs="-lws2_32" 
  841. If you want to use SNMPv3 auth and privacy features, add:
  842. --with-openssl="/usr" 
  843. If you want to use IPv6 transports, add:
  844. --enable-ipv6 --with-transports="TCPIPv6 UDPIPv6"
  845. Note:  The source code should *not* be in a folder that contains a space.  For
  846.        example, compiling in your 'My Documents' or your Desktop (usually
  847.        c:Documents and SettingsxxxxDesktop) is not supported.
  848.         
  849. This has been tested for Windows 98 and Windows NT 4.0.  In order for
  850. the process part of the host resources MIB to work under NT you will need
  851. to get hold of the PSAPI.DLL. This available under the download section
  852. of www.microsoft.com.  The DLL is included with Windows 2000 and XP,
  853. and is also part of the VC++ distribution.  The IPHLPAPI library is
  854. part of the "Microsoft Platform SDK", which is also available from
  855. www.microsoft.com.  See the section "Installing Platform SDK" for details.
  856. Earlier releases of Cygwin may need to use the configure flag
  857. --with-libs="-lregex -libphlpapi"
  858. but this regular expression support has since been incorporated
  859. into the main Cygwin package, and it is no longer necessary to
  860. include it separately.
  861. If the folder that Net-SNMP was installed to is ever changed, modify the 
  862. system environment variables or registry keys as explained in the 
  863. 'Configuration_Overview.html' file located in win32/dist/htmlhelp.
  864. ***************************************************************************
  865. *
  866. * MinGW - Building
  867. *
  868. ***************************************************************************
  869. Currently the tools and agent will compile on win32 platforms using the
  870. MinGW tools with the MSyS environment. MinGW, MSyS and the associated
  871. documentation can be downloaded from: http://www.mingw.org.
  872. Compiling net-snmp with MinGW requires GNU regex. A GNU regex package that
  873. builds under MinGW with MSyS is available at: 
  874.         http://www.boedog.com/net-snmp/gnu_regex/regex-0-12-mingw-r2.tar.gz
  875. Note:  The source code should *not* be in a folder that contains a space.  For
  876.        example, compiling in your 'My Documents' or your Desktop (usually
  877.        c:Documents and SettingsxxxxDesktop) is not supported.
  878.        
  879. 1.  Build and install GNU regex following the instructions in the 
  880.     regex-0-12-mingw-r2 README.
  881. 2.  If SNMPv3 encryption capabilities or SHA authentication is required,
  882.     install the OpenSSL DLL and library file as described in the section 
  883.     'MinGW - Building with OpenSSL" and then continue with step 3.
  884. 3.  Determine where you want the programs to be installed.  Currently
  885.     you must use path segments no longer than 8 characters, and no
  886.     embedded spaces are allowed. Due to limitations with Makefiles,
  887.     you must also specify the MIBDIRS default that corresponds to
  888.     a particular subtree from the base directory.
  889.     Note: All paths use the "/" UNIX pathname delimiter.
  890.           Also note that embedded spaces will NOT currently work
  891.           with MinGW configure. Use the DOS 8.3 form of the path,
  892.     For example:  Say that you want to install the programs in
  893.     the directory "C:usr".  
  894.     Use BASEDIR=c:/usr
  895. 4.  Configure net-snmp using the configure flags as shown:
  896. BASEDIR=c:/usr
  897. ./configure --prefix="$BASEDIR" 
  898. --with-mibdirs="$BASEDIR/share/snmp/mibs" 
  899. --with-mib-modules="agentx disman/event-mib examples/example" 
  900.     [Sorry. the host resources MIB is not supported by MinGW]
  901. 4.1. If you want to use IPv6 transports, add:
  902. --enable-ipv6 --with-transports="TCPIPv6 UDPIPv6" 
  903. 5.  Type "make" to compile the package. 
  904. 6.  Type "make install" to install the package.
  905. 7.  If the folder that Net-SNMP was installed to is ever changed, modify the 
  906.     system environment variables or registry keys as explained in the 
  907.     'Configuration_Overview.html' file located in win32/dist/htmlhelp.
  908.        
  909. ***************************************************************************
  910. *
  911. * MinGW - Building with OpenSSL
  912. *
  913. ***************************************************************************
  914. OpenSSL is required to support the encryption capabilities in SNMPv3
  915. (or SHA authentication).  A pre-compiled MinGW compatible version of
  916. OpenSSL is available on the Internet.
  917. Follow these steps to install OpenSSL:
  918.  1. Obtain the latest OpenSSL binary from the link below. 
  919. http://www.slproweb.com/products/Win32OpenSSL.html
  920.  2. Install the package to c:OpenSSL
  921.  3. Copy the header and library files to the the MinGW directory:
  922.     a.  Copy the c:OpenSSLincludeopenssl folder to the include folder in 
  923.         MinGW.
  924.         Example: "C:MinGWincludeopenssl*.h"
  925.     b.  Copy c:OpenSSLlibMinGWlibeay32.* to the lib folder in Mingw.
  926.         Example: "C:MinGWliblibeay32.a"
  927.         Example: "C:MinGWliblibeay32.def"
  928.  4. Continue with the section 'MinGW - Building"
  929. ***************************************************************************
  930. *
  931. * Configuring Net-SNMP
  932. *
  933. ***************************************************************************
  934. Online documentation is available from the Net-SNMP home page at:
  935. http://www.net-snmp.org/docs/
  936. All configuration files should be placed in the INSTALL_BASEetcsnmp folder.
  937. The INSTALL_BASE folder is defined in the win32net-snmpnet-snmp-config.h
  938. file.  For example, c:usretcsnmp.
  939. Included is a Perl script called snmpconf which can be used to create 
  940. configuration files.  Full documentation on using snmpconf is available from the
  941. Net-SNMP web site at the above link.
  942. To run snmpconf, first modify snmpconf.bat located in the bin folder where 
  943. Net-SNMP is installed.  Modify the set MYPERLPROGRAM= line to contain the full 
  944. path to the snmpconf Perl script.  For example:
  945.   set MYPERLPROGRAM=c:usrbinsnmpconf
  946. You can now run snmpconf using the standard command line such as:
  947.   snmpconf -i
  948. For detailed information on using environment variables and the registry to 
  949. configure Net-SNMP, see the 'Configuration_Overview.html' file in 
  950. win32/dist/htmlhelp.
  951. ***************************************************************************
  952. *
  953. * How to Register the Net-SNMP Agent and Trap Daemon as Windows services
  954. *
  955. ***************************************************************************
  956. The Agent (snmpd.exe) and trap daemon (snmptrapd.exe) can be run as a service
  957. under Windows operating systems that have the Service Control Manager (SCM)
  958. (Services Control Panel).  This includes Windows NT, 2000, XP and 2003.  
  959. Windows 9x/Me do not have the SCM.
  960. To allow snmpd.exe or snmptrapd.exe to run as a service, the programs need
  961. to be registered with the SCM.  This is done by running the program once with
  962. the -register command line switch from a command prompt.
  963. The synopsis for registering snmpd as a Windows service is:
  964.   snmpd -register [OPTIONS] [LISTENING ADDRESSES]
  965. The synopsis for registering snmptrapd as a Windows service is:
  966.   snmptrapd -register [OPTIONS] [LISTENING ADDRESSES]
  967. After registration, the services 'Net-SNMP Agent' and 'Net-SNMP Trap Handler'
  968. will be available in the SCM.  The services can be started and stopped using 
  969. the SCM (Services Control Panel) or from the command prompt using:
  970.  net start "Net-SNMP Agent"
  971.  net start "Net-SNMP Trap Handler"
  972. and
  973.  net stop "Net-SNMP Agent"
  974.  net stop "Net-SNMP Trap Handler"
  975. If any command line options are specified after the -register option, they 
  976. will be included when the service starts.  For example, to register the
  977. snmptrapd daemon and enable logging of traps to c:usrlogsnmptrapd.log, 
  978. enter the following command line:
  979.  snmptrapd -register -Lf c:/usr/log/snmptrapd.log
  980. Note:  Use Unix style slashes (/) for all paths.
  981. For a complete list of command line options, consult the man pages, or use 
  982. the -h switch:
  983.  snmpd -h
  984.  snmptrapd -h
  985. Notes: -H will display all available snmpd.conf, snmptrapd.conf and snmp.conf
  986.        configuration file options, not the command line options.
  987.        Like all Net-SNMP applications, snmpd and snmptrapd will use the 
  988.        SNMPCONFPATH and SNMPSHAREPATH environment variables when run as a 
  989.        service.  The registry is the recommended method for defining these 
  990.        variables due to a limitation in the Windows Service Control Manager 
  991.        (SCM).  When running as a service, if any system environment variables
  992.        are changed, the system will need to be rebooted to allow the services 
  993.        to access the changed environment variables (see Microsoft knowledge 
  994.        base article  821761).  Therefore, when running snmpd or snmptrapd as 
  995.        a service, if SNMPCONFPATH or SNMPSHAREPATH is changed, a reboot will 
  996.        be required after setting the environment variables, otherwise the 
  997.        services may fail to start.  Using the registry to store the environment 
  998.        variables eliminates this problem.  See the 'Configuration_Overview.html'
  999.        file in win32/dist/htmlhelp for more information on using the registry.
  1000.     
  1001. Unregistering the services
  1002. --------------------------
  1003. To un-register the services, use the command line switch -unregister.  For
  1004. example:
  1005.  snmpd -unregister
  1006.  snmptrapd -unregister
  1007. Note:  Be sure to have all Service Control Panel windows closed when 
  1008.        unregistering, otherwise a reboot may be required to complete
  1009.        the removal.
  1010. Modifying the services
  1011. ----------------------
  1012. To change the parameters that the SCM passes to snmpd or snmptrapd, the 
  1013. service must be unregistered, and then re-registered with the new options.
  1014. For example, to change the parameters that SCM passes to snmpd, open a 
  1015. command prompt window, CD to the directory where the snmpd program is located
  1016. (unless it is already in your PATH), identify the full set of parameters you 
  1017. desire, then type these two commands:
  1018.  snmpd -unregister
  1019.  snmpd -register [OPTIONS] [LISTENING ADDRESSES]
  1020. Note:  Be sure to have all Service Control Panel windows closed when 
  1021.        unregistering, otherwise a reboot may be required to complete
  1022.        the removal.
  1023. Registry Information
  1024. --------------------
  1025. Warning:  Improper use of the registry editor can damage to your operating
  1026.           system and should only be used by experienced users.
  1027. The following registry keys are used by snmpd and snmptrapd:
  1028. HKLMSYSTEMCurrentControlSetServicesNet-SNMP Agent
  1029. HKLMSYSTEMCurrentControlSetServicesNet-SNMP Trap Handler
  1030.        
  1031. Each command line option specified when regsitering the service will be added 
  1032. to the Parameters registry subkey for the service as a ParamX REG_SZ value 
  1033. where X starts at 1 and increments for each additional command line option.  
  1034. For example, '-Lf c:/usr/log/snmptrapd.log' would be:
  1035.  HKLMSYSTEMCurrentControlSetServices
  1036.    Net-SNMP Trap HandlerParametersParam1 -Lf
  1037.  HKLMSYSTEMCurrentControlSetServices
  1038.    Net-SNMP Trap HandlerParametersParam2 c:/usr/log/snmptrapd.log
  1039. To add additional command line switches or modify the existing ones, it is
  1040. recommended to unregister and re-register the services with the new command 
  1041. line options.  It is also possible to directly add or modify the ParamX values
  1042. in the registry.
  1043. Note:  The Parameters key is only created when there is at least one command
  1044.        line option specified when registering the service so it may need to be
  1045.        manually added if modifying using the registry editor.
  1046. ***************************************************************************
  1047. *
  1048. * Notes on SET support for WIN32 ports
  1049. *
  1050. ***************************************************************************
  1051. Requirements:
  1052.   Windows NT/2000/XP or later: Requires Windows NT 4.0 SP4 or later. 
  1053.   Windows 95/98/Me: Requires Windows 98 or later. 
  1054. Windows support for SET on following groups:
  1055. interfaces:
  1056. ----------
  1057. ifAdminStatus is read-write. Status can be set with either 'up' or
  1058. 'down'. (IE, 'testing' status is not supported.)
  1059. ip group:
  1060. --------
  1061. Scalar objects: 
  1062. ipForwarding:Currently windows supports only ON->OFF (IE,
  1063. enable->disable). For any other value, it returns with failure.
  1064. ipDefaultTTL: Supports value greater than or equal to 0. 
  1065. Table objects:
  1066. -------------
  1067. 1. ipRouteTable:
  1068.    ------------
  1069. route_write.c implements this.
  1070. ipRouteDest: Setting this value, updates row with new ipRouteDest and all other
  1071.              entries will be same as old row. 
  1072.     EX:
  1073.     Consider there is an entry with ipRouteDest = 10.0.0.20
  1074.     Request, snmpset localhost private ip.ipRouteTable.ipRouteEntry.ipRouteDest.10.0.0.20 -a 10.0.0.16
  1075.     Updates that row with ipRouteDest = 10.0.0.16
  1076. ipRouteIfIndex:Write supported.
  1077. ipRouteMetric1: Supports value greater than or equal to -1
  1078. ipRouteMetric2, ipRouteMetric3, ipRouteMetric4, ipRouteMetric5: Even though
  1079. call returns with success, Windows doesn't change these (as
  1080. these are not used in Windows)
  1081. ipRouteNextHop: Write supported.
  1082. ipRouteType: Write Supported. If value is 2, IE 'invalid', it deletes the entry.
  1083. ipRouteAge: Whenever any row is updated this will be automatically reset.
  1084. ipRouteMask: Write Supported.
  1085. Creation of ipRouteTable row:
  1086. -----------------------------
  1087. snmpset request for non existent OID with ipRouteIfIndex, ipRouteMetric1, 
  1088. ipRouteNextHop and ipRouteMask varbinds, creates a row.
  1089. snmpset with create option is not supported, as row creation requires 
  1090. ipRouteIfIndex, ipRouteMetric1, ipRouteNextHop and ipRouteMask  in a single 
  1091. request.
  1092. Example to create a row:
  1093. -----------------------
  1094. Consider there is no entry for 10.0.0.18
  1095. snmpset localhost private ip.ipRouteTable.ipRouteEntry.ipRouteIfIndex.10.0.0.18 i 2 4.21.1.ipRouteMask.10.0.0.18 a 255.255.255.255 4.21.1.ipRouteNextHop.10.0.0.0 a 10.0.0.0 4.21.1.ipRouteMetric1.10.0.0.18 i 1
  1096. If ipRouteIfIndex is valid then creates row with:
  1097. ipRouteIfIndex = 2
  1098. ipRouteMask = 255.255.255.255
  1099. ipRouteNextHop = 10.0.0.0
  1100. ipRouteMetric1 = 1
  1101. 2. ipNetToMediaTable:
  1102. --------------------
  1103. ipNetToMediaIfIndex: write supported
  1104. ipNetToMediaPhysAddress: write supported
  1105. ipNetToMediaNetAddress: write supported
  1106. ipNetToMediaType: write supported, setting with value 2, deletes the row.
  1107. Creation of row:
  1108. --------------------
  1109. snmpset request for non existent OID with ipNetToMediaPhysAddress varbind
  1110. creates a row.
  1111. snmpset with create option is not supported, as row creation requires 
  1112. ipNetToMediaPhysAddress in a request 
  1113. request.
  1114. Example to create a row:
  1115. -----------------------
  1116. Consider there is no entry for 10.0.0.32
  1117. snmpset localhost private ip.ipNetToMediaTable.ipNetToMediaEntry.ipNetToMediaPhysAddress.2.10.0.0.32 x efcd12130103
  1118. If ipNetToMediaIfIndex is valid then creates row with:
  1119. ipNetToMediaIfIndex = 2
  1120. ipNetToMediaPhysAddress = ef:cd:12:12:01:03
  1121. ipNetToMediaNetAddress = 10.0.0.32
  1122. ipNetToMediaType = 4
  1123. TCP:
  1124. ---
  1125. tcpConnState of tcpConnTable is writable and the only value which may
  1126. be set by a management station is deleteTCB(12)
  1127. ***************************************************************************
  1128. *
  1129. * Notes on preprocessor defines for MSVC, MinGW and Cygwin
  1130. *
  1131. ***************************************************************************
  1132. When adding Windows specific code, one or more of the following defines should
  1133. be used:
  1134. Define:                  Description:
  1135. -------                  ------------
  1136. WIN32                    Defined by MSVC & MinGW
  1137. _MSC_VER                 Defined by MSVC only (standard MSVC macro)
  1138. mingw32                  Defined by MinGW only
  1139. cygwin                   Defined by Cygwin only
  1140. HAVE_WIN32_PLATFORM_SDK  Should be defined if the Microsoft Platform SDK is
  1141.                          installed and registered with MSVC or enabled for
  1142.                          MinGW or Cygwin
  1143. MinGW and Cygwin do not require the Microsoft Platform SDK as they both should
  1144. contain most if not all of the functionality provided by the SDK.  When adding
  1145. code that requires the PSDK under MSVC, the following can usually be used:
  1146.  #if defined (HAVE_WIN32_PLATFORM_SDK) || defined (mingw32) || defined (cygwin)
  1147.                          
  1148. As listed above, Cygwin does NOT define WIN32.  When adding generic Windows 
  1149. code that will work with MSVC, MinGW and Cygwin, the following should be used:
  1150.  #if defined (WIN32) || defined (cygwin)
  1151.   
  1152. ***************************************************************************
  1153. *
  1154. * Acknowledgements
  1155. *
  1156. ***************************************************************************
  1157. These people are known to have contributed to one or more of
  1158. the Win32 platform ports.  If you have, and your name is not here,
  1159. please accept our apologies, and tell us so we can add your name.
  1160. David Perkins, Joe Marzot, Wes Hardaker, Niels Baggesen, Dave Shield,
  1161. Robert Story, Suvrit Sra, Mike Slifcak, Latha Prabhu, Nikolai Devereaux,
  1162. Alex Burger, Bernhard Penz, and Andy Smith.