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

SNMP编程

开发平台:

Unix_Linux

  1. Some notes for the HP-UX 11.0/11i port
  2. ======================================
  3. 1. Additional libraries needed for linking
  4. ------------------------------------------
  5. Due to the changes I've made to the net-snmp sources it is necessary to link
  6. the snmp daemon with the libnm library. For doing so you have to pass the
  7. following option to configure:
  8. --with-libs=-lnm
  9. You might check in agent/Makefile that the library -lnm has been added to
  10. the LIBS macro (it should stand at the end of this macro).
  11. 2. Starting the net-snmp daemon via rc script
  12. ---------------------------------------------
  13. When starting the net-snmp daemon via rc script you have to trap some signals
  14. because otherwise the daemon will die the moment the rc script ends. I trap
  15. the signals 1, 2 and 3 via "trap '' 1 2 3" immediately before starting the
  16. daemon. I didn't check whether all these signals need to be trapped, probably
  17. SIGHUP will suffice. BTW this applies to the HP-UX 10.x version as well. It
  18. would be a good idea to ignore or handle these signals in the daemon...
  19. 3. Author, credits, comments
  20. ----------------------------
  21. The HP-UX 11.0 port was done by Johannes Schmidt-Fischer <jsf@InterFace-AG.com>
  22. If you have questions or problems please feel free to contact me via the
  23. above mentioned e-mail address. Please send a copy of your e-mail to the 
  24. net-snmp-coders mailing list - probably someone else can answer your
  25. question earlier than me;-)