Verificação de falha do switch de pilha usando o Nagios

4

Temos um switch da série Cisco 2960S que é um switch empilhado com vários switches físicos gerenciados como uma única unidade. Um único IP de gerenciamento é atribuído a todo o comutador empilhado.

Portanto, se um membro de uma pilha de switches falhar, o endereço IP ainda será pingável. Portanto, precisamos verificar se qualquer um dos switches individuais na pilha falhou.

Alguém pode destacar como podemos verificar a falha individual do switch usando o SNMP?

    
por Iliyas Shirol 05.06.2012 / 15:07

1 resposta

4

Você pode tentar a seguinte verificação nagios: link

Como sempre, é melhor testar se a verificação faz o que você deseja, causando uma falha quando possível. Esta verificação é baseada nos seguintes oids (Extraído do próprio script):

my $cisco_stack_table =     "1.3.6.1.4.1.9.9.500.1.2.1.1.1";
my $cisco_stack_state =     "1.3.6.1.4.1.9.9.500.1.2.1.1.6";
my $cisco_stack_ring =      "1.3.6.1.4.1.9.9.500.1.1.3.0";

Em particular, a descrição de cisco_stack_state (cswSwitchState de acordo com o mib e da qual faz parte de uma tabela, portanto, uma para cada switch) é:

The current state of a switch:

waiting - Waiting for a limited time on other switches in the stack to come online.

progressing - Master election or mismatch checks in progress.

added - The switch is added to the stack.

ready - The switch is operational.

sdmMismatch - The SDM template configured on the master is not supported by the new member.

verMismatch - The operating system version running on the master is different from the operating system version running on this member.

featureMismatch - Some of the features configured on the master are not supported on this member.

newMasterInit - Waiting for the new master to finish initialization after master switchover (Master Re-Init).

provisioned - The switch is not an active member of the stack.

invalid - The switch's state machine is in an invalid state.

removed - The switch is removed from the stack.

    
por 05.06.2012 / 15:45