php net-snmp trap,Net-snmp:接收Trap的api

Net-snmp:接收Trap的api

Net-snmp:接收Trap的api

net-snmp使用的是snmptrapd来接收trap,我想自己写程序接收trap,也看了snmptrapd.c代码,很繁琐。

有没有更简单一点的例子。

net-snmp作为管理端功能有点欠缺,可以使用snmp++毕业论文

-- BRD-SYS-MIB.my -- MIB generated by MG-SOFT Visual MIB Builder Version 6.0  Build 88 -- Monday, July 11, 2011 at 17:14:41 --       BRD-SYS-MIB DEFINITIONS ::= BEGIN            IMPORTS             OBJECT-GROUP, NOTIFICATION-GROUP                             FROM SNMPv2-CONF                         enterprises, OBJECT-TYPE, MODULE-IDENTITY, OBJECT-IDENTITY, NOTIFICATION-TYPE                             FROM SNMPv2-SMI;                     -- 1.3.6.1.4.1.30000.1         brdModule MODULE-IDENTITY              LAST-UPDATED "201007061242Z"        -- July 06, 2010 at 12:42 GMT             ORGANIZATION                  "Organization."             CONTACT-INFO                  "Contact-info."             DESCRIPTION                  "Description."             ::= { broadtech 1 }                   -- -- Node definitions --               -- 1.3.6.1.4.1.30000         broadtech OBJECT-IDENTITY             STATUS current             DESCRIPTION                  "The root of the OID sub-tree assigned to Company by the Internet Assigned Numbers Authority (IANA)"             ::= { enterprises 30000 }                     -- 1.3.6.1.4.1.30000.1.1         system OBJECT IDENTIFIER ::= { brdModule 1 }                     -- 1.3.6.1.4.1.30000.1.1.1         realvalue OBJECT IDENTIFIER ::= { system 1 }                     -- 1.3.6.1.4.1.30000.1.1.1.1         cpu OBJECT-TYPE             SYNTAX INTEGER (0..100)             MAX-ACCESS read-only             STATUS current             DESCRIPTION                 "Description."             ::= { realvalue 1 }                     -- 1.3.6.1.4.1.30000.1.1.1.2         maxcpu OBJECT-TYPE             SYNTAX INTEGER (50..100)             MAX-ACCESS read-write             STATUS current             DESCRIPTION                 "Description."             ::= { realvalue 2 }                     -- 1.3.6.1.4.1.30000.1.1.1.3         notifycpu NOTIFICATION-TYPE             OBJECTS { cpu }             STATUS current             DESCRIPTION                  "Description."             ::= { realvalue 3 }                     -- 1.3.6.1.4.1.30000.1.1.1.4         realgroup OBJECT-GROUP             OBJECTS { cpu, maxcpu }             STATUS current             DESCRIPTION                  "Description."             ::= { realvalue 4 }                     -- 1.3.6.1.4.1.30000.1.1.1.5         notifygroup NOTIFICATION-GROUP             NOTIFICATIONS { notifycpu }             STATUS current             DESCRIPTION                  "Description."             ::= { realvalue 5 }                       END --+--brdModule(1) --   | --   +--system(1) --      | --      +--realvalue(1) --         | --         +-- -R-- INTEGER   cpu(1) --         |        Range: 0..100 --         +-- -RW- INTEGER   maxcpu(2) --         |        Range: 50..100 --         +--notifycpu(3) --         +--realgroup(4) --         +--notifygroup(5) -- -- BRD-SYS-MIB.my --

asn.1用的mgMibBrowser生成的。

头文件:

C/C++ code?1234567891011121314151617 /*  * Note: this file originally auto-generated by mib2c using  *        : mib2c.int_watch.conf 17587 2009-04-30 06:57:27Z magfr $  */#ifndef BRDMODULE_H #define BRDMODULE_H     /*  * function declarations   */void            init_brdModule(void); int             send_notifycpu_trap(void); void        updateValueOfCpu(unsigned int clientreg, void *clientarg);   #endif                          /* BRDMODULE_H */

下面是C代码:

C/C++ code?/*  * Note: this file originally auto-generated by mib2c using  *        : mib2c.int_watch.conf 17587 2009-04-30 06:57:27Z magfr $  */  #include #include #include #include "brdModule.h" #include "getcpu.h"       //for get cpu rate   /*  * The variables we want to tie the relevant OIDs to.  * The agent will handle all GET and (if applicable) SET requests  * to these variables automatically, changing the values as needed.  */  long            cpu = 0;        /* XXX: set default value */long            maxcpu = 0;     /* XXX: set default value */      static const oid snmptrap_oid[] = { 1, 3, 6, 1, 6, 3, 1, 1, 4, 1, 0 };   int     //mib2c auto make and modifyed send_notifycpu_trap(void) {     netsnmp_variable_list *var_list = NULL;     const oid       notifycpu_oid[] =         { 1, 3, 6, 1, 4, 1, 30000, 1, 1, 1, 3 };     const oid       cpu_oid[] = { 1, 3, 6, 1, 4, 1, 30000, 1, 1, 1, 1, 0 };       /*      * Set the snmpTrapOid.0 value      */    snmp_varlist_add_variable(&var_list,                               snmptrap_oid, OID_LENGTH(snmptrap_oid),                               ASN_OBJECT_ID,                               notifycpu_oid, sizeof(notifycpu_oid));       /*      * Add any objects from the trap definition      */    snmp_varlist_add_variable(&var_list,                               cpu_oid, OID_LENGTH(cpu_oid), ASN_INTEGER,                               /*                                * Set an appropriate value for cpu                                 */                              (long*)&cpu, sizeof(cpu));  //modifyed by ligang       /*      * Add any extra (optional) objects here      */      /*      * Send the trap to the list of configured destinations      *  and clean up      */    send_v2trap(var_list);     snmp_free_varbind(var_list);       return SNMP_ERR_NOERROR; }     /*  * Our initialization routine, called automatically by the agent   * (Note that the function name must match init_FILENAME())   */void   //mib2c auto make and modifyed init_brdModule(void) {     netsnmp_handler_registration *reg;       const oid       cpu_oid[] = { 1, 3, 6, 1, 4, 1, 30000, 1, 1, 1, 1 };     static netsnmp_watcher_info cpu_winfo;     const oid       maxcpu_oid[] = { 1, 3, 6, 1, 4, 1, 30000, 1, 1, 1, 2 };     static netsnmp_watcher_info maxcpu_winfo;       /*      * a debugging statement.  Run the agent with -DbrdModule to see      * the output of this debugging statement.       */    DEBUGMSGTL(("brdModule", "Initializing the brdModule module\n"));         /*      * Register scalar watchers for each of the MIB objects.      * The ASN type and RO/RW status are taken from the MIB definition,      * but can be adjusted if needed.      *      * In most circumstances, the scalar watcher will handle all      * of the necessary processing.  But the NULL parameter in the      * netsnmp_create_handler_registration() call can be used to      * supply a user-provided handler if necessary.      *      * This approach can also be used to handle Counter64, string-      * and OID-based watched scalars (although variable-sized writeable      * objects will need some more specialised initialisation).      */    DEBUGMSGTL(("brdModule",                 "Initializing cpu scalar integer.  Default value = %d\n",                 cpu));     reg = netsnmp_create_handler_registration("cpu", NULL,                                               cpu_oid, OID_LENGTH(cpu_oid),                                               HANDLER_CAN_RONLY);     netsnmp_init_watcher_info(&cpu_winfo, &cpu, sizeof(long),                               ASN_INTEGER, WATCHER_FIXED_SIZE);     if (netsnmp_register_watched_scalar(reg, &cpu_winfo) < 0) {         snmp_log(LOG_ERR, "Failed to register watched cpu");     }       DEBUGMSGTL(("brdModule",                 "Initializing maxcpu scalar integer.  Default value = %d\n",                 maxcpu));     reg = netsnmp_create_handler_registration("maxcpu", NULL,                                               maxcpu_oid,                                               OID_LENGTH(maxcpu_oid),                                               HANDLER_CAN_RWRITE);     netsnmp_init_watcher_info(&maxcpu_winfo, &maxcpu, sizeof(long),                               ASN_INTEGER, WATCHER_FIXED_SIZE);     if (netsnmp_register_watched_scalar(reg, &maxcpu_winfo) < 0) {         snmp_log(LOG_ERR, "Failed to register watched maxcpu");     }         DEBUGMSGTL(("brdModule", "Done initalizing brdModule module\n"));     /*add a timer 3s:HANDLE FUNCTION IS updateValueOfCpu WITHOUT ARGS*/    snmp_alarm_register(3,SA_REPEAT,updateValueOfCpu,NULL); } /*timer handle function*/void updateValueOfCpu(unsigned int clientreg, void *clientarg) {     cpu=getcpurate(NULL);     printf("%d %d\n",cpu,maxcpu);     if(cpu>maxcpu)//all oid's value in memery        send_notifycpu_trap();//send trap     return; }

Makefile

C/C++ code?# # Warning: you may need more libraries than are included here on the # build line.  The agent frequently needs various libraries in order # to compile pieces of it, but is OS dependent and we can't list all # the combinations here.  Instead, look at the libraries that were # used when linking the snmpd master agent and copy those to this # file. #   CC=gcc   OBJS1=snmpdemoapp.o OBJS2=example-demon.o nstAgentSubagentObject.o OBJS3=asyncapp.o TARGETS=example-demon snmpdemoapp asyncapp   CFLAGS=-I. `net-snmp-config --cflags` BUILDLIBS=`net-snmp-config --libs` BUILDAGENTLIBS=`net-snmp-config --agent-libs`   # shared library flags (assumes gcc) DLFLAGS=-fPIC -shared   all: $(TARGETS)   snmpdemoapp: $(OBJS1)     $(CC) -o snmpdemoapp $(OBJS1) $(BUILDLIBS)   asyncapp: $(OBJS3)     $(CC) -o asyncapp $(OBJS3) $(BUILDLIBS)   example-demon: $(OBJS2)     $(CC) -o example-demon $(OBJS2)  $(BUILDAGENTLIBS)   clean:     rm $(OBJS2) $(OBJS2) $(TARGETS) brdModule.so: brdModule.c Makefile     $(CC) $(CFLAGS) $(DLFLAGS) -c -o brdModule.o brdModule.c     $(CC) $(CFLAGS) $(DLFLAGS) -c -o getcpu.o getcpu.c     $(CC) $(CFLAGS) $(DLFLAGS) -o brdModule.so brdModule.o getcpu.o

配置文件有点复杂,就不贴了。

采用动态库方式运行

需要完整程序、配置的 PM

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/557135.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

SpringBoot引入本地jar包

1.引入本地jar包并通过maven打包成jar包 第一步&#xff1a;创建lib包&#xff0c;将所需的本地jar包导入 第二步&#xff1a;在pom文件中引导路径 <dependency><groupId>com.penn</groupId><artifactId>excleutil</artifactId><version&g…

“2021-01-30T16:00:00.000Z“: expected format “yyyy-MM-dd HH:mm:ss“时间戳格式化

“2021-01-30T16:00:00.000Z”&#xff1a; T表示分隔符&#xff0c;Z表示的是UTC. UTC&#xff1a;世界标准时间&#xff0c;在标准时间上加上8小时&#xff0c;即东八区时间&#xff0c;也就是北京时间。 例如 &#xff1a; 北京时间&#xff1a;2021-01-31 00:00:00对应的国…

MyBatis JdbcType介绍

MyBatis JdbcType介绍 JdbcType介绍 数据库列字段都是有类型的&#xff0c;不同的数据库有不同的类型。为了表示这些数据类型&#xff0c;Java源码是采用枚举来定义的&#xff1a; public enum JDBCType implements SQLType {TINYINT(Types.TINYINT),SMALLINT(Types.SMALLIN…

php 物联网应用,蜂窝物联网的概念以及应用

所谓蜂窝物联网&#xff0c;就是蜂窝移动通信网物联网相结合的发展产物。如今蜂窝移动通信网络已经发展30多年了&#xff0c;高高的通信铁塔拔地而起&#xff0c;随处可见&#xff0c;比工业时代的烟囱可多多了&#xff0c;象征着辉煌的信息时代。蜂窝物联网建设原则 本期工程要…

JSONObject.parseObject()

java获取json中某个字段 import com.alibaba.fastjson.JSONObject; public class JsonTest {public static void main(String[] args) {// json串(以自己的为准)String str "{"id":"75","shoppingCartItemList":[{"id":"4…

python批量图片转pdf,用python 制作图片转pdf工具

最近因为想要看漫画&#xff0c;无奈下载的漫画是jpg的格式&#xff0c;网上的转换器还没一个好用的&#xff0c;于是乎就打算用python自己DIY一下&#xff1a;这里主要用了reportlab。开始打算随便写几行&#xff0c;结果为若干坑纠结了挺久&#xff0c;于是乎就想想干脆把代码…

Java中如何遍历Map对象的4种方法

在Java中如何遍历Map对象 *How to Iterate Over a Map in Java* 在java中遍历Map有不少的方法。我们看一下最常用的方法及其优缺点。 既然java中的所有map都实现了Map接口&#xff0c;以下方法适用于任何map实现&#xff08;HashMap, TreeMap, LinkedHashMap, Hashtable, 等…

大学本科 java教材,大学本科自学java之路——IO

大学本科自学java之路——IO大学本科自学java之路——IO我现在大三&#xff0c;大一&#xff0c;大二就是玩&#xff0c;现在大三准备考虑就业了&#xff0c;特写博客便于坚持自己学习一. 字节缓冲流的构造方法&#xff1a;BufferedOutputStream:该类实现缓冲输出流。 通过设置…

Map的value转化为其它类型

map的values() Collection<String> v map.values(); 转化为数组或者List集合 转化为List: List<String> lnew ArrayList<String>(map.values()); for(String s:l){System.out.print(s); }转化为数组 1.直接为Object[]数组 Object[] array map.values(…

下载的oracle如何解压,深度概述Ubuntu oracle下载解压

oracle经过长时间的发展&#xff0c;我发表对Ubuntu oracle个人讲解&#xff0c;叙述下Ubuntu oracle使用。Ubuntu 包含了非常好的翻译和容易使用的架构&#xff0c;这些由自由软件社团将不断的提供, 将尽可能的使大多数人方便使用 Ubuntu 。1. 先到 Ubuntu oracle 网站上下载了…

关于比较器Comparator排序时间的问题

​ 最近涉及一个需要按照时间排序的问题&#xff0c;由于在数据库层面order by太麻烦&#xff0c;所以就准备在代码层面解决&#xff0c;但是过程中遇到了一个很有意思的问题。 ​ 先介绍一下用的比较器的api&#xff1a; o1大于o2,则返回正数&#xff1b;o1等于o2,则返回0&…

Error running ‘transmission‘: Unable to open debugger port (127.0.0.1:52469): java.net.SocketExcepti

IDEA运行tomcat启动项目时报错。 开始还以为是这里的端口被占用的问题 然而实际上是tomcat的JMX端口的问题&#xff0c;将端口修改一下&#xff0c;就可以完美启动。 修改之后即可启动项目

oracle 11g 环境,Linux彻底清理Oracle 11g RAC环境方案

参考文档&#xff1a;Linux环境下11.2.0.3 rac的快速卸载脚本在Oracle 11.1和Oracle 10.1,10.2上&#xff0c;都是官方提供手工清理RAC环境的方法的(比如环境有问题&#xff0c;或者RAC安装失败&#xff0c;要清理后重新安装。虽然这些版本&#xff0c;也提供了卸载脚本&#x…

oracle常用用户权限,oracle创建新用户及授予常用权限

创建用户create user usernameidentified by usernamedefault tablespace tablespace_name;授予一般权限grant connect,resource,create any table,drop any table,create sequence,select any table, create any index, drop any index,alter any trigger, create any trigger…

synchronized 锁升级过程

synchronized 锁升级过程就是其优化的核心&#xff1a;偏向锁 -> 轻量级锁 -> 重量级锁 class Test{private static final Object object new Object(); public void test(){synchronized(object) {// do something } }}每个对象创建时都有各自的对象头&#…

oracle数据泵索引创建慢,IMPDP 很慢的原因探究

最近帮一个客户做数据迁移测试&#xff0c;数据库版本的10.2.0.4.0&#xff0c;操作系统是AIX到Linux&#xff0c;采用EXPDP/IMPDP方式进行全库导出和导入。客户的数据库有3.6T&#xff0c;导出时间花了30小时&#xff0c;但是导入却花了120小时&#xff0c;这个很不正常。因为…

Collections.synchronizedList使用

Collections.synchronizedList使用 1.SynchronizedList类具体代码&#xff1a; static class SynchronizedList<E>extends SynchronizedCollection<E>implements List<E> {private static final long serialVersionUID -7754090372962971524L;final List&l…

oracle提交数据按键,Oracle PLSQL - 仅提交数据库链接(Oracle PLSQL - Commit only database link)...

Oracle PLSQL - 仅提交数据库链接(Oracle PLSQL - Commit only database link)有没有办法只通过数据库链接而不是当前会话的数据提交在表上插入/更新的数据&#xff1f; 或者他们被认为是同一个&#xff1f;例如&#xff1a;INSERT INTO main_database.main_table(value1, valu…

oracle ado6,c# ado 连接数据库 六步曲

建立连接分为六步&#xff1a;1.定义连接字符串&#xff0c;oracle 的连接字符串为&#xff1a;private static string connString "Data Source192.168.1.130:1521/mydata;Persist Security InfoTrue;User IDem_test;Passwordtest123;UnicodeTrue";2.根据连接字符串…

java中数组遍历的三种方式

1.for循环遍历 通常遍历数组都是使用for循环来实现。遍历一维数组很简单&#xff0c;遍历二维数组需要使用双层for循环&#xff0c;通过数组的length属性可获得数组的长度。 2.Arrays工具类中toString静态方法遍历 利用Arrays工具类中的toString静态方法可以将一维数组转化为…