We don’t allow questions seeking recommendations for software libraries, tutorials, tools, books, or other off-site resources. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(7)
试试这个: http://snmpsim.sf.net
这基本上是一个 SNMP 代理,它报告静态值为从其后端(文本文件)获取。您可以将真实 SNMP 代理的快照转储到 snmpsim 的文本文件中,也可以从头开始创建它们。
该工具是跨平台的,并且支持 SNMP v3。
Try this one: http://snmpsim.sf.net
This is basically a SNMP Agent that reports back static values as taken from its backend (text files). You could either dump a snapshot of a real SNMP agent into a text file for snmpsim or create them from the scratch.
The tool is cross-platform and SNMP v3 capable.
我最近用 golang 编写了一个 SNMP v1 模拟器。我编写了一种简单的编程语言来指定 OID 变量以及它们如何更改。在一个示例中,我用它来模拟打印机的页数和错误更改。它的目标更多的是关注感兴趣的特定 OID,而不是基于 SNMP 转储(其他一些模拟器就是这样做的)。
该项目可以在这里找到: https://github.com/scorptec68/snmprun
文档在这里: https://github.com/scorptec68/snmprun/wiki
下载地址:https://github.com/scorptec68/snmprun/releases
I have recently written an SNMP v1 simulator in golang. I have written a simple programming language to specify OID variables and how they change. In one example, I used it to simulate a printer for page counts and error changes. Its aim is more about focusing on particular OIDs of interest than basing off an SNMP dump (which some other simulators do).
The project can be found here: https://github.com/scorptec68/snmprun
The docs are here: https://github.com/scorptec68/snmprun/wiki
The download is here: https://github.com/scorptec68/snmprun/releases
您也可以尝试www.gambitcomm.com,他们免费提供单设备版本的SNMP模拟器。
You can also try www.gambitcomm.com, they provide SNMP Simulator for Single device version for Free.
它不是那么方便,但我使用 Net-SNMP 开源 SNMP 服务器。您可以使用脚本代码或 EXE 文件来模拟部分 MIBS。它代表了一些工作,但它是可行的。我不知道开源模拟器。
It's not so handy but I used tu use the Net-SNMP open source SNMP server. you can simulate part of MIBS with script code or EXE files. It represents some work, but it's doable. I don't know about open source simulator.
SNMP 代理模拟器的开源和免费实现:
https://github.com/inexio/snmpsim
功能:
open source and free implementation of SNMP agents simulator:
https://github.com/inexio/snmpsim
Features:
您还可以尝试这个它是免费的,可以模拟
SNMPv1/v2c代理。
You can also try this one it's free and can simulate
SNMPv1/v2c
agents.我使用了 snmp++ 中的 AgentX++,它有一个主示例,通过更改它,您可以制作自己的代理。通过此链接 agent++
I've used AgentX++ from snmp++, It has a master sample and by changing that you can make your own Agent. from this link agent++