gpt4 book ai didi

c++ - 寻找使用 AgentX 实现 SNMP 表的示例代码

转载 作者:可可西里 更新时间:2023-11-01 18:17:52 24 4
gpt4 key购买 nike

我编写了一个 AgentX 应用程序(Linux、gcc、g++),它可以很好地发送回缩放器。这是我现在正在做的:

init_agent( "blah" );
netsnmp_register_read_only_scalar( netsnmp_create_handler_registration( "foo1", handle_foo1, oid, oid.size(), HANDLER_CAN_RONLY ) );
init_snmp( "blah" );
while ( true )
{
// internal stuff
agent_check_and_process(1); // where 1==block
}

handle_foo1(...) 等函数调用 snmp_set_var_typed_value(...) 以返回缓存在应用程序中的全局 C 结构中的值。

我现在要做的是修改这段代码,使其也支持 SNMP 表。表的内容作为应用程序中的 STL 容器存储/缓存。这是一个比较简单的SNMP表,行连续,所有列由Integer32、Gauge32、InetAddress、TruthValue等类型组成。问题是我在 net-snmp 网站上看不到很好的代码示例,只有很多 doxygen 页面。

我的问题:

我应该查看哪些 API?这些是正确的电话吗:

netsnmp_register_read_only_table_data();
netsnmp_create_table_data();
netsnmp_create_table_data_row();
netsnmp_table_data_add_row();

...或者我应该使用更简单的东西吗?

最佳答案

我认为,当涉及到 net-snmp 时,最大的痛苦是 Google 索引的所有 Doxygen 页面,但这些页面提供的可用内容几乎为零。阅读 .h 文件对于大多数开发人员来说可能已经很明显了,事实是 net-snmp 提供了许多不同的 API 层,而我发现有用的文档很少。我们需要的不是托管 Doxygen 的网站的几十个相同拷贝,而是一些好的示例。

最后,mib2c 工具让我获得了足够的示例代码来让整个工作正常进行。我想我尝试对每个 net-snmp .conf 文件运行 mib2c,并花了很多时间阅读它生成的代码以获得更好的理解。以下是我发现的给了我最好的提示:

  • mib2c -c mib2c.create-dataset.conf MyMib
  • mib2c -c mib2c.table_data.conf MyMib

.conf 文件位于:/etc/snmp/mib2c.*

以下页面也很有用:

据我所知,net-snmp API 中有许多可用的辅助程序/层。所以这个示例伪代码可能并不适用于所有人,但这是我个人使用 net-snmp v5.4 让我的表工作的方式:

多个函数需要变量(使其成为全局变量,还是结构成员?)

netsnmp_tdata *table = NULL;

表示表格一行的结构(必须匹配 MIB 定义)

struct MyTable_entry
{
long myTableIndex;
...insert one line here for each column of the table...
int valid; // add this one to the end
}

用snmpd初始化表

std::string name( "name_of_the_table_from_mib" );
table = netsnmp_tdata_create_table( name.c_str(), 0 );
netsnmp_table_registration_info *table_info = SNMP_MALLOC_TYPEDEF( netsnmp_table_registration_info );
netsnmp_table_helper_add_indexes( table_info, ASN_INTEGER, 0 ); // index: myTableIndex
// specify the number of columns in the table (exclude the index which was already added)
table_info->min_column = COLUMN_BLAH;
table_info->max_column = MAX_COLUMN_INDEX;
netsnmp_handler_registration *reg = netsnmp_create_handler_registration( name.c_str(), MyTable_handler, oid, oid.size(), HANDLER_CAN_RONLY );
netsnmp_tdata_register( reg, table, table_info );

处理请求的处理程序

int myTable_handler( netsnmp_mib_handler *handler, netsnmp_handler_registration *reginfo, netsnmp_agent_request_info *reqinfo, netsnmp_request_info *requests )
{
if ( reqInfo->mode != MODE_GET ) return SNMP_ERR_NOERROR;
for ( netsnmp_request_info *request = requests; request; request = request->next )
{
MyTable_entry *table_entry = (MyTable_entry*)netsnmp_tdata_extract_entry( request );
netsnmp_table_request_info *table_info = netsnmp_extract_table_info( request );

if ( table_entry == NULL ) { netsnmp_set_request_error( reqinfo, request, SNMP_NOSUCHINSTANCE); continue; }

switch ( table_info->colnum )
{
// ...this is similar to non-table situations, eg:
case COLUMN_BLAH:
snmp_set_var_typed_integer( request->requestvb, ASN_INTEGER, table_entry->blah ); break;
// ...
default: netsnmp_set_request_error( reqinfo, request, SNMP_NOSUCHOBJECT );
}
}
return SNMP_ERR_NOERROR;
}

在表中构建/添加行

if ( table == NULL ) return;   // remember our "global" variable named "table"?

// start by deleting all of the existing rows
while ( netsnmp_tdata_row_count(table) > 0 )
{
netsnmp_tdata_row *row = netsnmp_tdata_row_first( table );
netsnmp_tdata_remove_and_delete_row( table, row );
}

for ( ...loop through all the data you want to add as rows into the table... )
{
MyTable_entry *entry = SNMP_MALLOC_TYPEDEF( MyTable_entry );
if ( entry == NULL ) ... return;
netsnmp_tdata_row *row = netsnmp_tdata_create_row();
if ( row == NULL ) SNMP_FREE( entry ); .... return;

entry->myTableIndex = 123; // the row index number
// populate the table the way you need
entry->blah = 456;
// ...

// add the data into the row, then add the row to the table
entry->valid = 1;
row->data = entry;
netsnmp_tdata_row_add_index( row, ASN_INTEGER, &(entry->myTableIndex), sizeof(entry->myTableIndex) );
netsnmp_tdata_add_row( table, row );
}

把它放在一起

在我的例子中,构建行的最后一个函数由系统中的一些其他事件定期触发。因此,每隔一段时间,当有新的统计数据可用时,就会重建表,删除所有旧行,并插入新行。我没有费心去修改现有的行。相反,我发现从头开始重建表格更容易。

关于c++ - 寻找使用 AgentX 实现 SNMP 表的示例代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9847843/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com