SlideShare ist ein Scribd-Unternehmen logo
1 von 12
Downloaden Sie, um offline zu lesen
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

Weitere ähnliche Inhalte

Was ist angesagt?

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
 

Was ist angesagt? (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
 

Ähnlich wie 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
 

Ähnlich wie 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
 

Mehr von 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
 

Mehr von 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
 

Kürzlich hochgeladen

A DAY IN THE LIFE OF A SALESMAN / WOMAN
A DAY IN THE LIFE OF A  SALESMAN / WOMANA DAY IN THE LIFE OF A  SALESMAN / WOMAN
A DAY IN THE LIFE OF A SALESMAN / WOMANIlamathiKannappan
 
Regression analysis: Simple Linear Regression Multiple Linear Regression
Regression analysis:  Simple Linear Regression Multiple Linear RegressionRegression analysis:  Simple Linear Regression Multiple Linear Regression
Regression analysis: Simple Linear Regression Multiple Linear RegressionRavindra Nath Shukla
 
MONA 98765-12871 CALL GIRLS IN LUDHIANA LUDHIANA CALL GIRL
MONA 98765-12871 CALL GIRLS IN LUDHIANA LUDHIANA CALL GIRLMONA 98765-12871 CALL GIRLS IN LUDHIANA LUDHIANA CALL GIRL
MONA 98765-12871 CALL GIRLS IN LUDHIANA LUDHIANA CALL GIRLSeo
 
Monthly Social Media Update April 2024 pptx.pptx
Monthly Social Media Update April 2024 pptx.pptxMonthly Social Media Update April 2024 pptx.pptx
Monthly Social Media Update April 2024 pptx.pptxAndy Lambert
 
Yaroslav Rozhankivskyy: Три складові і три передумови максимальної продуктивн...
Yaroslav Rozhankivskyy: Три складові і три передумови максимальної продуктивн...Yaroslav Rozhankivskyy: Три складові і три передумови максимальної продуктивн...
Yaroslav Rozhankivskyy: Три складові і три передумови максимальної продуктивн...Lviv Startup Club
 
Call Girls Navi Mumbai Just Call 9907093804 Top Class Call Girl Service Avail...
Call Girls Navi Mumbai Just Call 9907093804 Top Class Call Girl Service Avail...Call Girls Navi Mumbai Just Call 9907093804 Top Class Call Girl Service Avail...
Call Girls Navi Mumbai Just Call 9907093804 Top Class Call Girl Service Avail...Dipal Arora
 
Creating Low-Code Loan Applications using the Trisotech Mortgage Feature Set
Creating Low-Code Loan Applications using the Trisotech Mortgage Feature SetCreating Low-Code Loan Applications using the Trisotech Mortgage Feature Set
Creating Low-Code Loan Applications using the Trisotech Mortgage Feature SetDenis Gagné
 
KYC-Verified Accounts: Helping Companies Handle Challenging Regulatory Enviro...
KYC-Verified Accounts: Helping Companies Handle Challenging Regulatory Enviro...KYC-Verified Accounts: Helping Companies Handle Challenging Regulatory Enviro...
KYC-Verified Accounts: Helping Companies Handle Challenging Regulatory Enviro...Any kyc Account
 
Mysore Call Girls 8617370543 WhatsApp Number 24x7 Best Services
Mysore Call Girls 8617370543 WhatsApp Number 24x7 Best ServicesMysore Call Girls 8617370543 WhatsApp Number 24x7 Best Services
Mysore Call Girls 8617370543 WhatsApp Number 24x7 Best ServicesDipal Arora
 
Call Girls In Holiday Inn Express Gurugram➥99902@11544 ( Best price)100% Genu...
Call Girls In Holiday Inn Express Gurugram➥99902@11544 ( Best price)100% Genu...Call Girls In Holiday Inn Express Gurugram➥99902@11544 ( Best price)100% Genu...
Call Girls In Holiday Inn Express Gurugram➥99902@11544 ( Best price)100% Genu...lizamodels9
 
Call Girls in Delhi, Escort Service Available 24x7 in Delhi 959961-/-3876
Call Girls in Delhi, Escort Service Available 24x7 in Delhi 959961-/-3876Call Girls in Delhi, Escort Service Available 24x7 in Delhi 959961-/-3876
Call Girls in Delhi, Escort Service Available 24x7 in Delhi 959961-/-3876dlhescort
 
Unlocking the Secrets of Affiliate Marketing.pdf
Unlocking the Secrets of Affiliate Marketing.pdfUnlocking the Secrets of Affiliate Marketing.pdf
Unlocking the Secrets of Affiliate Marketing.pdfOnline Income Engine
 
VIP Call Girls In Saharaganj ( Lucknow ) 🔝 8923113531 🔝 Cash Payment (COD) 👒
VIP Call Girls In Saharaganj ( Lucknow  ) 🔝 8923113531 🔝  Cash Payment (COD) 👒VIP Call Girls In Saharaganj ( Lucknow  ) 🔝 8923113531 🔝  Cash Payment (COD) 👒
VIP Call Girls In Saharaganj ( Lucknow ) 🔝 8923113531 🔝 Cash Payment (COD) 👒anilsa9823
 
Call Girls Jp Nagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Bang...
Call Girls Jp Nagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Bang...Call Girls Jp Nagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Bang...
Call Girls Jp Nagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Bang...amitlee9823
 
Lucknow 💋 Escorts in Lucknow - 450+ Call Girl Cash Payment 8923113531 Neha Th...
Lucknow 💋 Escorts in Lucknow - 450+ Call Girl Cash Payment 8923113531 Neha Th...Lucknow 💋 Escorts in Lucknow - 450+ Call Girl Cash Payment 8923113531 Neha Th...
Lucknow 💋 Escorts in Lucknow - 450+ Call Girl Cash Payment 8923113531 Neha Th...anilsa9823
 
Best Basmati Rice Manufacturers in India
Best Basmati Rice Manufacturers in IndiaBest Basmati Rice Manufacturers in India
Best Basmati Rice Manufacturers in IndiaShree Krishna Exports
 
7.pdf This presentation captures many uses and the significance of the number...
7.pdf This presentation captures many uses and the significance of the number...7.pdf This presentation captures many uses and the significance of the number...
7.pdf This presentation captures many uses and the significance of the number...Paul Menig
 
B.COM Unit – 4 ( CORPORATE SOCIAL RESPONSIBILITY ( CSR ).pptx
B.COM Unit – 4 ( CORPORATE SOCIAL RESPONSIBILITY ( CSR ).pptxB.COM Unit – 4 ( CORPORATE SOCIAL RESPONSIBILITY ( CSR ).pptx
B.COM Unit – 4 ( CORPORATE SOCIAL RESPONSIBILITY ( CSR ).pptxpriyanshujha201
 
HONOR Veterans Event Keynote by Michael Hawkins
HONOR Veterans Event Keynote by Michael HawkinsHONOR Veterans Event Keynote by Michael Hawkins
HONOR Veterans Event Keynote by Michael HawkinsMichael W. Hawkins
 

Kürzlich hochgeladen (20)

A DAY IN THE LIFE OF A SALESMAN / WOMAN
A DAY IN THE LIFE OF A  SALESMAN / WOMANA DAY IN THE LIFE OF A  SALESMAN / WOMAN
A DAY IN THE LIFE OF A SALESMAN / WOMAN
 
Regression analysis: Simple Linear Regression Multiple Linear Regression
Regression analysis:  Simple Linear Regression Multiple Linear RegressionRegression analysis:  Simple Linear Regression Multiple Linear Regression
Regression analysis: Simple Linear Regression Multiple Linear Regression
 
MONA 98765-12871 CALL GIRLS IN LUDHIANA LUDHIANA CALL GIRL
MONA 98765-12871 CALL GIRLS IN LUDHIANA LUDHIANA CALL GIRLMONA 98765-12871 CALL GIRLS IN LUDHIANA LUDHIANA CALL GIRL
MONA 98765-12871 CALL GIRLS IN LUDHIANA LUDHIANA CALL GIRL
 
Monthly Social Media Update April 2024 pptx.pptx
Monthly Social Media Update April 2024 pptx.pptxMonthly Social Media Update April 2024 pptx.pptx
Monthly Social Media Update April 2024 pptx.pptx
 
unwanted pregnancy Kit [+918133066128] Abortion Pills IN Dubai UAE Abudhabi
unwanted pregnancy Kit [+918133066128] Abortion Pills IN Dubai UAE Abudhabiunwanted pregnancy Kit [+918133066128] Abortion Pills IN Dubai UAE Abudhabi
unwanted pregnancy Kit [+918133066128] Abortion Pills IN Dubai UAE Abudhabi
 
Yaroslav Rozhankivskyy: Три складові і три передумови максимальної продуктивн...
Yaroslav Rozhankivskyy: Три складові і три передумови максимальної продуктивн...Yaroslav Rozhankivskyy: Три складові і три передумови максимальної продуктивн...
Yaroslav Rozhankivskyy: Три складові і три передумови максимальної продуктивн...
 
Call Girls Navi Mumbai Just Call 9907093804 Top Class Call Girl Service Avail...
Call Girls Navi Mumbai Just Call 9907093804 Top Class Call Girl Service Avail...Call Girls Navi Mumbai Just Call 9907093804 Top Class Call Girl Service Avail...
Call Girls Navi Mumbai Just Call 9907093804 Top Class Call Girl Service Avail...
 
Creating Low-Code Loan Applications using the Trisotech Mortgage Feature Set
Creating Low-Code Loan Applications using the Trisotech Mortgage Feature SetCreating Low-Code Loan Applications using the Trisotech Mortgage Feature Set
Creating Low-Code Loan Applications using the Trisotech Mortgage Feature Set
 
KYC-Verified Accounts: Helping Companies Handle Challenging Regulatory Enviro...
KYC-Verified Accounts: Helping Companies Handle Challenging Regulatory Enviro...KYC-Verified Accounts: Helping Companies Handle Challenging Regulatory Enviro...
KYC-Verified Accounts: Helping Companies Handle Challenging Regulatory Enviro...
 
Mysore Call Girls 8617370543 WhatsApp Number 24x7 Best Services
Mysore Call Girls 8617370543 WhatsApp Number 24x7 Best ServicesMysore Call Girls 8617370543 WhatsApp Number 24x7 Best Services
Mysore Call Girls 8617370543 WhatsApp Number 24x7 Best Services
 
Call Girls In Holiday Inn Express Gurugram➥99902@11544 ( Best price)100% Genu...
Call Girls In Holiday Inn Express Gurugram➥99902@11544 ( Best price)100% Genu...Call Girls In Holiday Inn Express Gurugram➥99902@11544 ( Best price)100% Genu...
Call Girls In Holiday Inn Express Gurugram➥99902@11544 ( Best price)100% Genu...
 
Call Girls in Delhi, Escort Service Available 24x7 in Delhi 959961-/-3876
Call Girls in Delhi, Escort Service Available 24x7 in Delhi 959961-/-3876Call Girls in Delhi, Escort Service Available 24x7 in Delhi 959961-/-3876
Call Girls in Delhi, Escort Service Available 24x7 in Delhi 959961-/-3876
 
Unlocking the Secrets of Affiliate Marketing.pdf
Unlocking the Secrets of Affiliate Marketing.pdfUnlocking the Secrets of Affiliate Marketing.pdf
Unlocking the Secrets of Affiliate Marketing.pdf
 
VIP Call Girls In Saharaganj ( Lucknow ) 🔝 8923113531 🔝 Cash Payment (COD) 👒
VIP Call Girls In Saharaganj ( Lucknow  ) 🔝 8923113531 🔝  Cash Payment (COD) 👒VIP Call Girls In Saharaganj ( Lucknow  ) 🔝 8923113531 🔝  Cash Payment (COD) 👒
VIP Call Girls In Saharaganj ( Lucknow ) 🔝 8923113531 🔝 Cash Payment (COD) 👒
 
Call Girls Jp Nagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Bang...
Call Girls Jp Nagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Bang...Call Girls Jp Nagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Bang...
Call Girls Jp Nagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Bang...
 
Lucknow 💋 Escorts in Lucknow - 450+ Call Girl Cash Payment 8923113531 Neha Th...
Lucknow 💋 Escorts in Lucknow - 450+ Call Girl Cash Payment 8923113531 Neha Th...Lucknow 💋 Escorts in Lucknow - 450+ Call Girl Cash Payment 8923113531 Neha Th...
Lucknow 💋 Escorts in Lucknow - 450+ Call Girl Cash Payment 8923113531 Neha Th...
 
Best Basmati Rice Manufacturers in India
Best Basmati Rice Manufacturers in IndiaBest Basmati Rice Manufacturers in India
Best Basmati Rice Manufacturers in India
 
7.pdf This presentation captures many uses and the significance of the number...
7.pdf This presentation captures many uses and the significance of the number...7.pdf This presentation captures many uses and the significance of the number...
7.pdf This presentation captures many uses and the significance of the number...
 
B.COM Unit – 4 ( CORPORATE SOCIAL RESPONSIBILITY ( CSR ).pptx
B.COM Unit – 4 ( CORPORATE SOCIAL RESPONSIBILITY ( CSR ).pptxB.COM Unit – 4 ( CORPORATE SOCIAL RESPONSIBILITY ( CSR ).pptx
B.COM Unit – 4 ( CORPORATE SOCIAL RESPONSIBILITY ( CSR ).pptx
 
HONOR Veterans Event Keynote by Michael Hawkins
HONOR Veterans Event Keynote by Michael HawkinsHONOR Veterans Event Keynote by Michael Hawkins
HONOR Veterans Event Keynote by Michael Hawkins
 

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