英文:
SNMP agent in Go
问题
我需要编写一个SNMP代理,并希望使用Go语言来实现,以保持其占用空间小。
然而,我还没有找到任何支持SNMP代理的Go库。是否有任何可用的库或替代方案,比如调用C语言库?
英文:
I need to write a SNMP agent and I would like to implement it in Go in order to keep it with a small footprint.
However, I haven't found any Go library that supports SNMP agents. Is there any library or alternative available, such as calling a library in C?
答案1
得分: 2
由于https://github.com/posteo/go-agentx不再进行积极开发并且存在一些错误,我将其分叉为一个新项目来修复这些错误并接受贡献:https://github.com/martinclaro/go-agentx
请随意使用它,报告错误,并为更好的解决方案做出贡献。
英文:
As https://github.com/posteo/go-agentx is not under active development and has some bugs, I forked it into a new project to fix the bugs and accept contributions: https://github.com/martinclaro/go-agentx
Feel free to use it, report bugs, and contribute for a better solution.
答案2
得分: 0
我找到了以下关于"golang snmp agent"的搜索结果。
https://github.com/posteo/go-agentx
和
https://github.com/k-sone/snmpgo
即使这些不是你要找的,它们也应该是朝着正确方向的良好起点。
英文:
I got the following Googling "golang snmp agent".
https://github.com/posteo/go-agentx
and
https://github.com/k-sone/snmpgo
Even if these aren't what you are looking for, they should be a good start in the right direction.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论