Windows snmp++获取本地主机信息

编译snmp++的包

调用snmp++.lib实现信息获取_哔哩哔哩_bilibili

代码:

#include <iostream>
#include <libsnmp.h>
#include <vector>
#include <fstream>
#include <string>
#include "snmp_pp/snmp_pp.h"
//#define _NO_LOGGING
#ifdef WIN32
#define strcasecmp _stricmp
#endif#ifdef SNMP_PP_NAMESPACE
using namespace Snmp_pp;
#endifusing namespace std;
using namespace Snmp_pp;
typedef struct {string aa;string bb;string cc;
}CON;
vector<CON> readTxt(string path) {vector<CON> res;ifstream file(path);string line;CON a;getline(file, line);line = line.substr(line.find('=') + 1);a.aa = line;while (getline(file,line)){line= line.substr(line.find('=') + 1);a.bb = line;getline(file, line);line = line.substr(line.find('=') + 1);a.cc = line;res.push_back(a);}return res;
}
vector<string> getSnmpValue(vector<CON> a) {vector<string> res;int status;Snmp::socket_startup(); // Initialize the socket subsystem// Create an SNMP++ sessionSnmp snmp(status);if (status != SNMP_CLASS_SUCCESS){cout << "SNMP++ Session creation failed." << endl;return vector<string>();}for (int i = 0; i < a.size(); i++){// Set the target addressUdpAddress targetAddress(a[i].bb.c_str());// Create the target using the target address and community stringCTarget target(targetAddress);target.set_version(version2c); // Use SNMPv2ctarget.set_retry(3);           // Set the number of retriestarget.set_timeout(1000);      // Set the timeout (milliseconds)target.set_readcommunity(a[i].aa.c_str());// Create a PDU object for the SNMP GET requestPdu pdu;pdu.set_type(sNMP_PDU_GET);pdu += Vb(a[i].cc.c_str()); // Add the OID to retrieve// Send the SNMP GET requeststatus = snmp.get(pdu, target);if (status == SNMP_CLASS_SUCCESS){// Check the response PDU for errorsif (pdu.get_error_status() == SNMP_ERROR_SUCCESS){// Iterate through the received variable bindingsfor (int i = 0; i < pdu.get_vb_count(); i++){Vb vb;pdu.get_vb(vb, i);std::string value = vb.get_printable_value();res.push_back(value);  // 将值添加到容器中//cout << "OID: " << vb.get_printable_oid() << endl;//cout << "Value: " << vb.get_printable_value() << endl;}}else{cout << "Error in response PDU: " << endl;}}else{cout << "SNMP++ GET request failed: " << snmp.error_msg(status) << endl;}}Snmp::socket_cleanup(); // Shut down the socket subsystemreturn res;
}
int main()
{string p = "D:\\ALearn\\snmp\\testSnmpJJ\\1.txt";vector<CON> a = readTxt(p);/*for (int i = 0; i < a.size(); i++){cout << a[i].aa << endl;cout << a[i].bb << endl;cout << a[i].cc << endl;}*/vector<string> b = getSnmpValue(a);for (int i = 0; i < b.size(); i++){cout <<"value===="<< b[i] << endl;}return 0;
}

配置文件:

 

运行截图:(一定要运行snmp服务)

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

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

相关文章

C语言错题本之<结构体>

以下叙述中正确的是________. A)预处理命令行必须位于源文件的开头 B)在源文件的一行上可以有多条预处理命令 C)宏名必须用大写字母表示 D)宏替换不占用程序的运行时间 答案&#xff1a;D 解析&#xff1a; A&#xff1a;在C、C等编程语言中&#xff0c;预处理指令&#xff08;…

两小时看完花书(深度学习入门篇)

1.深度学习花书前言 机器学习早期的时候十分依赖于已有的知识库和人为的逻辑规则&#xff0c;需要人们花大量的时间去制定合理的逻辑判定&#xff0c;可以说是有多少人工&#xff0c;就有多少智能。后来逐渐发展出一些简单的机器学习方法例如logistic regression、naive bayes等…

【Linux】自动化编译工具——make/makefile(超细图例详解!!)

目录 一、前言 二、make / Makefile背景介绍 &#x1f95d;Makefile是干什么的&#xff1f; &#x1f347;make又是什么&#xff1f; 三、demo实现【见见猪跑&#x1f416;】 四、依赖关系与依赖方法 1、概念理清 2、感性理解【父与子&#x1f468;】 3、深层理解【程序…

vscode 之 output 输出中文乱码,终端输出中文正常

# 1. 背景 因为没钱买正版的软件&#xff0c;所以转战 vscode 编译器。 在编译 python 文件时&#xff0c;发现直接右键 runner code&#xff0c;输出中文乱码。 但是在 teiminal 终端 执行py test.py 时&#xff0c;输出正常&#xff0c;中文正常。 output 输出中文样式(中文…

西门子博途WINCC精致触摸屏配方实用一例

我们现场有一台设备&#xff0c;是用来锯切钢坯的&#xff0c;里面有几个重要的参数&#xff0c;一开始投产的时候厂家没有做配方功能&#xff0c;需要操作人员每次换钢坯就需要手动计算然后输入&#xff0c;后来有时间我就做了个这个定尺管理的功能&#xff0c;方便了操作人员…

最新Linux Debian12安装和使用ImageMagick图像处理工具 常见图片png、jpg格式转webp格式

在Linux系统中&#xff0c;使用ImageMagick可以图片格式转换&#xff0c;其中最常用的是通过命令行工具进行。 ImageMagick是一个非常强大的图像处理工具集&#xff0c;它包含了许多用于图像转换的命令。 一、安装ImageMagick&#xff08;如果尚未安装&#xff09;&#xff1…

【研发日记】Matlab/Simulink技能解锁(七)——两种复数移相算法

复数移相&#xff0c;也称为复数相位旋转&#xff0c;就是在原有复数的基础上&#xff0c;不改变模数&#xff0c;只把相位角做一定的偏移。 文章目录 前言 三角函数移相 复数乘法移相 分析和应用 总结 前言 见《【研发日记】Matlab/Simulink技能解锁(二)——在Function编…

NARUTO 复现记录

1 环境配置 下载项目&#xff0c;一定要 git 下载全项目&#xff0c;下载完后要检查third_parities 里面的coslam和neural_slam_eval 文件全不全。 git clone --recursive https://github.com/oppo-us-research/NARUTO.git 环境配置 注意 bash scripts/installation/conda…

为什么使用AI 在游戏中不犯法

使用AI在游戏中本身并不违法&#xff0c;甚至在很多情况下&#xff0c;游戏公司自己也会在游戏中集成AI来提高游戏体验&#xff0c;例如通过AI驱动的非玩家角色&#xff08;NPC&#xff09;来增加游戏的互动性和挑战性。然而&#xff0c;使用AI是否违法取决于AI的使用方式和目的…

项目-坦克大战-让坦克动起来

为什么写这个项目 好玩涉及到java各个方面的技术 1&#xff0c;java面向对象 2&#xff0c;多线程 3&#xff0c;文件i/o操作 4&#xff0c;数据库巩固知识 java绘图坐标体系 坐标体系-介绍 坐标体系-像素 计算机在屏幕上显示的内容都是由屏幕上的每一个像素组成的像素是一…

vue3 element plus el-date-picker组件在日期上做标识

1.先看效果图,带红点的就是我要做标识的日期 2.直接把代码拿出来就可以用 (1)html部分 <el-date-pickerv-model"startTime"type"datetime"placeholder"选择开始日期"format"YYYY-MM-DD HH:mm"value-format"YYYY-MM-DD HH:mm…

centos7安装zabbix-server

zabbixan-server安装 环境安装zabbix安装zabbix配置apachezabbix-UI前端配置修改zabbix为中文语言 环境 准备&#xff1a; centos7系统、mysql数据库/MariaDB数据库 mysql数据库可参照&#xff1a;https://blog.csdn.net/weixin_61367575/article/details/138774428?spm1001.…