php 可以使用 GETBULK snmp 调用吗?
我想从 php 脚本使用 GETBULK snmp 查询。是否可以?
I'd like to use GETBULK snmp query from php scripts. Is it possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我想从 php 脚本使用 GETBULK snmp 查询。是否可以?
I'd like to use GETBULK snmp query from php scripts. Is it possible?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
snmp2_real_walk 使用 getBulkRequest 但可能会导致问题并且不太可配置......仅供参考。
来源:两天的调试为什么 snmp2_real_walk 不适用于特定主机(事实证明这是因为返回数据包太大......我使用wireshark来捕获数据)。
snmp2_real_walk uses getBulkRequest but may cause problems and isn't very configurable... just an FYI.
Source: Two days of debugging why snmp2_real_walk wasn't working for a particular host ( turns out it was because the return packets were too big... I was using wireshark to capture the data).
试试这个:
http://www.emarksoft.com/snmp-examples/php-snmp -getbulk.htm
try this:
http://www.emarksoft.com/snmp-examples/php-snmp-getbulk.htm
不幸的是,不能,通过本机 PHP SNMP 支持这是不可能的。各种“walk”函数可能在内部使用GETBULK(我对此不确定),但它们肯定不公开该功能(例如,设置重复等)。
Unfortunately, no, this is not possible through the native PHP SNMP support. The various "walk" functions may use GETBULK internally (I am not certain on this), but they certainly do not expose that functionality (for example, the ability to set the repetitions and such).