SlideShare a Scribd company logo
1 of 12
Download to read offline
Didactum SNMP Manual - specifications are subject to change without notice
10/2014
SNMP User Manual
Content:
1.1 Introduction 2
1.2. MIB 2
1.3. SNMP Community settings 2
1.4 Elements Overview 3
1.5 Analog Sensors 4
1.6 Relays (Outlets) 6
1.7 Dry Contacts 7
1.8 SNMP TRAPS 8
1.9 Logic 10
2.0 Save Settings 12
Didactum SNMP Manual
10/2014
SNMP User Manual
1.1 Introduction
The standard loading involves the launch of SNMP agent, as well as sub-agents, which support appliance
functionality. After start-up and communication between the agent and sub-agent, agent processes inco-
ming requests from the network management station (manager) - SNMP PDU (Protocol Data Units), such as
Get-PDU, GetNext-PDU, Set-PDU etc., and generates a reply confirmation or Trap-PDU. PDU Traps are specified
in the monitoring system dynamically. The logic is used to link trap messages to the monitoring system
events.
1.2. MIB
Currently the following tables are available for your IP-based Didactum Monitoring System:
ctlAllElementsTable - tableofsystemelements,allowstoviewcurrentstatusofallelementsinmonitoringsystem;
сtlAnalogsTable - analog sensors table, allows you to control analog sensors connected to your system;
сtlOutletsTable - relay table, allows you to manage relays of your monitoring system;
ctlDiscretsTable - dry contacts unit table;
ctlTrapsTable - v1 traps and v2c notifications table;
ctlLogicsTable - tableoflogic,enablesautomaticmanagementinDidactum`smonitoringsystem;
1.3. SNMP Community settings
The SNMP community settings can be found in webGUI of your Didactum Monitoring Systems under tab
Preferences->SNMP. Here you find MIB file called“didactum.mib” for download.
IMPORTANT: In order for SNMP manager to be able to convert the OID in MIB tree from the numerical to a cha-
racter form, you must install the Didactum MIB file in accordance to your SNMP manager. Please read the docu-
mentation of your SNMP manager.
Fig.: InWebGUI of your Didactum remote monitoring unit you find the SNMP settings and the MIB-file for download.
Example: Check your connection to the MIB-file manager:
$ snmptranslate -On DIDACTUM-SYSTEM-MIB::didactum
.1.3.6.1.4.1.39052
Didactum SNMP Manual
10/2014
1.4 Elements Overview
Your SNMP-enabled Didactum remote monitoring device may include the following elelements
• Analog sensors;
• Discrete sensors;
• Virtual sensors (elements);
• Notifications;
• Units;
All the available elements of your monitoring system are inclueded in table ctlAllElementsTable
Expample:View available system elements
$ snmptable -Ci -Cb -v2c -cread 192.168.0.193 DIDACTUM-SYSTEM-MIB::ctlAllElementsTable
Expample: Changing the name of element ID = 20:
$ snmpset -v2c -cwrite 192.168.0.193 DIDACTUM-SYSTEM-MIB::ctlAllElementName.20 s "Magnet sensor"
DIDACTUM-SYSTEM-MIB::ctlAllElementName.20 = STRING: "Magnet sensor"
Didactum SNMP Manual
10/2014
1.5 Analog Sensors
Didactum`s analog sensors have analog inputs and analog or discrete outputs. If analog sensor is not connected
or undefined, such sensor will be in a state“not connected”.
The front panel port number to which the sensor is connected, is determined by the field ctlAnalogHardwarePort.
Expample: View the analog sensors
$ snmptable -Ci -Cb -v2c -cread 192.168.0.193 DIDACTUM-SYSTEM-MIB::ctlAnalogsTable
The sensor readings are in the field ctlAnalogValue.
Sensor with analog output can be in one of the following states defined with thresholds ctlAnalogLow, ctlAnalog-
Warning, ctlAnalogAlarm:
“'normal”- the measured value is above the threshold ctlAnalogLow, but below the thresholds ctlAnalogWarning,
ctlAnalogAlarm;
“low”- below normal, the measured value is below the threshold ctlAnalogLow, ctlAnalogWarning, ctlAnalog-
Alarm;
“warning”- above normal, the measured value is above the thresholds ctlAnalogLow, ctlAnalogWarning, but
below the threshold ctlAnalogAlarm;
“alarm”- measured value is above the thresholds ctlAnalogLow, ctlAnalogWarning, ctlAnalogAlarm;
Fields ctlAnalogAT0 (default "1.0") and ctlAnalogAT75 (default "0.0") are only for the voltage sensors and set the
coefficients to convert the measured value using the following formula:
U=ctlAnalogAT0*U0+ctlAnalogAT75
Field ctlAnalogExpression (default "x") has meaning only for Didactum`s current sensor (4-20mA), and sets the ex-
pression to convert the measured value:
Value=ctlAnalogExpression(x)
Didactum SNMP Manual
10/2014
The default readings correspond to the measured values with no additional changes.
Operations such as "+", "-", "/", "*", "%"(modulo), "^"(involution) are possible.
Following functions are supported:
"abs" - absolute value;
"sqrt" - square root;
"exp" - exponential;
"ln" - the natural logarithm;
"log" - logarithm;
"sin" - sine;
"cos" - cosine;
"tan" - tangent;
"asin" - arc sine;
"acos" - arc cosine;
"atan" - arc tangent;
Example: Setting the thresholds for a sensor with analog output with ElementID=22:
$ snmpset -v2c -cwrite 192.168.0.193 DIDACTUM-SYSTEM-MIB::ctlAnalogLow.2 s "5" 
DIDACTUM-SYSTEM-MIB::ctlAnalogWarning.2 s "35" DIDACTUM-SYSTEM-MIB::ctlAnalogAlarm.2 s "45"
DIDACTUM-SYSTEM-MIB::ctlAnalogLow.2 = STRING: "5"
DIDACTUM-SYSTEM-MIB::ctlAnalogWarning.2 = STRING: "35"
DIDACTUM-SYSTEM-MIB::ctlAnalogAlarm.2 = STRING: "45"
Sensors with a discrete output
Sensor with a discrete output may be only in two states:
“'normal”
“alarm”
If needed, the inversion is performed by setting the state '1' in a field ctlAnalogReversed (default '0').
Thresholds ctlAnalogLow, ctlAnalogWarning, ctlAnalogAlarm do not affect the status of this kind of sensors.
Sensor readings are in the field ctlAnalogValue and can take values '1.', or '0.'
Example: Setting up an inversion of the sensor with a discrete output ElementID=20:
$ snmpset -v2c -cwrite 192.168.0.193 DIDACTUM-SYSTEM-MIB::ctlAnalogReversed.0 i 1
DIDACTUM-SYSTEM-MIB::ctlAnalogReversed.0 = INTEGER: 1
Didactum SNMP Manual
10/2014
1.6 Relays (Outlets)
The integrated relays (outlets) of your networked Didactum monitoring devices can be in the following states:
"on" - switched on;
"off" - switched off;
"pulse" - pulse;
The initial state is given by the field ctlOutletInitial. The state is recorded in the field ctlOutletValue. The pulse
length in seconds is given by the field ctlOutletPulse. The relays (outlets) port number is determined by field
ctlOutletHardwarePort.
Example: View the available outlets in your IP-based monitoring system:
$ snmptable -Ci -Cb -v2c -cread 192.168.0.193 DIDACTUM-SYSTEM-MIB::ctlOutletsTable
Example: Sending 5 seconds pulse on the the relay with ElementID=31:
$ snmpset -v2c -cwrite 192.168.0.193 DIDACTUM-SYSTEM-MIB::ctlOutletPulse.0 i 5 
DIDACTUM-SYSTEM-MIB::ctlOutletValue.0 s "pulse"
DIDACTUM-SYSTEM-MIB::ctlOutletPulse.0 = INTEGER: 5
DIDACTUM-SYSTEM-MIB::ctlOutletValue.0 = STRING: "pulse"
Didactum SNMP Manual
10/2014
1.7 Dry Contacts
The dry contacts outputs of your networked Didactum monitoring system can be only in two states:
"normal" - normal;
"alarm" - alarm;
If necessary, the inversion is performed by setting a status field ctlDiscretReversed (default "0").
The port number to which dry contacts are connected is determined by the field ctlDiscretHardwarePort.
Example: View the available dry contacts of your IP-based Didactum monitoring system:
$ snmptable -Ci -Cb -v2c -cread 192.168.0.193 DIDACTUM-SYSTEM-MIB::ctlDiscretsTable
Example: Setting up an inversion of Dry Contact port with ElementID=50:
$ snmpset -v2c -cwrite 192.168.0.193 DIDACTUM-SYSTEM-MIB::ctlDiscretReversed.10 i 1
DIDACTUM-SYSTEM-MIB::ctlAnalogReversed.0 = INTEGER: 1
Didactum SNMP Manual
10/2014
1.8 SNMP TRAPS
A Trap is a notification element, that sends trap message (Trap-PDU) from the Didactum monitoring system
(agent) to the network management base station (SNMP manager). Trap elements support the formation of SNMP
trap messages ver. 1 and 2c. Trap element is meaningful only in conjunction with the mechanism of the logic of
Didactum`s monitoring system, that means, if the trap is not included in any of the existing logic, then an element
trap will not generate and send trap messages. To create a trap go to field ctlTrapRowStatus of сtlTrapsTable table.
When you install ctlTrapRowStatus in a state CreateAndWait(5) a new note is created in сtlTrapsTable table. After
creating a trap you must specify the trap destination address in a field ctlTrapServer, destination port ctlTrapPort
(default 162), version of the trap message ctlTrapVersion ("1" - ver. 1, "2" - ver. 2с), community ctlTrapCommunity.
As soon as you set up all the required parameters, you need to move field ctlTrapRowStatus in state active(1) and
complete the installation of the trap. To create a trap you can also set once all the fields in the table and move an
element into an active state by setting the field ctlTrapRowStatus in state CreateAndGo(4). To remove a trap it is
sufficient to move field ctlTrapRowStatus in state destroy(6).
Example: Creating, editing, checking and removing the item trap
$ snmptable -Ci -Cb -v2c -cread 192.168.0.193 DIDACTUM-SYSTEM-MIB::ctlTrapsTable
SNMP table: DIDACTUM-SYSTEM-MIB::ctlTrapsTable
index ID ElementID Server Port Version Community Value RowStatus
0 0 301 "192.168.0.10" 162 "1" "public" "off" active
Example: Creating new trap in table
$ snmpset -v2c -cwrite 192.168.0.193 DIDACTUM-SYSTEM-MIB::ctlTrapServer.1 s "host" 
DIDACTUM-SYSTEM-MIB::ctlTrapVersion.1 s "1" 
DIDACTUM-SYSTEM-MIB::ctlTrapCommunity.1 s "secret" 
DIDACTUM-SYSTEM-MIB::ctlTrapRowStatus.1 i createAndGo
DIDACTUM-SYSTEM-MIB::ctlTrapServer.1 = STRING: "host"
DIDACTUM-SYSTEM-MIB::ctlTrapVersion.1 = STRING: "1"
DIDACTUM-SYSTEM-MIB::ctlTrapCommunity.1 = STRING: "secret"
DIDACTUM-SYSTEM-MIB::ctlTrapRowStatus.1 = INTEGER: createAndGo(4)
Example: Reading traps table
$ snmptable -Ci -Cb -v2c -cread 192.168.0.193 DIDACTUM-SYSTEM-MIB::ctlTrapsTable
SNMP table: DIDACTUM-SYSTEM-MIB::ctlTrapsTable
index ID ElementID Server Port Version Community Value RowStatus
0 0 301 "192.168.0.10" 162 "1" "public" "off" active
1 1 302 "host" 162 "1" "secret" "off" active
Didactum SNMP Manual
10/2014
Example: send a test trap messages for the newly created trap element
$ snmpset -v2c -cwrite 192.168.0.193 DIDACTUM-SYSTEM-MIB::ctlTrapValue.1 s "on"
DIDACTUM-SYSTEM-MIB::ctlTrapValue.1 = STRING: "on"
If the settings are correct, the trap message must be delivered to the SNMP manager.
Example: Removing Trap element
$ snmpset -v2c -cwrite 192.168.0.193 DIDACTUM-SYSTEM-MIB::ctlTrapRowStatus.1 i destroy
DIDACTUM-SYSTEM-MIB::ctlTrapRowStatus.1 = INTEGER: destroy(6)
Description line of trap-message
When sending a trap message description line is formed in the body:
"Trap (name: <name>, ID: <id>) was worked"
where
<name> - Trap element name in field ctlAllElementName of ctlAllElementsTable table;
<id> - Trap element ID in field ctlAllElementID of ctlAllElementsTable table;
The name of the trap can be changed in table ctlAllElementsTable
Didactum SNMP Manual
10/2014
1.9 Logic
Logic - is a mechanism for the automatic management.
The logic is described by a line in the following form
(SENSORID OLDSTATE-NEWSTATE OPERATOR ...){SENSORID1:TIMEOUT NEWSTATE2 OPERATOR2 ...}
where
SENSORID - unique sensor ID.
OLDSTATE-NEWSTATE - sensor status codes, with which the condition is true in transition. The values of both para-
meters should be the same.
OPERATOR - the operator code with which the result of conditions is calculated.
SENSORID1 - Unique sensor id, which status should be changed under the conditions of the logical scheme.
TIMEOUT - A timeout condition.
NEWSTATE2 - The status code where you want to move the element (relay).
OPERATOR2 - Symbol '+'.
Status codes are:
'normal': 1;
'low': 2;
'warning': 3;
'alarm': 4;
'on': 5;
'off': 6.
'not connected': 7.
'pulse': 8.
Operators codes:
'and': symbol '+';
'or': symbol '|'.
Manage logic
To create a logic use field ctlLogicRowStatus. Moving field ctlLogicRowStatus in a state CreateAndWait(5) will
create a new note in the table сtlLogicsTable. After creating the logic it is necessary to specify its name in a field
ctlLogicName and logic description in a field ctlLogicDescription.
After creating logic description, the logic becomes active, as indicated by value active(1) in a field ctlLogicRowStatus.
Turn off the logic is performed by setting a field ctlLogicDisable desired interval in seconds.
Turn on logic is performed by setting the field ctlLogicDisable value of '0'.
Remove logic is performed by setting the field ctlLogicRowStatus in a state destroy(6).
Didactum SNMP Manual
10/2014
Example: Creating, editing, checking and removing logic
Reading the logic table:
$ snmptable -Ci -Cb -v2c -cread 192.168.0.193 DIDACTUM-SYSTEM-MIB::ctlLogicsTable
SNMP table: DIDACTUM-SYSTEM-MIB::ctlLogicsTable
index ID Name Description Disable RowStatus
1 1 "Logic scheme" "(20 4 - 4){34:0 8}" 0 active
Create new logic:
$ snmpset -v2c -cwrite 192.168.0.193 DIDACTUM-SYSTEM-MIB::ctlLogicName.2 s "New Logic" 
DIDACTUM-SYSTEM-MIB::ctlLogicDescription.2 s "(20 1-1){301:0 5}" $ snmpset -v2c -cwrite
DIDACTUM-SYSTEM-MIB::ctlTrapRowStatus.2 i createAndGo
DIDACTUM-SYSTEM-MIB::ctlLogicName.2 = STRING: "New Logic"
DIDACTUM-SYSTEM-MIB::ctlLogicDescription.2 = STRING: "(20 1-1){301:0 5}"
DIDACTUM-SYSTEM-MIB::ctlTrapRowStatus.2 = INTEGER: createAndGo(4)
View the logic table which you created:
$ snmptable -Ci -Cb -v2c -cread 192.168.0.193 DIDACTUM-SYSTEM-MIB::ctlLogicsTable
SNMP table: DIDACTUM-SYSTEM-MIB::ctlLogicsTable
index ID Name Description Disable RowStatus
1 1 "Logic scheme" "(20 4-4){34:0 8}" 0 active
2 2 "New Logic" "(20 1-1){301:0 5}" 0 active
Now we have two logics:
Logic "Logic scheme" is triggered when an element of the system with ID = 20 goes to state "alarm"(4), and provi-
des an incentive "pulse"(8) on the element with ID=34 (relay or outlet, see table above) immediately (through 0 с);
Logic "New Logic" is triggered, when an element of the system with ID=20 goes to state "normal"(1), and provides
an incentive "on"(8) on the element with ID=301 (Trap element, see table above) immediately (through 0 с);
Disabling the logic for 60 seconds:
$ snmpset -v2c -cwrite 192.168.0.193 DIDACTUM-SYSTEM-MIB::ctlLogicDisable.2 i 60
DIDACTUM-SYSTEM-MIB::ctlLogicDisable.2 = INTEGER: 60
Didactum SNMP Manual
10/2014
Verify that the logic is disabled:
$ snmpget -v2c -cwrite 192.168.0.193 DIDACTUM-SYSTEM-MIB::ctlLogicDisable.2
DIDACTUM-SYSTEM-MIB::ctlLogicDisable.2 = INTEGER: 1
Remove Logic:
$ snmpset -v2c -cwrite 192.168.0.193 DIDACTUM-SYSTEM-MIB::ctlLogicRowStatus.2 i destroy
DIDACTUM-SYSTEM-MIB::ctlLogicRowStatus.2 = INTEGER: destroy(6)
=> When you removed the logic, the logic table should have initial appearance.
2.0 Save Settings
NAND Flash microchip is used as a re-writable memory of the monitoring system and it has a limited record re-
sources. Therefore, sensors settings that are created in the process, must be stored by the user in the flash me-
mory directly using a specific command.
To record the sensors settings via SNMP a special resource is used - ctlUnitSaveToFlash. Installation of any non-zero
values in the resource ctlUnitSaveToFlash leads to saving of the current settings on the flash memory device.
In case of a successful saving of settings the resource ctlUnitSaveToFlash will return to "0", otherwise, it will return
an error code that occurred during the recording settings.
Example: Saving settings into flash memory of Didactum`s monitoring device
$ snmpset -v2c -cwrite 192.168.0.193 DIDACTUm-SYSTEM-MIB::ctlUnitSaveToFlash.0 i 1
DIDACTUM-SYSTEM-MIB::ctlUnitSaveToFlash.0 = INTEGER: 1

More Related Content

What's hot

Verilog 語法教學
Verilog 語法教學 Verilog 語法教學
Verilog 語法教學 艾鍗科技
 
От Java Threads к лямбдам, Андрей Родионов
От Java Threads к лямбдам, Андрей РодионовОт Java Threads к лямбдам, Андрей Родионов
От Java Threads к лямбдам, Андрей РодионовYandex
 
All VLSI programs
All VLSI programsAll VLSI programs
All VLSI programsGouthaman V
 
COMUNICACION SERIAL DSPIC30F3014 Y MATLAB
COMUNICACION SERIAL DSPIC30F3014 Y MATLABCOMUNICACION SERIAL DSPIC30F3014 Y MATLAB
COMUNICACION SERIAL DSPIC30F3014 Y MATLABCarlos Buitron Quispe
 
Integration Project Inspection 3
Integration Project Inspection 3Integration Project Inspection 3
Integration Project Inspection 3Dillon Lee
 
Roberto Gallea: Workshop Arduino, giorno #2 Arduino + Processing
Roberto Gallea: Workshop Arduino, giorno #2 Arduino + ProcessingRoberto Gallea: Workshop Arduino, giorno #2 Arduino + Processing
Roberto Gallea: Workshop Arduino, giorno #2 Arduino + ProcessingDemetrio Siragusa
 
Accelerating Habanero-Java Program with OpenCL Generation
Accelerating Habanero-Java Program with OpenCL GenerationAccelerating Habanero-Java Program with OpenCL Generation
Accelerating Habanero-Java Program with OpenCL GenerationAkihiro Hayashi
 
W8_2: Inside the UoS Educational Processor
W8_2: Inside the UoS Educational ProcessorW8_2: Inside the UoS Educational Processor
W8_2: Inside the UoS Educational ProcessorDaniel Roggen
 
Programming at Compile Time
Programming at Compile TimeProgramming at Compile Time
Programming at Compile TimeemBO_Conference
 
Day2 Verilog HDL Basic
Day2 Verilog HDL BasicDay2 Verilog HDL Basic
Day2 Verilog HDL BasicRon Liu
 
ISCA Final Presentaiton - Compilations
ISCA Final Presentaiton -  CompilationsISCA Final Presentaiton -  Compilations
ISCA Final Presentaiton - CompilationsHSA Foundation
 

What's hot (15)

TVM VTA (TSIM)
TVM VTA (TSIM) TVM VTA (TSIM)
TVM VTA (TSIM)
 
Verilog 語法教學
Verilog 語法教學 Verilog 語法教學
Verilog 語法教學
 
От Java Threads к лямбдам, Андрей Родионов
От Java Threads к лямбдам, Андрей РодионовОт Java Threads к лямбдам, Андрей Родионов
От Java Threads к лямбдам, Андрей Родионов
 
All VLSI programs
All VLSI programsAll VLSI programs
All VLSI programs
 
STANDARD CELL LIBRARY DESIGN
STANDARD CELL LIBRARY DESIGNSTANDARD CELL LIBRARY DESIGN
STANDARD CELL LIBRARY DESIGN
 
COMUNICACION SERIAL DSPIC30F3014 Y MATLAB
COMUNICACION SERIAL DSPIC30F3014 Y MATLABCOMUNICACION SERIAL DSPIC30F3014 Y MATLAB
COMUNICACION SERIAL DSPIC30F3014 Y MATLAB
 
Integration Project Inspection 3
Integration Project Inspection 3Integration Project Inspection 3
Integration Project Inspection 3
 
Simware framework hello world: A webinar
Simware framework hello world: A webinarSimware framework hello world: A webinar
Simware framework hello world: A webinar
 
Roberto Gallea: Workshop Arduino, giorno #2 Arduino + Processing
Roberto Gallea: Workshop Arduino, giorno #2 Arduino + ProcessingRoberto Gallea: Workshop Arduino, giorno #2 Arduino + Processing
Roberto Gallea: Workshop Arduino, giorno #2 Arduino + Processing
 
Accelerating Habanero-Java Program with OpenCL Generation
Accelerating Habanero-Java Program with OpenCL GenerationAccelerating Habanero-Java Program with OpenCL Generation
Accelerating Habanero-Java Program with OpenCL Generation
 
W8_2: Inside the UoS Educational Processor
W8_2: Inside the UoS Educational ProcessorW8_2: Inside the UoS Educational Processor
W8_2: Inside the UoS Educational Processor
 
Programming at Compile Time
Programming at Compile TimeProgramming at Compile Time
Programming at Compile Time
 
Day2 Verilog HDL Basic
Day2 Verilog HDL BasicDay2 Verilog HDL Basic
Day2 Verilog HDL Basic
 
Behavioral modelling in VHDL
Behavioral modelling in VHDLBehavioral modelling in VHDL
Behavioral modelling in VHDL
 
ISCA Final Presentaiton - Compilations
ISCA Final Presentaiton -  CompilationsISCA Final Presentaiton -  Compilations
ISCA Final Presentaiton - Compilations
 

Similar to Didactum SNMP Manual

PID Tuning using Ziegler Nicholas - MATLAB Approach
PID Tuning using Ziegler Nicholas - MATLAB ApproachPID Tuning using Ziegler Nicholas - MATLAB Approach
PID Tuning using Ziegler Nicholas - MATLAB ApproachWaleed El-Badry
 
Ns2: Introduction - Part I
Ns2: Introduction - Part INs2: Introduction - Part I
Ns2: Introduction - Part IAjit Nayak
 
20081114 Friday Food iLabt Bart Joris
20081114 Friday Food iLabt Bart Joris20081114 Friday Food iLabt Bart Joris
20081114 Friday Food iLabt Bart Jorisimec.archive
 
9Tuts.Com New CCNA 200-120 New CCNA New Questions 2
9Tuts.Com New CCNA 200-120 New CCNA   New Questions 29Tuts.Com New CCNA 200-120 New CCNA   New Questions 2
9Tuts.Com New CCNA 200-120 New CCNA New Questions 2Lori Head
 
Wpa supplicant introduction
Wpa supplicant introductionWpa supplicant introduction
Wpa supplicant introductionawkman
 
NS-2 Tutorial
NS-2 TutorialNS-2 Tutorial
NS-2 Tutorialcode453
 
Real-time in the real world: DIRT in production
Real-time in the real world: DIRT in productionReal-time in the real world: DIRT in production
Real-time in the real world: DIRT in productionbcantrill
 
Data Acquisition
Data AcquisitionData Acquisition
Data Acquisitionazhar557
 
TinyOS 2.1 Tutorial: Hands-on Session
TinyOS 2.1 Tutorial: Hands-on SessionTinyOS 2.1 Tutorial: Hands-on Session
TinyOS 2.1 Tutorial: Hands-on SessionRazvan Musaloiu-E.
 
DPDK & Layer 4 Packet Processing
DPDK & Layer 4 Packet ProcessingDPDK & Layer 4 Packet Processing
DPDK & Layer 4 Packet ProcessingMichelle Holley
 
QuecPython_Weather_Station_Demo_Tutorial.pdf
QuecPython_Weather_Station_Demo_Tutorial.pdfQuecPython_Weather_Station_Demo_Tutorial.pdf
QuecPython_Weather_Station_Demo_Tutorial.pdfJohnEerl
 
Making Custom Oscilloscope Measurements
Making Custom Oscilloscope MeasurementsMaking Custom Oscilloscope Measurements
Making Custom Oscilloscope Measurementsteledynelecroy
 
UVM_TB_20220621_slides-1.pdf
UVM_TB_20220621_slides-1.pdfUVM_TB_20220621_slides-1.pdf
UVM_TB_20220621_slides-1.pdfSamHoney6
 

Similar to Didactum SNMP Manual (20)

PID Tuning using Ziegler Nicholas - MATLAB Approach
PID Tuning using Ziegler Nicholas - MATLAB ApproachPID Tuning using Ziegler Nicholas - MATLAB Approach
PID Tuning using Ziegler Nicholas - MATLAB Approach
 
Ns2: Introduction - Part I
Ns2: Introduction - Part INs2: Introduction - Part I
Ns2: Introduction - Part I
 
chapter 4
chapter 4chapter 4
chapter 4
 
20081114 Friday Food iLabt Bart Joris
20081114 Friday Food iLabt Bart Joris20081114 Friday Food iLabt Bart Joris
20081114 Friday Food iLabt Bart Joris
 
Ns2 introduction 2
Ns2 introduction 2Ns2 introduction 2
Ns2 introduction 2
 
9Tuts.Com New CCNA 200-120 New CCNA New Questions 2
9Tuts.Com New CCNA 200-120 New CCNA   New Questions 29Tuts.Com New CCNA 200-120 New CCNA   New Questions 2
9Tuts.Com New CCNA 200-120 New CCNA New Questions 2
 
Wpa supplicant introduction
Wpa supplicant introductionWpa supplicant introduction
Wpa supplicant introduction
 
NS-2 Tutorial
NS-2 TutorialNS-2 Tutorial
NS-2 Tutorial
 
Real-time in the real world: DIRT in production
Real-time in the real world: DIRT in productionReal-time in the real world: DIRT in production
Real-time in the real world: DIRT in production
 
Ns network simulator
Ns network simulatorNs network simulator
Ns network simulator
 
Scada System
Scada  SystemScada  System
Scada System
 
Data Acquisition
Data AcquisitionData Acquisition
Data Acquisition
 
TinyOS 2.1 Tutorial: Hands-on Session
TinyOS 2.1 Tutorial: Hands-on SessionTinyOS 2.1 Tutorial: Hands-on Session
TinyOS 2.1 Tutorial: Hands-on Session
 
DPDK & Layer 4 Packet Processing
DPDK & Layer 4 Packet ProcessingDPDK & Layer 4 Packet Processing
DPDK & Layer 4 Packet Processing
 
Telelab 2
Telelab 2Telelab 2
Telelab 2
 
Tac xenta 300 specification sheet
Tac xenta 300 specification sheetTac xenta 300 specification sheet
Tac xenta 300 specification sheet
 
QuecPython_Weather_Station_Demo_Tutorial.pdf
QuecPython_Weather_Station_Demo_Tutorial.pdfQuecPython_Weather_Station_Demo_Tutorial.pdf
QuecPython_Weather_Station_Demo_Tutorial.pdf
 
Making Custom Oscilloscope Measurements
Making Custom Oscilloscope MeasurementsMaking Custom Oscilloscope Measurements
Making Custom Oscilloscope Measurements
 
UVM_TB_20220621_slides-1.pdf
UVM_TB_20220621_slides-1.pdfUVM_TB_20220621_slides-1.pdf
UVM_TB_20220621_slides-1.pdf
 
Fpga creating counter with internal clock
Fpga   creating counter with internal clockFpga   creating counter with internal clock
Fpga creating counter with internal clock
 

More from Didactum

Präzise Überwachung und Kontrolle der Temperatur mit SNMP-fähiger AKCP Temper...
Präzise Überwachung und Kontrolle der Temperatur mit SNMP-fähiger AKCP Temper...Präzise Überwachung und Kontrolle der Temperatur mit SNMP-fähiger AKCP Temper...
Präzise Überwachung und Kontrolle der Temperatur mit SNMP-fähiger AKCP Temper...Didactum
 
AKCP E-opto16 Erweiterungsmodul
AKCP E-opto16 ErweiterungsmodulAKCP E-opto16 Erweiterungsmodul
AKCP E-opto16 ErweiterungsmodulDidactum
 
AKCP E-sensor8 Erweiterungsmodul
AKCP E-sensor8 ErweiterungsmodulAKCP E-sensor8 Erweiterungsmodul
AKCP E-sensor8 ErweiterungsmodulDidactum
 
AKCP securityProbe5ESV-X20 / X60 Alarm Server - Ganzheitliche Überwachung kri...
AKCP securityProbe5ESV-X20 / X60 Alarm Server - Ganzheitliche Überwachung kri...AKCP securityProbe5ESV-X20 / X60 Alarm Server - Ganzheitliche Überwachung kri...
AKCP securityProbe5ESV-X20 / X60 Alarm Server - Ganzheitliche Überwachung kri...Didactum
 
AKCP securityProbe 5E-X60 - Überwachung von bis zu 60 potentialfreien Kontakten
AKCP securityProbe 5E-X60 - Überwachung von bis zu 60 potentialfreien KontaktenAKCP securityProbe 5E-X60 - Überwachung von bis zu 60 potentialfreien Kontakten
AKCP securityProbe 5E-X60 - Überwachung von bis zu 60 potentialfreien KontaktenDidactum
 
Infrastruktur-Überwachung mit dem AKCP securityProbe 5E-X20 Alarm Server
Infrastruktur-Überwachung mit dem AKCP securityProbe 5E-X20 Alarm ServerInfrastruktur-Überwachung mit dem AKCP securityProbe 5E-X20 Alarm Server
Infrastruktur-Überwachung mit dem AKCP securityProbe 5E-X20 Alarm ServerDidactum
 
AKCP securityProbe 5E Alarm Server - Umwelt- und Sicherheitsüberwachung & Zut...
AKCP securityProbe 5E Alarm Server - Umwelt- und Sicherheitsüberwachung & Zut...AKCP securityProbe 5E Alarm Server - Umwelt- und Sicherheitsüberwachung & Zut...
AKCP securityProbe 5E Alarm Server - Umwelt- und Sicherheitsüberwachung & Zut...Didactum
 
AKCP securityProbe 5ES-X20 / X60 Alarm Server - Überwachung wichtiger Räume u...
AKCP securityProbe 5ES-X20 / X60 Alarm Server - Überwachung wichtiger Räume u...AKCP securityProbe 5ES-X20 / X60 Alarm Server - Überwachung wichtiger Räume u...
AKCP securityProbe 5ES-X20 / X60 Alarm Server - Überwachung wichtiger Räume u...Didactum
 
AKCP sensorProbe8-X60 Alarm Server mit 60 potentialfreien Kontakten
AKCP sensorProbe8-X60 Alarm Server mit 60 potentialfreien KontaktenAKCP sensorProbe8-X60 Alarm Server mit 60 potentialfreien Kontakten
AKCP sensorProbe8-X60 Alarm Server mit 60 potentialfreien KontaktenDidactum
 
AKCP sensorProbe8 Alarm Server
AKCP sensorProbe8 Alarm ServerAKCP sensorProbe8 Alarm Server
AKCP sensorProbe8 Alarm ServerDidactum
 
AKCP sensorProbe4 Alarm Server mit 4 Sensor Ports
AKCP sensorProbe4 Alarm Server mit 4 Sensor PortsAKCP sensorProbe4 Alarm Server mit 4 Sensor Ports
AKCP sensorProbe4 Alarm Server mit 4 Sensor PortsDidactum
 
AKCP sensorProbe2 - SNMP-fähiger Alarm Server
AKCP sensorProbe2 - SNMP-fähiger Alarm ServerAKCP sensorProbe2 - SNMP-fähiger Alarm Server
AKCP sensorProbe2 - SNMP-fähiger Alarm ServerDidactum
 
Schnelleinstieg Didactum Monitoring System 50
Schnelleinstieg Didactum Monitoring System 50Schnelleinstieg Didactum Monitoring System 50
Schnelleinstieg Didactum Monitoring System 50Didactum
 
Anleitung Didactum DC Stromwandler / Strom-Messumformer
Anleitung Didactum DC Stromwandler / Strom-MessumformerAnleitung Didactum DC Stromwandler / Strom-Messumformer
Anleitung Didactum DC Stromwandler / Strom-MessumformerDidactum
 
Anleitung Didactum AC Stromwandler / Strom-Messumformer
Anleitung Didactum AC Stromwandler / Strom-MessumformerAnleitung Didactum AC Stromwandler / Strom-Messumformer
Anleitung Didactum AC Stromwandler / Strom-MessumformerDidactum
 
Anleitung Didactum Rauchsensor
Anleitung Didactum RauchsensorAnleitung Didactum Rauchsensor
Anleitung Didactum RauchsensorDidactum
 
Rack Monitoring Einheit - Überwachung sensibler Technik- und Serverschränke
Rack Monitoring Einheit - Überwachung sensibler Technik- und ServerschränkeRack Monitoring Einheit - Überwachung sensibler Technik- und Serverschränke
Rack Monitoring Einheit - Überwachung sensibler Technik- und ServerschränkeDidactum
 
Dry Contact Erweiterungseinheit für Didactum Monitoring Systeme
Dry Contact Erweiterungseinheit für Didactum Monitoring SystemeDry Contact Erweiterungseinheit für Didactum Monitoring Systeme
Dry Contact Erweiterungseinheit für Didactum Monitoring SystemeDidactum
 
Didactum Erweiterungseinheit - Anschluss weiterer Sensoren an Ihr Didactum Mo...
Didactum Erweiterungseinheit - Anschluss weiterer Sensoren an Ihr Didactum Mo...Didactum Erweiterungseinheit - Anschluss weiterer Sensoren an Ihr Didactum Mo...
Didactum Erweiterungseinheit - Anschluss weiterer Sensoren an Ihr Didactum Mo...Didactum
 
Kombinierte Sensoreinheit - Rauch, Temperatur und Luftfeuchtigkeit
Kombinierte Sensoreinheit - Rauch, Temperatur und LuftfeuchtigkeitKombinierte Sensoreinheit - Rauch, Temperatur und Luftfeuchtigkeit
Kombinierte Sensoreinheit - Rauch, Temperatur und LuftfeuchtigkeitDidactum
 

More from Didactum (20)

Präzise Überwachung und Kontrolle der Temperatur mit SNMP-fähiger AKCP Temper...
Präzise Überwachung und Kontrolle der Temperatur mit SNMP-fähiger AKCP Temper...Präzise Überwachung und Kontrolle der Temperatur mit SNMP-fähiger AKCP Temper...
Präzise Überwachung und Kontrolle der Temperatur mit SNMP-fähiger AKCP Temper...
 
AKCP E-opto16 Erweiterungsmodul
AKCP E-opto16 ErweiterungsmodulAKCP E-opto16 Erweiterungsmodul
AKCP E-opto16 Erweiterungsmodul
 
AKCP E-sensor8 Erweiterungsmodul
AKCP E-sensor8 ErweiterungsmodulAKCP E-sensor8 Erweiterungsmodul
AKCP E-sensor8 Erweiterungsmodul
 
AKCP securityProbe5ESV-X20 / X60 Alarm Server - Ganzheitliche Überwachung kri...
AKCP securityProbe5ESV-X20 / X60 Alarm Server - Ganzheitliche Überwachung kri...AKCP securityProbe5ESV-X20 / X60 Alarm Server - Ganzheitliche Überwachung kri...
AKCP securityProbe5ESV-X20 / X60 Alarm Server - Ganzheitliche Überwachung kri...
 
AKCP securityProbe 5E-X60 - Überwachung von bis zu 60 potentialfreien Kontakten
AKCP securityProbe 5E-X60 - Überwachung von bis zu 60 potentialfreien KontaktenAKCP securityProbe 5E-X60 - Überwachung von bis zu 60 potentialfreien Kontakten
AKCP securityProbe 5E-X60 - Überwachung von bis zu 60 potentialfreien Kontakten
 
Infrastruktur-Überwachung mit dem AKCP securityProbe 5E-X20 Alarm Server
Infrastruktur-Überwachung mit dem AKCP securityProbe 5E-X20 Alarm ServerInfrastruktur-Überwachung mit dem AKCP securityProbe 5E-X20 Alarm Server
Infrastruktur-Überwachung mit dem AKCP securityProbe 5E-X20 Alarm Server
 
AKCP securityProbe 5E Alarm Server - Umwelt- und Sicherheitsüberwachung & Zut...
AKCP securityProbe 5E Alarm Server - Umwelt- und Sicherheitsüberwachung & Zut...AKCP securityProbe 5E Alarm Server - Umwelt- und Sicherheitsüberwachung & Zut...
AKCP securityProbe 5E Alarm Server - Umwelt- und Sicherheitsüberwachung & Zut...
 
AKCP securityProbe 5ES-X20 / X60 Alarm Server - Überwachung wichtiger Räume u...
AKCP securityProbe 5ES-X20 / X60 Alarm Server - Überwachung wichtiger Räume u...AKCP securityProbe 5ES-X20 / X60 Alarm Server - Überwachung wichtiger Räume u...
AKCP securityProbe 5ES-X20 / X60 Alarm Server - Überwachung wichtiger Räume u...
 
AKCP sensorProbe8-X60 Alarm Server mit 60 potentialfreien Kontakten
AKCP sensorProbe8-X60 Alarm Server mit 60 potentialfreien KontaktenAKCP sensorProbe8-X60 Alarm Server mit 60 potentialfreien Kontakten
AKCP sensorProbe8-X60 Alarm Server mit 60 potentialfreien Kontakten
 
AKCP sensorProbe8 Alarm Server
AKCP sensorProbe8 Alarm ServerAKCP sensorProbe8 Alarm Server
AKCP sensorProbe8 Alarm Server
 
AKCP sensorProbe4 Alarm Server mit 4 Sensor Ports
AKCP sensorProbe4 Alarm Server mit 4 Sensor PortsAKCP sensorProbe4 Alarm Server mit 4 Sensor Ports
AKCP sensorProbe4 Alarm Server mit 4 Sensor Ports
 
AKCP sensorProbe2 - SNMP-fähiger Alarm Server
AKCP sensorProbe2 - SNMP-fähiger Alarm ServerAKCP sensorProbe2 - SNMP-fähiger Alarm Server
AKCP sensorProbe2 - SNMP-fähiger Alarm Server
 
Schnelleinstieg Didactum Monitoring System 50
Schnelleinstieg Didactum Monitoring System 50Schnelleinstieg Didactum Monitoring System 50
Schnelleinstieg Didactum Monitoring System 50
 
Anleitung Didactum DC Stromwandler / Strom-Messumformer
Anleitung Didactum DC Stromwandler / Strom-MessumformerAnleitung Didactum DC Stromwandler / Strom-Messumformer
Anleitung Didactum DC Stromwandler / Strom-Messumformer
 
Anleitung Didactum AC Stromwandler / Strom-Messumformer
Anleitung Didactum AC Stromwandler / Strom-MessumformerAnleitung Didactum AC Stromwandler / Strom-Messumformer
Anleitung Didactum AC Stromwandler / Strom-Messumformer
 
Anleitung Didactum Rauchsensor
Anleitung Didactum RauchsensorAnleitung Didactum Rauchsensor
Anleitung Didactum Rauchsensor
 
Rack Monitoring Einheit - Überwachung sensibler Technik- und Serverschränke
Rack Monitoring Einheit - Überwachung sensibler Technik- und ServerschränkeRack Monitoring Einheit - Überwachung sensibler Technik- und Serverschränke
Rack Monitoring Einheit - Überwachung sensibler Technik- und Serverschränke
 
Dry Contact Erweiterungseinheit für Didactum Monitoring Systeme
Dry Contact Erweiterungseinheit für Didactum Monitoring SystemeDry Contact Erweiterungseinheit für Didactum Monitoring Systeme
Dry Contact Erweiterungseinheit für Didactum Monitoring Systeme
 
Didactum Erweiterungseinheit - Anschluss weiterer Sensoren an Ihr Didactum Mo...
Didactum Erweiterungseinheit - Anschluss weiterer Sensoren an Ihr Didactum Mo...Didactum Erweiterungseinheit - Anschluss weiterer Sensoren an Ihr Didactum Mo...
Didactum Erweiterungseinheit - Anschluss weiterer Sensoren an Ihr Didactum Mo...
 
Kombinierte Sensoreinheit - Rauch, Temperatur und Luftfeuchtigkeit
Kombinierte Sensoreinheit - Rauch, Temperatur und LuftfeuchtigkeitKombinierte Sensoreinheit - Rauch, Temperatur und Luftfeuchtigkeit
Kombinierte Sensoreinheit - Rauch, Temperatur und Luftfeuchtigkeit
 

Recently uploaded

Tech Startup Growth Hacking 101 - Basics on Growth Marketing
Tech Startup Growth Hacking 101  - Basics on Growth MarketingTech Startup Growth Hacking 101  - Basics on Growth Marketing
Tech Startup Growth Hacking 101 - Basics on Growth MarketingShawn Pang
 
FULL ENJOY - 9953040155 Call Girls in Chhatarpur | Delhi
FULL ENJOY - 9953040155 Call Girls in Chhatarpur | DelhiFULL ENJOY - 9953040155 Call Girls in Chhatarpur | Delhi
FULL ENJOY - 9953040155 Call Girls in Chhatarpur | DelhiMalviyaNagarCallGirl
 
Lean: From Theory to Practice — One City’s (and Library’s) Lean Story… Abridged
Lean: From Theory to Practice — One City’s (and Library’s) Lean Story… AbridgedLean: From Theory to Practice — One City’s (and Library’s) Lean Story… Abridged
Lean: From Theory to Practice — One City’s (and Library’s) Lean Story… AbridgedKaiNexus
 
BEST Call Girls In Old Faridabad ✨ 9773824855 ✨ Escorts Service In Delhi Ncr,
BEST Call Girls In Old Faridabad ✨ 9773824855 ✨ Escorts Service In Delhi Ncr,BEST Call Girls In Old Faridabad ✨ 9773824855 ✨ Escorts Service In Delhi Ncr,
BEST Call Girls In Old Faridabad ✨ 9773824855 ✨ Escorts Service In Delhi Ncr,noida100girls
 
RE Capital's Visionary Leadership under Newman Leech
RE Capital's Visionary Leadership under Newman LeechRE Capital's Visionary Leadership under Newman Leech
RE Capital's Visionary Leadership under Newman LeechNewman George Leech
 
(8264348440) 🔝 Call Girls In Hauz Khas 🔝 Delhi NCR
(8264348440) 🔝 Call Girls In Hauz Khas 🔝 Delhi NCR(8264348440) 🔝 Call Girls In Hauz Khas 🔝 Delhi NCR
(8264348440) 🔝 Call Girls In Hauz Khas 🔝 Delhi NCRsoniya singh
 
BEST Call Girls In Greater Noida ✨ 9773824855 ✨ Escorts Service In Delhi Ncr,
BEST Call Girls In Greater Noida ✨ 9773824855 ✨ Escorts Service In Delhi Ncr,BEST Call Girls In Greater Noida ✨ 9773824855 ✨ Escorts Service In Delhi Ncr,
BEST Call Girls In Greater Noida ✨ 9773824855 ✨ Escorts Service In Delhi Ncr,noida100girls
 
Call Girls In Kishangarh Delhi ❤️8860477959 Good Looking Escorts In 24/7 Delh...
Call Girls In Kishangarh Delhi ❤️8860477959 Good Looking Escorts In 24/7 Delh...Call Girls In Kishangarh Delhi ❤️8860477959 Good Looking Escorts In 24/7 Delh...
Call Girls In Kishangarh Delhi ❤️8860477959 Good Looking Escorts In 24/7 Delh...lizamodels9
 
Keppel Ltd. 1Q 2024 Business Update Presentation Slides
Keppel Ltd. 1Q 2024 Business Update  Presentation SlidesKeppel Ltd. 1Q 2024 Business Update  Presentation Slides
Keppel Ltd. 1Q 2024 Business Update Presentation SlidesKeppelCorporation
 
(8264348440) 🔝 Call Girls In Keshav Puram 🔝 Delhi NCR
(8264348440) 🔝 Call Girls In Keshav Puram 🔝 Delhi NCR(8264348440) 🔝 Call Girls In Keshav Puram 🔝 Delhi NCR
(8264348440) 🔝 Call Girls In Keshav Puram 🔝 Delhi NCRsoniya singh
 
Catalogue ONG NUOC PPR DE NHAT .pdf
Catalogue ONG NUOC PPR DE NHAT      .pdfCatalogue ONG NUOC PPR DE NHAT      .pdf
Catalogue ONG NUOC PPR DE NHAT .pdfOrient Homes
 
Progress Report - Oracle Database Analyst Summit
Progress  Report - Oracle Database Analyst SummitProgress  Report - Oracle Database Analyst Summit
Progress Report - Oracle Database Analyst SummitHolger Mueller
 
BEST Call Girls In BELLMONT HOTEL ✨ 9773824855 ✨ Escorts Service In Delhi Ncr,
BEST Call Girls In BELLMONT HOTEL ✨ 9773824855 ✨ Escorts Service In Delhi Ncr,BEST Call Girls In BELLMONT HOTEL ✨ 9773824855 ✨ Escorts Service In Delhi Ncr,
BEST Call Girls In BELLMONT HOTEL ✨ 9773824855 ✨ Escorts Service In Delhi Ncr,noida100girls
 
M.C Lodges -- Guest House in Jhang.
M.C Lodges --  Guest House in Jhang.M.C Lodges --  Guest House in Jhang.
M.C Lodges -- Guest House in Jhang.Aaiza Hassan
 
The CMO Survey - Highlights and Insights Report - Spring 2024
The CMO Survey - Highlights and Insights Report - Spring 2024The CMO Survey - Highlights and Insights Report - Spring 2024
The CMO Survey - Highlights and Insights Report - Spring 2024christinemoorman
 
/:Call Girls In Indirapuram Ghaziabad ➥9990211544 Independent Best Escorts In...
/:Call Girls In Indirapuram Ghaziabad ➥9990211544 Independent Best Escorts In.../:Call Girls In Indirapuram Ghaziabad ➥9990211544 Independent Best Escorts In...
/:Call Girls In Indirapuram Ghaziabad ➥9990211544 Independent Best Escorts In...lizamodels9
 
Marketing Management Business Plan_My Sweet Creations
Marketing Management Business Plan_My Sweet CreationsMarketing Management Business Plan_My Sweet Creations
Marketing Management Business Plan_My Sweet Creationsnakalysalcedo61
 
Call Girls in Mehrauli Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Mehrauli Delhi 💯Call Us 🔝8264348440🔝Call Girls in Mehrauli Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Mehrauli Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
Investment analysis and portfolio management
Investment analysis and portfolio managementInvestment analysis and portfolio management
Investment analysis and portfolio managementJunaidKhan750825
 

Recently uploaded (20)

Tech Startup Growth Hacking 101 - Basics on Growth Marketing
Tech Startup Growth Hacking 101  - Basics on Growth MarketingTech Startup Growth Hacking 101  - Basics on Growth Marketing
Tech Startup Growth Hacking 101 - Basics on Growth Marketing
 
FULL ENJOY - 9953040155 Call Girls in Chhatarpur | Delhi
FULL ENJOY - 9953040155 Call Girls in Chhatarpur | DelhiFULL ENJOY - 9953040155 Call Girls in Chhatarpur | Delhi
FULL ENJOY - 9953040155 Call Girls in Chhatarpur | Delhi
 
Lean: From Theory to Practice — One City’s (and Library’s) Lean Story… Abridged
Lean: From Theory to Practice — One City’s (and Library’s) Lean Story… AbridgedLean: From Theory to Practice — One City’s (and Library’s) Lean Story… Abridged
Lean: From Theory to Practice — One City’s (and Library’s) Lean Story… Abridged
 
BEST Call Girls In Old Faridabad ✨ 9773824855 ✨ Escorts Service In Delhi Ncr,
BEST Call Girls In Old Faridabad ✨ 9773824855 ✨ Escorts Service In Delhi Ncr,BEST Call Girls In Old Faridabad ✨ 9773824855 ✨ Escorts Service In Delhi Ncr,
BEST Call Girls In Old Faridabad ✨ 9773824855 ✨ Escorts Service In Delhi Ncr,
 
RE Capital's Visionary Leadership under Newman Leech
RE Capital's Visionary Leadership under Newman LeechRE Capital's Visionary Leadership under Newman Leech
RE Capital's Visionary Leadership under Newman Leech
 
(8264348440) 🔝 Call Girls In Hauz Khas 🔝 Delhi NCR
(8264348440) 🔝 Call Girls In Hauz Khas 🔝 Delhi NCR(8264348440) 🔝 Call Girls In Hauz Khas 🔝 Delhi NCR
(8264348440) 🔝 Call Girls In Hauz Khas 🔝 Delhi NCR
 
BEST Call Girls In Greater Noida ✨ 9773824855 ✨ Escorts Service In Delhi Ncr,
BEST Call Girls In Greater Noida ✨ 9773824855 ✨ Escorts Service In Delhi Ncr,BEST Call Girls In Greater Noida ✨ 9773824855 ✨ Escorts Service In Delhi Ncr,
BEST Call Girls In Greater Noida ✨ 9773824855 ✨ Escorts Service In Delhi Ncr,
 
Call Girls In Kishangarh Delhi ❤️8860477959 Good Looking Escorts In 24/7 Delh...
Call Girls In Kishangarh Delhi ❤️8860477959 Good Looking Escorts In 24/7 Delh...Call Girls In Kishangarh Delhi ❤️8860477959 Good Looking Escorts In 24/7 Delh...
Call Girls In Kishangarh Delhi ❤️8860477959 Good Looking Escorts In 24/7 Delh...
 
Keppel Ltd. 1Q 2024 Business Update Presentation Slides
Keppel Ltd. 1Q 2024 Business Update  Presentation SlidesKeppel Ltd. 1Q 2024 Business Update  Presentation Slides
Keppel Ltd. 1Q 2024 Business Update Presentation Slides
 
(8264348440) 🔝 Call Girls In Keshav Puram 🔝 Delhi NCR
(8264348440) 🔝 Call Girls In Keshav Puram 🔝 Delhi NCR(8264348440) 🔝 Call Girls In Keshav Puram 🔝 Delhi NCR
(8264348440) 🔝 Call Girls In Keshav Puram 🔝 Delhi NCR
 
Catalogue ONG NUOC PPR DE NHAT .pdf
Catalogue ONG NUOC PPR DE NHAT      .pdfCatalogue ONG NUOC PPR DE NHAT      .pdf
Catalogue ONG NUOC PPR DE NHAT .pdf
 
Progress Report - Oracle Database Analyst Summit
Progress  Report - Oracle Database Analyst SummitProgress  Report - Oracle Database Analyst Summit
Progress Report - Oracle Database Analyst Summit
 
BEST Call Girls In BELLMONT HOTEL ✨ 9773824855 ✨ Escorts Service In Delhi Ncr,
BEST Call Girls In BELLMONT HOTEL ✨ 9773824855 ✨ Escorts Service In Delhi Ncr,BEST Call Girls In BELLMONT HOTEL ✨ 9773824855 ✨ Escorts Service In Delhi Ncr,
BEST Call Girls In BELLMONT HOTEL ✨ 9773824855 ✨ Escorts Service In Delhi Ncr,
 
M.C Lodges -- Guest House in Jhang.
M.C Lodges --  Guest House in Jhang.M.C Lodges --  Guest House in Jhang.
M.C Lodges -- Guest House in Jhang.
 
The CMO Survey - Highlights and Insights Report - Spring 2024
The CMO Survey - Highlights and Insights Report - Spring 2024The CMO Survey - Highlights and Insights Report - Spring 2024
The CMO Survey - Highlights and Insights Report - Spring 2024
 
/:Call Girls In Indirapuram Ghaziabad ➥9990211544 Independent Best Escorts In...
/:Call Girls In Indirapuram Ghaziabad ➥9990211544 Independent Best Escorts In.../:Call Girls In Indirapuram Ghaziabad ➥9990211544 Independent Best Escorts In...
/:Call Girls In Indirapuram Ghaziabad ➥9990211544 Independent Best Escorts In...
 
Marketing Management Business Plan_My Sweet Creations
Marketing Management Business Plan_My Sweet CreationsMarketing Management Business Plan_My Sweet Creations
Marketing Management Business Plan_My Sweet Creations
 
Call Girls in Mehrauli Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Mehrauli Delhi 💯Call Us 🔝8264348440🔝Call Girls in Mehrauli Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Mehrauli Delhi 💯Call Us 🔝8264348440🔝
 
Investment analysis and portfolio management
Investment analysis and portfolio managementInvestment analysis and portfolio management
Investment analysis and portfolio management
 
Best Practices for Implementing an External Recruiting Partnership
Best Practices for Implementing an External Recruiting PartnershipBest Practices for Implementing an External Recruiting Partnership
Best Practices for Implementing an External Recruiting Partnership
 

Didactum SNMP Manual

  • 1. Didactum SNMP Manual - specifications are subject to change without notice 10/2014 SNMP User Manual Content: 1.1 Introduction 2 1.2. MIB 2 1.3. SNMP Community settings 2 1.4 Elements Overview 3 1.5 Analog Sensors 4 1.6 Relays (Outlets) 6 1.7 Dry Contacts 7 1.8 SNMP TRAPS 8 1.9 Logic 10 2.0 Save Settings 12
  • 2. Didactum SNMP Manual 10/2014 SNMP User Manual 1.1 Introduction The standard loading involves the launch of SNMP agent, as well as sub-agents, which support appliance functionality. After start-up and communication between the agent and sub-agent, agent processes inco- ming requests from the network management station (manager) - SNMP PDU (Protocol Data Units), such as Get-PDU, GetNext-PDU, Set-PDU etc., and generates a reply confirmation or Trap-PDU. PDU Traps are specified in the monitoring system dynamically. The logic is used to link trap messages to the monitoring system events. 1.2. MIB Currently the following tables are available for your IP-based Didactum Monitoring System: ctlAllElementsTable - tableofsystemelements,allowstoviewcurrentstatusofallelementsinmonitoringsystem; сtlAnalogsTable - analog sensors table, allows you to control analog sensors connected to your system; сtlOutletsTable - relay table, allows you to manage relays of your monitoring system; ctlDiscretsTable - dry contacts unit table; ctlTrapsTable - v1 traps and v2c notifications table; ctlLogicsTable - tableoflogic,enablesautomaticmanagementinDidactum`smonitoringsystem; 1.3. SNMP Community settings The SNMP community settings can be found in webGUI of your Didactum Monitoring Systems under tab Preferences->SNMP. Here you find MIB file called“didactum.mib” for download. IMPORTANT: In order for SNMP manager to be able to convert the OID in MIB tree from the numerical to a cha- racter form, you must install the Didactum MIB file in accordance to your SNMP manager. Please read the docu- mentation of your SNMP manager. Fig.: InWebGUI of your Didactum remote monitoring unit you find the SNMP settings and the MIB-file for download. Example: Check your connection to the MIB-file manager: $ snmptranslate -On DIDACTUM-SYSTEM-MIB::didactum .1.3.6.1.4.1.39052
  • 3. Didactum SNMP Manual 10/2014 1.4 Elements Overview Your SNMP-enabled Didactum remote monitoring device may include the following elelements • Analog sensors; • Discrete sensors; • Virtual sensors (elements); • Notifications; • Units; All the available elements of your monitoring system are inclueded in table ctlAllElementsTable Expample:View available system elements $ snmptable -Ci -Cb -v2c -cread 192.168.0.193 DIDACTUM-SYSTEM-MIB::ctlAllElementsTable Expample: Changing the name of element ID = 20: $ snmpset -v2c -cwrite 192.168.0.193 DIDACTUM-SYSTEM-MIB::ctlAllElementName.20 s "Magnet sensor" DIDACTUM-SYSTEM-MIB::ctlAllElementName.20 = STRING: "Magnet sensor"
  • 4. Didactum SNMP Manual 10/2014 1.5 Analog Sensors Didactum`s analog sensors have analog inputs and analog or discrete outputs. If analog sensor is not connected or undefined, such sensor will be in a state“not connected”. The front panel port number to which the sensor is connected, is determined by the field ctlAnalogHardwarePort. Expample: View the analog sensors $ snmptable -Ci -Cb -v2c -cread 192.168.0.193 DIDACTUM-SYSTEM-MIB::ctlAnalogsTable The sensor readings are in the field ctlAnalogValue. Sensor with analog output can be in one of the following states defined with thresholds ctlAnalogLow, ctlAnalog- Warning, ctlAnalogAlarm: “'normal”- the measured value is above the threshold ctlAnalogLow, but below the thresholds ctlAnalogWarning, ctlAnalogAlarm; “low”- below normal, the measured value is below the threshold ctlAnalogLow, ctlAnalogWarning, ctlAnalog- Alarm; “warning”- above normal, the measured value is above the thresholds ctlAnalogLow, ctlAnalogWarning, but below the threshold ctlAnalogAlarm; “alarm”- measured value is above the thresholds ctlAnalogLow, ctlAnalogWarning, ctlAnalogAlarm; Fields ctlAnalogAT0 (default "1.0") and ctlAnalogAT75 (default "0.0") are only for the voltage sensors and set the coefficients to convert the measured value using the following formula: U=ctlAnalogAT0*U0+ctlAnalogAT75 Field ctlAnalogExpression (default "x") has meaning only for Didactum`s current sensor (4-20mA), and sets the ex- pression to convert the measured value: Value=ctlAnalogExpression(x)
  • 5. Didactum SNMP Manual 10/2014 The default readings correspond to the measured values with no additional changes. Operations such as "+", "-", "/", "*", "%"(modulo), "^"(involution) are possible. Following functions are supported: "abs" - absolute value; "sqrt" - square root; "exp" - exponential; "ln" - the natural logarithm; "log" - logarithm; "sin" - sine; "cos" - cosine; "tan" - tangent; "asin" - arc sine; "acos" - arc cosine; "atan" - arc tangent; Example: Setting the thresholds for a sensor with analog output with ElementID=22: $ snmpset -v2c -cwrite 192.168.0.193 DIDACTUM-SYSTEM-MIB::ctlAnalogLow.2 s "5" DIDACTUM-SYSTEM-MIB::ctlAnalogWarning.2 s "35" DIDACTUM-SYSTEM-MIB::ctlAnalogAlarm.2 s "45" DIDACTUM-SYSTEM-MIB::ctlAnalogLow.2 = STRING: "5" DIDACTUM-SYSTEM-MIB::ctlAnalogWarning.2 = STRING: "35" DIDACTUM-SYSTEM-MIB::ctlAnalogAlarm.2 = STRING: "45" Sensors with a discrete output Sensor with a discrete output may be only in two states: “'normal” “alarm” If needed, the inversion is performed by setting the state '1' in a field ctlAnalogReversed (default '0'). Thresholds ctlAnalogLow, ctlAnalogWarning, ctlAnalogAlarm do not affect the status of this kind of sensors. Sensor readings are in the field ctlAnalogValue and can take values '1.', or '0.' Example: Setting up an inversion of the sensor with a discrete output ElementID=20: $ snmpset -v2c -cwrite 192.168.0.193 DIDACTUM-SYSTEM-MIB::ctlAnalogReversed.0 i 1 DIDACTUM-SYSTEM-MIB::ctlAnalogReversed.0 = INTEGER: 1
  • 6. Didactum SNMP Manual 10/2014 1.6 Relays (Outlets) The integrated relays (outlets) of your networked Didactum monitoring devices can be in the following states: "on" - switched on; "off" - switched off; "pulse" - pulse; The initial state is given by the field ctlOutletInitial. The state is recorded in the field ctlOutletValue. The pulse length in seconds is given by the field ctlOutletPulse. The relays (outlets) port number is determined by field ctlOutletHardwarePort. Example: View the available outlets in your IP-based monitoring system: $ snmptable -Ci -Cb -v2c -cread 192.168.0.193 DIDACTUM-SYSTEM-MIB::ctlOutletsTable Example: Sending 5 seconds pulse on the the relay with ElementID=31: $ snmpset -v2c -cwrite 192.168.0.193 DIDACTUM-SYSTEM-MIB::ctlOutletPulse.0 i 5 DIDACTUM-SYSTEM-MIB::ctlOutletValue.0 s "pulse" DIDACTUM-SYSTEM-MIB::ctlOutletPulse.0 = INTEGER: 5 DIDACTUM-SYSTEM-MIB::ctlOutletValue.0 = STRING: "pulse"
  • 7. Didactum SNMP Manual 10/2014 1.7 Dry Contacts The dry contacts outputs of your networked Didactum monitoring system can be only in two states: "normal" - normal; "alarm" - alarm; If necessary, the inversion is performed by setting a status field ctlDiscretReversed (default "0"). The port number to which dry contacts are connected is determined by the field ctlDiscretHardwarePort. Example: View the available dry contacts of your IP-based Didactum monitoring system: $ snmptable -Ci -Cb -v2c -cread 192.168.0.193 DIDACTUM-SYSTEM-MIB::ctlDiscretsTable Example: Setting up an inversion of Dry Contact port with ElementID=50: $ snmpset -v2c -cwrite 192.168.0.193 DIDACTUM-SYSTEM-MIB::ctlDiscretReversed.10 i 1 DIDACTUM-SYSTEM-MIB::ctlAnalogReversed.0 = INTEGER: 1
  • 8. Didactum SNMP Manual 10/2014 1.8 SNMP TRAPS A Trap is a notification element, that sends trap message (Trap-PDU) from the Didactum monitoring system (agent) to the network management base station (SNMP manager). Trap elements support the formation of SNMP trap messages ver. 1 and 2c. Trap element is meaningful only in conjunction with the mechanism of the logic of Didactum`s monitoring system, that means, if the trap is not included in any of the existing logic, then an element trap will not generate and send trap messages. To create a trap go to field ctlTrapRowStatus of сtlTrapsTable table. When you install ctlTrapRowStatus in a state CreateAndWait(5) a new note is created in сtlTrapsTable table. After creating a trap you must specify the trap destination address in a field ctlTrapServer, destination port ctlTrapPort (default 162), version of the trap message ctlTrapVersion ("1" - ver. 1, "2" - ver. 2с), community ctlTrapCommunity. As soon as you set up all the required parameters, you need to move field ctlTrapRowStatus in state active(1) and complete the installation of the trap. To create a trap you can also set once all the fields in the table and move an element into an active state by setting the field ctlTrapRowStatus in state CreateAndGo(4). To remove a trap it is sufficient to move field ctlTrapRowStatus in state destroy(6). Example: Creating, editing, checking and removing the item trap $ snmptable -Ci -Cb -v2c -cread 192.168.0.193 DIDACTUM-SYSTEM-MIB::ctlTrapsTable SNMP table: DIDACTUM-SYSTEM-MIB::ctlTrapsTable index ID ElementID Server Port Version Community Value RowStatus 0 0 301 "192.168.0.10" 162 "1" "public" "off" active Example: Creating new trap in table $ snmpset -v2c -cwrite 192.168.0.193 DIDACTUM-SYSTEM-MIB::ctlTrapServer.1 s "host" DIDACTUM-SYSTEM-MIB::ctlTrapVersion.1 s "1" DIDACTUM-SYSTEM-MIB::ctlTrapCommunity.1 s "secret" DIDACTUM-SYSTEM-MIB::ctlTrapRowStatus.1 i createAndGo DIDACTUM-SYSTEM-MIB::ctlTrapServer.1 = STRING: "host" DIDACTUM-SYSTEM-MIB::ctlTrapVersion.1 = STRING: "1" DIDACTUM-SYSTEM-MIB::ctlTrapCommunity.1 = STRING: "secret" DIDACTUM-SYSTEM-MIB::ctlTrapRowStatus.1 = INTEGER: createAndGo(4) Example: Reading traps table $ snmptable -Ci -Cb -v2c -cread 192.168.0.193 DIDACTUM-SYSTEM-MIB::ctlTrapsTable SNMP table: DIDACTUM-SYSTEM-MIB::ctlTrapsTable index ID ElementID Server Port Version Community Value RowStatus 0 0 301 "192.168.0.10" 162 "1" "public" "off" active 1 1 302 "host" 162 "1" "secret" "off" active
  • 9. Didactum SNMP Manual 10/2014 Example: send a test trap messages for the newly created trap element $ snmpset -v2c -cwrite 192.168.0.193 DIDACTUM-SYSTEM-MIB::ctlTrapValue.1 s "on" DIDACTUM-SYSTEM-MIB::ctlTrapValue.1 = STRING: "on" If the settings are correct, the trap message must be delivered to the SNMP manager. Example: Removing Trap element $ snmpset -v2c -cwrite 192.168.0.193 DIDACTUM-SYSTEM-MIB::ctlTrapRowStatus.1 i destroy DIDACTUM-SYSTEM-MIB::ctlTrapRowStatus.1 = INTEGER: destroy(6) Description line of trap-message When sending a trap message description line is formed in the body: "Trap (name: <name>, ID: <id>) was worked" where <name> - Trap element name in field ctlAllElementName of ctlAllElementsTable table; <id> - Trap element ID in field ctlAllElementID of ctlAllElementsTable table; The name of the trap can be changed in table ctlAllElementsTable
  • 10. Didactum SNMP Manual 10/2014 1.9 Logic Logic - is a mechanism for the automatic management. The logic is described by a line in the following form (SENSORID OLDSTATE-NEWSTATE OPERATOR ...){SENSORID1:TIMEOUT NEWSTATE2 OPERATOR2 ...} where SENSORID - unique sensor ID. OLDSTATE-NEWSTATE - sensor status codes, with which the condition is true in transition. The values of both para- meters should be the same. OPERATOR - the operator code with which the result of conditions is calculated. SENSORID1 - Unique sensor id, which status should be changed under the conditions of the logical scheme. TIMEOUT - A timeout condition. NEWSTATE2 - The status code where you want to move the element (relay). OPERATOR2 - Symbol '+'. Status codes are: 'normal': 1; 'low': 2; 'warning': 3; 'alarm': 4; 'on': 5; 'off': 6. 'not connected': 7. 'pulse': 8. Operators codes: 'and': symbol '+'; 'or': symbol '|'. Manage logic To create a logic use field ctlLogicRowStatus. Moving field ctlLogicRowStatus in a state CreateAndWait(5) will create a new note in the table сtlLogicsTable. After creating the logic it is necessary to specify its name in a field ctlLogicName and logic description in a field ctlLogicDescription. After creating logic description, the logic becomes active, as indicated by value active(1) in a field ctlLogicRowStatus. Turn off the logic is performed by setting a field ctlLogicDisable desired interval in seconds. Turn on logic is performed by setting the field ctlLogicDisable value of '0'. Remove logic is performed by setting the field ctlLogicRowStatus in a state destroy(6).
  • 11. Didactum SNMP Manual 10/2014 Example: Creating, editing, checking and removing logic Reading the logic table: $ snmptable -Ci -Cb -v2c -cread 192.168.0.193 DIDACTUM-SYSTEM-MIB::ctlLogicsTable SNMP table: DIDACTUM-SYSTEM-MIB::ctlLogicsTable index ID Name Description Disable RowStatus 1 1 "Logic scheme" "(20 4 - 4){34:0 8}" 0 active Create new logic: $ snmpset -v2c -cwrite 192.168.0.193 DIDACTUM-SYSTEM-MIB::ctlLogicName.2 s "New Logic" DIDACTUM-SYSTEM-MIB::ctlLogicDescription.2 s "(20 1-1){301:0 5}" $ snmpset -v2c -cwrite DIDACTUM-SYSTEM-MIB::ctlTrapRowStatus.2 i createAndGo DIDACTUM-SYSTEM-MIB::ctlLogicName.2 = STRING: "New Logic" DIDACTUM-SYSTEM-MIB::ctlLogicDescription.2 = STRING: "(20 1-1){301:0 5}" DIDACTUM-SYSTEM-MIB::ctlTrapRowStatus.2 = INTEGER: createAndGo(4) View the logic table which you created: $ snmptable -Ci -Cb -v2c -cread 192.168.0.193 DIDACTUM-SYSTEM-MIB::ctlLogicsTable SNMP table: DIDACTUM-SYSTEM-MIB::ctlLogicsTable index ID Name Description Disable RowStatus 1 1 "Logic scheme" "(20 4-4){34:0 8}" 0 active 2 2 "New Logic" "(20 1-1){301:0 5}" 0 active Now we have two logics: Logic "Logic scheme" is triggered when an element of the system with ID = 20 goes to state "alarm"(4), and provi- des an incentive "pulse"(8) on the element with ID=34 (relay or outlet, see table above) immediately (through 0 с); Logic "New Logic" is triggered, when an element of the system with ID=20 goes to state "normal"(1), and provides an incentive "on"(8) on the element with ID=301 (Trap element, see table above) immediately (through 0 с); Disabling the logic for 60 seconds: $ snmpset -v2c -cwrite 192.168.0.193 DIDACTUM-SYSTEM-MIB::ctlLogicDisable.2 i 60 DIDACTUM-SYSTEM-MIB::ctlLogicDisable.2 = INTEGER: 60
  • 12. Didactum SNMP Manual 10/2014 Verify that the logic is disabled: $ snmpget -v2c -cwrite 192.168.0.193 DIDACTUM-SYSTEM-MIB::ctlLogicDisable.2 DIDACTUM-SYSTEM-MIB::ctlLogicDisable.2 = INTEGER: 1 Remove Logic: $ snmpset -v2c -cwrite 192.168.0.193 DIDACTUM-SYSTEM-MIB::ctlLogicRowStatus.2 i destroy DIDACTUM-SYSTEM-MIB::ctlLogicRowStatus.2 = INTEGER: destroy(6) => When you removed the logic, the logic table should have initial appearance. 2.0 Save Settings NAND Flash microchip is used as a re-writable memory of the monitoring system and it has a limited record re- sources. Therefore, sensors settings that are created in the process, must be stored by the user in the flash me- mory directly using a specific command. To record the sensors settings via SNMP a special resource is used - ctlUnitSaveToFlash. Installation of any non-zero values in the resource ctlUnitSaveToFlash leads to saving of the current settings on the flash memory device. In case of a successful saving of settings the resource ctlUnitSaveToFlash will return to "0", otherwise, it will return an error code that occurred during the recording settings. Example: Saving settings into flash memory of Didactum`s monitoring device $ snmpset -v2c -cwrite 192.168.0.193 DIDACTUm-SYSTEM-MIB::ctlUnitSaveToFlash.0 i 1 DIDACTUM-SYSTEM-MIB::ctlUnitSaveToFlash.0 = INTEGER: 1