User Guide: SNMP Agent
Michael Rademaker edited this page Nov 9, 2021
·
6 revisions
Pages 68
Home
User Guide
Deploying
Manager UI
Assets & Attributes
Agents/Protocols
- Overview
- Bluetooth Mesh
- HTTP
- KNX
- LoRa
- MQTT
- Simulator
- SNMP
- Serial
- TCP
- UDP
- Velbus
- Websocket
- Z-Wave
- Partner Integrations
Disabled Protocols
Manager APIs
Rules and forecasting
Identity & Security
Gateways and Devices
- OpenRemote as Edge Gateway
- Auto provisioning devices and users
- Connect ESP32 or ESP8266 using MQTT
- Firmware updating with Hawkbit
- Partner Integrations
Tutorials
- Weather data using HTTP Agent
- Connect Your MQTT Client
- ChirpStack LoRaWAN Integration
- Celcius to Fahrenheit with Flow
- Configure mobile app behaviour
- Simulating data in attribute
- Create an Energy Management System
Developer Guide
- Preparing the environment
- Installing and using Docker
- Setting up an IDE
- Building and testing
- Working on UI and apps
- Working on maps
- Docker compose profiles
- Creating a custom project
- Maintaining an installation
- Working on the mobile consoles
- Connecting Protocol adaptors with Agents
- Edge device firmware updating
- Licensing guidelines for contributors
- Useful commands and queries
- Data migration
Architecture
Clone this wiki locally
Connect to a SNMP server and listen to SNMP traps.
Agent configuration
The following describes the supported agent configuration attributes:
Attribute | Description | Value type | Required |
---|---|---|---|
bindHost |
Bind hostname or IP address | Hostname or IP address | Y |
bindPort |
Bind port | Port number | N (Default = 162 ) |
SNMPVersionValue |
SNMP Version | Text (V1 , V2c , V3c ) |
N |
Agent link
For attributes linked to this agent, the following describes the supported agent link fields which are in addition to the standard Agent Link fields:
Field | Description | Value type | Required |
---|---|---|---|
type |
Agent type | Text (Must be SNMPAgentLink ) |
Y |
oid |
The OID of the SNMP trap parameter | Text (OID e.g. 1.3.6.1.4.1.8072.2.3.2.1 ) |
Y |
Wildcard
Use a value of *
for oid
to retrieve the entire trap message.
Additional info
To test the agent link you can send the following message from a terminal:
sudo snmptrap -v 2c -c public <your-machines-ip-address> '' 1.3.6.1.4.1.8072.2.3.0.1 1.3.6.1.4.1.8072.2.3.2.1 i 123456
The SNMP value attribute should now have the value 123456
.