ChinaUnix.net
相关文章推荐:

netsnmp 学习笔记

Some Links/Documents/Books of Snmp/netsnmp... netsnmp site: http://www.net-snmp.com/ SoureForge download link: http://sourceforge.net/project/showfiles.php?group_id=12694 Mail List/Group: http://sourceforge.net/mail/?group_id=12694 http://groups.google.com/group/mailing.unix.net-snmp-coders/ Other useful links: http://www.snmpweb.org/ http://www.snmplink.org/ http://www.mibdepot.com/ Books: OReill...

by tooj - 网络技术文档中心 - 2005-09-16 08:35:22 阅读(910) 回复(0)

相关讨论

我已经搜过论坛了,几乎找不到可以参考的资料。 我尝试用 netsnmp::agent 模块来收集一些 lvs 的信息。然后让 cacti 通过 snmp 抓取。 按照 man snmpd.conf , 以及 netsnmp::agent 的资料 我做了最简单的尝试。 创建一个 perl 脚本: use Data::Dumper; use netsnmp::agent (':all'); use netsnmp::ASN qw(ASN_OCTET_STR); sub myroutine { print "abcd\n"; } $agent->register('mylink', '.1.3.6.1.4.1.8225.4712', \&myrout...

by latteye - Perl - 2008-12-08 12:08:04 阅读(6454) 回复(23)

网上相关的文章太少,我把我东拼西凑的代码贴出来,供查阅。此函数已在solaris上测试,用的是netsnmp编译生成的库 int send_trap(char* TrapDescription) { oid SAN_trap_oid[] = { 1,3,6,1,4,1,19991,2,1,1,1}; int TrapType = SNMP_TRAP_ENTERPRISESPECIFIC; netsnmp_session session; snmp_sess_init(&session); netsnmp_ds_set_int(netsnmp_DS_LIBRARY_ID, netsnmp_DS_LIB_DEFAULT_PORT, SNMP_TRAP...

by hust_mylong - 网络技术 - 2012-02-20 13:04:43 阅读(3754) 回复(1)

Dear sirs: I have downloaded the netsnmp installation package from your website: http://aixpdslib.seas.ucla.edu/packages/net-snmp.html Our AIX version is 5.2 and with default snmp. it works fine. I have downloaded the correspond package(both source and binary) and install to my AIX5.2 system. It is success with no error. But when I stop the AIX default snmp and try to start the netsnmp. I get ...

by tooj - AIX - 2005-09-08 10:57:03 阅读(1265) 回复(1)

大蟹们,好呀 最近工作可顺利呀! 小弟就不太好了 最近刚刚开始接触solairs 下载了一个netsnmp.tar for solairs (SUN-FIRE480),tar完后不知道 /data/netsnmp/etc下的snmpd.conf应该怎么设置;solairs主机里又应该改 那些东西,小弟请教(或那里有详细的配置文档呀)

by whitecup_1979 - Solaris - 2005-03-26 15:57:31 阅读(1103) 回复(4)

小弟最近在solaris9 上面准备安装netsnmp,因为s9自带的snmpagent用起来不太方便 但是我按照网上的一个安装教程进行安装,先安装 gcc_small-3.3.2-sol9-sparc-local.gz openssl-0.9.7d-sol9-sparc-local.gz 后,然后安装 netsnmp-5.1.1-sol9-sparc-local.gz 随后停掉s9自带的snmp cd /etc/rc3.d ./S76snmpdx stop ./S77dmi stop 随后编写了启动脚本 (其实脚本就是启动 /usr/local/sbin/snmpd 这个东东 ) 但是我在执行...

by zjyilwt - Solaris - 2008-01-30 20:59:25 阅读(1207) 回复(0)

错误提示 gcc -I../../include -I. -I../../agent -I../../agent/mibgroup -I../../snmplib -I./include/netsnmp/system/solaris.h -Dnetsnmp_ENABLE_IPV6 -g -O2 -Usolaris2 -Dsolaris2=solaris2 -c if-mib/data_access/interface_solaris2.c -fPIC -DPIC -o if-mib/data_access/.libs/interface_solaris2.o if-mib/data_access/interface_solaris2.c: In function `_set_ip_flags_v4': if-mib/data_access/interface_solaris2.c...

by ybr81925 - Solaris - 2008-05-22 15:53:26 阅读(2017) 回复(7)

我最近想在aix5.3下安装netsnmp,请问大家下载哪个版本的netsnmp的包比较好? 还有安装前需要先装什么支持的软件么?希望大家装过的高手指点小弟一下啊

by zjyilwt - AIX - 2008-02-19 21:15:42 阅读(1455) 回复(0)

我安装了netsnmp-5.4.1-sol9-x86-local.gz 这个包, 然后在用 /usr/local/sbin/snmpd start 启动的时候,他也没有报异常,但是实际用 ps -ef|grep snmp 却查询不到他启动的信息,最后用 /usr/local/sbin/snmpd -f -L 才成功启动的, 请问-f -L 分别代表什么意思啊?还有就是,如何能让这个solaris 9 每次启动时自己启动netsnmp啊?

by zjyilwt - Solaris - 2008-01-31 18:10:56 阅读(1637) 回复(3)

netsnmp取egp的信息时,返回“no such object”。 其它的节点都没有问题,而且在XP和LINUX下都是这个问题,是不是配置不对,还是netsnmp没有实现这个呀?

by yecheng_110 - 初创企业IT架构选型 - 2008-02-27 09:10:26 阅读(4436) 回复(3)

如题安装rnetsnmp ./configure make 在make的时候出现error,link: cannot find the library `' (lib.la: management/software/net-snmp-5.3.0.1/snmplib) 在make install的时候也是这个error 我试过其它的版本,5.1.3.1也是同样的error,这个怎么解决,望安装过的高人指点一下

by once4all - 网络技术 - 2006-04-19 10:11:42 阅读(1212) 回复(2)