Skip to content

Commit

Permalink
Renamed interface modules to match those created by the SNMP Wizard.
Browse files Browse the repository at this point in the history
  • Loading branch information
nramon committed Sep 19, 2014
1 parent ef603c9 commit cff9f8b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pandora_server/util/recon_scripts/snmp-recon.pl
Expand Up @@ -736,7 +736,7 @@ ($)
# Interface status module.
my %module = ('id_tipo_modulo' => 18,
'id_modulo' => 2,
'nombre' => "if_${if_name}",
'nombre' => "ifOperStatus_${if_name}",
'descripcion' => $if_desc,
'id_agente' => $agent_id,
'ip_target' => $device,
Expand All @@ -748,7 +748,7 @@ ($)
# Incoming traffic module.
%module = ('id_tipo_modulo' => 16,
'id_modulo' => 2,
'nombre' => "if_${if_name}_in",
'nombre' => "ifInOctets_${if_name}",
'descripcion' => 'The total number of octets received on the interface, including framing characters.',
'id_agente' => $agent_id,
'ip_target' => $device,
Expand All @@ -760,7 +760,7 @@ ($)
# Outgoing traffic module.
%module = ('id_tipo_modulo' => 16,
'id_modulo' => 2,
'nombre' => "if_${if_name}_out",
'nombre' => "ifOutOctets_${if_name}",
'descripcion' => 'The total number of octets received on the interface, including framing characters.',
'id_agente' => $agent_id,
'ip_target' => $device,
Expand Down

0 comments on commit cff9f8b

Please sign in to comment.