#include <ESP8266WiFi.h>
#include <WiFiUdp.h>
#include <Arduino_SNMP.h>
const char* ssid = "PTS-2F";
const char* password = "";
WiFiUDP udp;
SNMPAgent snmp = SNMPAgent("public"); // Starts an SMMPAgent instance with the community string 'public'
int changingNumber = 1;
int settableNumber1 = 0;
int settableNumber2 = 0;
void setup(){
Serial.begin(115200);
WiFi.begin(ssid, password);
Serial.println("");
// Wait for connection
while (WiFi.status() != WL_CONNECTED) {
delay(500);
Serial.print(".");
}
Serial.println("");
Serial.print("Connected to ");
Serial.println(ssid);
Serial.print("IP address: ");
Serial.println(WiFi.localIP());
// give snmp a pointer to the UDP object
snmp.setUDP(&udp);
snmp.begin();
// add 'callback' for an OID - pointer to an integer
snmp.addIntegerHandler(".1.3.6.1.4.1.5.0", &changingNumber);
// Using your favourite snmp tool:
// snmpget -v 1 -c public <IP> 1.3.6.1.4.1.5.0
// you can accept SET commands with a pointer to an integer (or string)
snmp.addIntegerHandler(".1.3.6.1.4.1.2566.10.2.2.1.20.0.2", &settableNumber1, true);
snmp.addIntegerHandler(".1.3.6.1.4.1.2566.10.2.2.1.20.0.9", &settableNumber2, true);
//.1.3.6.1.4.1.2566.10.2.2.1.20.0.2
//.1.3.6.1.4.1.2566.10.2.2.1.20.0.9
// snmpset -v 1 -c public <IP> 1.3.6.1.4.1.5.0 i 99
}
void loop(){
snmp.loop(); // must be called as often as possible
if(snmp.setOccurred){
if (settableNumber1!=0) {
Serial.printf("Number has been set to value: %i", settableNumber1);
settableNumber1=0 ;
}
if (settableNumber2!=0) {
Serial.printf("Number has been set to value: %i", settableNumber2);
settableNumber2=0 ;
}
snmp.resetSetOccurred();
}
changingNumber++;
}
MIB Browser
iReasoning MIB browser is an indispensable tool for engineers to manage SNMP enabled network devices and applications. It allows users to load MIBs, issue SNMP requests, and receive traps.
More...
More...
SNMP Agent Simulator
iReasoning SNMP Agent Simulator is a Java based application that can simulate SNMPv1/v2c/v3 agents. Since it is written in pure Java, it can run on all the platforms that have Java Virtual Machine installed, including Unix, Linux, Windows, etc. It allows you to develop, test and train SNMP management applications without purchasing and maintaining expensive hardware devices.
More...
More...
Hi,
回覆刪除Can this be modified easily to work with an Arduino ethernet shield?
Thanks