Start a Conversation

Unsolved

Y

4 Posts

2398

January 13th, 2023 00:00

Dell EMC Recovery Point SNMP Configuration

Hi,

I would like to monitoring Recovery Point with telegraf and snmp service.

I configured snmp in RP Machine. And my settings like this:

yalcinkyildiz_0-1673598155804.png

 

And my telegraf.conf file like this:

 

[[inputs.snmp]]
   agents = [ "RP-IP:161" ]
   timeout = "10s"
   retries = 3
   version = 2

   community = "monitoring"
#   ## SNMPv3 auth parameters
   sec_name = "SNMP-username"
   auth_protocol = "MD5"      # Values: "MD5", "SHA", ""
   auth_password = "SNMP-pass"
   sec_level = "authNoPriv"   # Values: "noAuthNoPriv", "authNoPriv", "authPriv"
#   #context_name = ""
#   priv_protocol = "AES"         # Values: "DES", "AES", ""
#   priv_password = "priv_pass"


  name = "EMC-RP-MIB"
  [[inputs.snmp.field]]
    name = "hostName"
    oid = "EMC-RP-MIB::hostName.0"
  [[inputs.snmp.field]]
    name = "kboxName"
    oid = "EMC-RP-MIB::kboxName.0"
  [[inputs.snmp.field]]
    name = "volumeName"
    oid = "EMC-RP-MIB::volumeName.0"
  [[inputs.snmp.field]]
    name = "groupName"
    oid = "EMC-RP-MIB::groupName.0"
  [[inputs.snmp.field]]
    name = "eventSummary"
    oid = "EMC-RP-MIB::eventSummary.0"
  [[inputs.snmp.field]]
    name = "eventDescription"
    oid = "EMC-RP-MIB::eventDescription.0"
  [[inputs.snmp.field]]
    name = "dateAndTime"
    oid = "EMC-RP-MIB::dateAndTime.0"
  [[inputs.snmp.field]]
    name = "eventID"
    oid = "EMC-RP-MIB::eventID.0"
  [[inputs.snmp.field]]
    name = "siteName"
    oid = "EMC-RP-MIB::siteName.0"
  [[inputs.snmp.field]]
    name = "eventLevel"
    oid = "EMC-RP-MIB::eventLevel.0"
  [[inputs.snmp.field]]
    name = "eventTopic"
    oid = "EMC-RP-MIB::eventTopic.0"

 

What could i write the these fields?

community = "monitoring"
# ## SNMPv3 auth parameters
sec_name = "SNMP-username"
auth_protocol = "MD5" # Values: "MD5", "SHA", ""
auth_password = "SNMP-pass"
sec_level = "authNoPriv" # Values: "noAuthNoPriv", "authNoPriv", "authPriv"
# #context_name = ""
# priv_protocol = "AES" # Values: "DES", "AES", ""
# priv_password = "priv_pass"

 

 

176 Posts

January 18th, 2023 15:00

En los campos "community" y "sec_name" deberías escribir el nombre de la comunidad y el nombre de usuario SNMP respectivamente. En el caso de "community" es el nombre asignado al grupo de dispositivos que están siendo monitoreados. En el caso de "sec_name" es el nombre de usuario que se utilizará para autenticar la comunicación SNMP.

En el campo "auth_protocol" deberías seleccionar el protocolo de autenticación que deseas utilizar, en este caso MD5.

En el campo "auth_password" deberías escribir la contraseña asociada al nombre de usuario SNMP que especificaste en "sec_name".

En el campo "sec_level" deberías especificar el nivel de seguridad que deseas utilizar. En este caso "authNoPriv" significa autenticación sin privacidad.

Los campos "priv_protocol" y "priv_password" son opcionales y se utilizan si deseas habilitar la privacidad adicional en la comunicación SNMP.

Asegúrate de escribir estos valores correctamente y de utilizar una contraseña segura. Si todavía tienes dudas, te recomendamos que consultes la documentación del fabricante o te pongas en contacto con ellos para obtener más información.

January 19th, 2023 02:00

Hi,

 

Thank for your reply. But i know means of these fields.

yalcinkyildiz_0-1674125395579.png

 

But I could not see the AES user creation part or code in Recovery Point. How can we find these fields in Recovery Point.

In addition, I did not see any information about auth_protocol. Since the priv_protocol and priv_password information are tied to the AES user, I can’t reach them either.

 

I'm trying to pull data with snmp using the inputs.snmp section of the telegraf.conf file and the mib file.

How can I get information from Recovery Point for Auth_protocol, sec_level, priv_protocol, priv_password fields?

No Events found!

Top