Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ The Simple Network Management Protocol (SNMP) is a communication protocol used f

The main SNMP operations include GET, used to request device information; SET, used to modify device configurations; and TRAP, used for devices to report anomalies to the management station. As the protocol has evolved, SNMP has enhanced its security features. The latest version, SNMPv3, supports message integrity, authentication, and encryption to improve communication security.

Version support: Both `client` and `server` in the current code support three versions: `SNMPv1`, `SNMPv2c`, and `SNMPv3`.

Method support: The `client` in the current code supports methods such as get, multiget, getnext, multigetnext, bulkget, set, multiset, walk, multiwalk, bulkwalk, table, bulktable and so on; The `server` in the current code supports methods such as get, set, trap and so on.

## Usage

- [SNMP Client API Reference](./client/docs/en/SNMP_Client_API_Reference.md)
Expand Down
4 changes: 4 additions & 0 deletions README_ZH.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@

SNMP主要操作包括GET,用于请求设备信息;SET,用于修改设备配置;以及TRAP,用于设备向管理站报告异常。随着版本的发展,SNMP增加了安全功能,最新的SNMPv3版本支持消息完整性、认证和加密,以提高通信安全。

版本支持:当前代码中的`client`和`server`都支持`SNMPv1`、`SNMPv2c`、`SNMPv3`三个版本。

方法支持:当前代码中的`client`支持get、multiget、getnext、multigetnext、bulkget、set、multiset、walk、multiwalk、bulkwalk、table、bulktable等方法;当前代码中的`server`支持get、set、trap等方法。

## 用法

- [SNMP客户端API说明文档](./client/docs/zh/SNMP客户端API说明文档.md)
Expand Down