资源简介
扩展Net-SNMP的Agent而写的一个开发流程文档,压缩包中也包含程序的源代码,和配置文件。根据Net-SNMP官方的实例程序,详细介绍了SNMP代理开发的各个步骤,各位读者按照步骤可以轻松的完成一个简单代理端的开发。
代码片段和文件信息
#include
#include
#include
#include
#include ject.h>
static int keep_running;
RETSIGTYPE
stop_server(int a) {
keep_running = 0;
}
int
main (int argc char **argv) {
int agentx_subagent=1; /* change this if you want to be a SNMP master agent */
int background = 0; /* change this if you want to run in the background */
int syslog = 0; /* change this if you want to use syslog */
/* print log errors to syslog or stderr */
if (syslog)
snmp_enable_calllog();
else
snmp_enable_stderrlog();
/* we‘re an agentx subagent? */
if (agentx_subagent) {
/* make us a agentx client. */
netsnmp_ds_set_boolean(NETSNMP_DS_APPLICATION_ID NETSNMP_DS_AGENT_ROLE 1);
}
/* run in background if requested */
if (background && netsnmp_daemonize(1 !syslog))
exit(1);
/* initialize tcpip if necessary */
SOCK_STARTUP;
/* initialize the agent library */
init_agent(“example-demon“);
/* initialize mib code here */
/* mib code: init_nstAgentSubagentobject from nstAgentSubagentobject.C */
init_nstAgentSubagentobject();
/* initialize vacm/usm access control */
if (!agentx_subagent) {
init_vacm_vars();
init_usmUser();
}
/* example-demon will be used to read example-demon.conf files. */
init_snmp(“example-demon“);
/* If we‘re going to be a snmp master agent initial the ports */
if (!agentx_subagent)
init_master_agent(); /* open the port to listen on (defaults to udp:161) */
/* In case we recevie a request to stop (kill -TERM or kill -INT) */
keep_running = 1;
signal(SIGTERM stop_server);
signal(SIGINT stop_server);
snmp_log(LOG_INFO“example-demon is up and running.\n“);
/* your main loop here... */
while(keep_running) {
/* if you use select() see snmp_select_info() in snmp_api(3) */
/* --- OR --- */
agent_check_and_process(1); /* 0 == don‘t block */
}
/* at shutdown time */
snmp_shutdown(“example-demon“);
SOCK_CLEANUP;
return 0;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2011-12-13 11:09 SNMP代理开发实例\
文件 1121 2011-11-30 13:22 SNMP代理开发实例\example-demon.conf
文件 525317 2011-11-30 14:33 SNMP代理开发实例\libnetsnmpagent.so.10.0.6
文件 4130 2011-12-06 11:31 SNMP代理开发实例\NET-SNMP-TUTORIAL-MIB.txt
文件 782 2011-11-30 11:30 SNMP代理开发实例\snmp.conf
文件 15592 2011-12-06 15:52 SNMP代理开发实例\snmpd.conf
目录 0 2011-12-13 11:09 SNMP代理开发实例\tutorial\
文件 12262 2011-11-30 13:40 SNMP代理开发实例\tutorial\example-demon
文件 2119 2011-11-30 10:57 SNMP代理开发实例\tutorial\example-demon.c
文件 1121 2011-11-30 13:22 SNMP代理开发实例\tutorial\example-demon.conf
文件 5472 2011-11-30 13:40 SNMP代理开发实例\tutorial\example-demon.o
文件 1147 2011-11-30 13:35 SNMP代理开发实例\tutorial\Makefile
文件 2154 2011-11-30 10:57 SNMP代理开发实例\tutorial\nstAgentSubagentob
文件 356 2011-11-30 10:57 SNMP代理开发实例\tutorial\nstAgentSubagentob
文件 6316 2011-11-30 13:40 SNMP代理开发实例\tutorial\nstAgentSubagentob
文件 198215 2011-12-09 09:30 SNMP代理开发实例\睿捷V5代理扩展方案.docx
- 上一篇:R语言微博爬虫RWEIBO
- 下一篇:xx公司网络设计
相关资源
- SNMP++/Agent++ 开发手册
- snmp++和agent++开发指南
- CPALEAD自动填表工具 支持 user agent伪造
- perfmon-agent-master
- 稳定的有领航者的多移动agent群集运动
- zabbix-agent监控windows
- VC Agent动画小人仿OFFICE助手动画.ra
- 2021最新手机UA库.7z
- 一个基于Agent的股票市场仿真模型的
- 用net-snmp的api实现trap接收,windows+li
- 浏览器User Agent Switcher Options多浏览器
- net-snmp开始教程
- Application of A Cleaner Tanning agent-THPC: E
- EVALUATION OF ENVIRONMENTAL IMPACT OF TYPICAL
- BIODEGRADABILITY EVALUATION OF TYPICAL LEATHER
- Jmeter 插件ServerAgent-2.2.1.zip
- ServerAgent-2.2.1.zip jmeter 服务资源监控插
- magento支付宝网关免签约个人版
- Server_Agent2.2.3.zip
- ServerAgent-2.2.1.zip
- apache-jmeter-5.1.1、JMeterPlugins-Standard-1
- magento-alipay Magento支付支付网关.zip
- User-Agent Switcher for Chrome v1.0.43(chrom
- 各型号手机userAgent(近1万个)
- ServerAgent-2.2.3.zip
- multi-agent
- 使电脑浏览器变成手机的App浏览器(
评论
共有 条评论