IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Programmation et administration système Perl Discussion :

erreur dexecution l'ors de lancement d'un plugin nagios en perl


Sujet :

Programmation et administration système Perl

  1. #1
    Futur Membre du Club
    Inscrit en
    Février 2011
    Messages
    11
    Détails du profil
    Informations forums :
    Inscription : Février 2011
    Messages : 11
    Points : 5
    Points
    5
    Par défaut erreur dexecution l'ors de lancement d'un plugin nagios en perl
    slt j'ai télécharger un plugin nagios en perl nomé "check_cisco" a partir de ce lien tp://exchange.nagios.org/directory/Plugins/Hardware/Network-Gear/Cisco/Cisco-Switches-and-routers/details

    j'ai installer libnet-snmp-perl dans ma machine
    apres j'ai copier ce plugins dans ma machine virtuelle(vmware,SE:ubunto) nommé nagios dans le repertoire /usr/lib/nagios/plugins/
    ma machine est lié par un routeur cisco configuré:
    snmp-server community R1 public RO
    snmpwalk -v 1 192.168.107.1 -c public


    j'ai tapé
    #cd /usr/lib/nagios/plugins/
    #chmod +x check_cisco (le nom de mon plugins)
    #./check_cisco
    mais ce message d'erreur saffiche:
    "Mib search path:/root/.snmp/mibs:/usr/share/mib/site:/usr/share/snmp/mib:/usr
    cannot find module(IF-MIB):at line 0 in (none)
    IF-MIB::ifDescr:unknown object identifier
    Mib search path:/root/.snmp/mibs:/usr/share/mib/site:/usr/share/snmp/mib:/usr
    cannot find module(IF-MIB):at line 0 in (none)
    IF-MIB::ifDescr:unknown object identifier
    interface not found:please chech your sytax for this device"

    j'aime bien avoir une solution pour mon problém.merciiiiii

  2. #2
    Responsable Perl et Outils

    Avatar de djibril
    Homme Profil pro
    Inscrit en
    Avril 2004
    Messages
    19 820
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations forums :
    Inscription : Avril 2004
    Messages : 19 820
    Points : 499 184
    Points
    499 184
    Par défaut
    Pouvez-vous nous montrer le contenu du programme ? Avez-vous essayé de taper

  3. #3
    Futur Membre du Club
    Inscrit en
    Février 2011
    Messages
    11
    Détails du profil
    Informations forums :
    Inscription : Février 2011
    Messages : 11
    Points : 5
    Points
    5
    Par défaut
    merci mais lorsque je tape la commande ./check_cisco.pl --help (.pl parceque lorsque je tappe ls dans le repertoir /usr/lib/nagios/plugins le nom du plugin s'affiche "check_cisco.pl")
    #./check_cisco.pl --help==>unknown option:help et le même message d'erreur s'affiche.

    voici le contenu du plugin check-cisco.pl:

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    #!/usr/bin/perl -w
    # $Header$
    # # ============================================================================
    # # 
    # #
    # #       This program is free software; you can redistribute it and/or modify it
    # #       under the terms of the GNU General Public License as published by the
    # #       Free Software Foundation; either version 2, or (at your option) any
    # #       later version.
    # #
    # #       This program is distributed in the hope that it will be useful,
    # #       but WITHOUT ANY WARRANTY; without even the implied warranty of
    # #       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    # #       GNU General Public License for more details.
    # #
    # #       You should have received a copy of the GNU General Public License
    # #       along with this program; if not, write to the Free Software
    # #       Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
    # #
    # # ============================================================================
    # #
    # #       Description:
     
    =head1 DESCRIPTION 
     
    check_cisco.pl : SNMP check for cisco devices (routers/switches) returning state of different interfaces.
     
    =cut
     
    =head1 USAGE
     
     ./check_cisco.pl -h ip -c community -i interface -s state (optional)
     
    =cut
     
    #
    #
    # ============================================================================
    #
    # ==============================================================================
    # # How using it ?
    # ============================================================================
    # ============================================================================
    #
     
    =head2 Options
     
    C<-h or --host> : Set here the ip of your host
     
    C<-c or --community> : Set here your own community
     
    C<-i or --interface> : Set here the interface u want to check (Use the same syntax as for cisco devices, for exemple FastEthernet1/0/1, Fa2/0/3 or Fa0)
     
    C<-s or --state> : Set the state of your interface. Options are : up/down/dormant
     
    =head3 IMPORTANT:
     
    snmp must be installed to perform snmpget/snmpwalk AND snmp server must be activated on your cisco device (switch or router)
     
    =cut
     
    =cut
     
    =head2 Example
     
    Wanna check Fa2/0/1 is up on your switch ?
     
    ./check_cisco.pl -h 192.168.0.1 -c public -i Fa2/0/1
    or
    ./check_cisco.pl -h 192.168.0.1 -c public -i FastEthernet2/0/1
     
    To check your FastEthernet0 is down on your router :
     
    ./check_cisco.pl -h 192.168.0.1 -c MyCommunity -i FastEthernet0 (or Fa0) -s down
     
    To check your Backup RNIS BRIO:1 is dormant on your router:
     
    ./check_cisco.pl -h 192.168.0.1 -c MyCommunity -i BRI0:1 -s down
     
    State option are : up (-s up), down (-s down), dormant (-s dormant). State is set to up if not defined.
     
    Have FuN
     
    =cut
    #
     
     
    #
    ## ============================================================================
    #
    ###################Setting up some parameters#########################
    use strict;
    use Getopt::Long;
     
    my $UNKNOW = -1;
    my $OK = 0;
    my $WARNING = 1;
    my $CRITICAL = 2;
    my $state = "up";
    my $host = "127.0.0.1";
    my $community = "public";
    my $warning = "1000";
    my $critical = "2000";
    my $interface = "Vlan1";
    my $oid="0";
    my $MIBifDescr="IF-MIB::ifDescr";
    my $MIBifOper="IF-MIB::ifOperStatus";
    my $MIBifName="IF-MIB::ifName";
    my $MIBifLastChange="IF-MIB::ifLastChange";
    my $MIBTrafficIn="IF-MIB::ifInOctets";
    my $MIBTrafficOut="IF-MIB::ifOutOctets";
    my $MIBDescription="IF-MIB::ifAlias";
    ###################Getting options##############################
    GetOptions(
            "host|h=s" => \$host,
            "community|c=s"  => \$community,
    	"interface|i=s"   => \$interface,
    	"state|s=s"	=>\$state
    );
    chomp($host);
    chomp($community);
    chomp($interface);
    chomp($state);
    #################################################################
     
    my $walkDescr = snmpwalkgrep($host, $community, $MIBifDescr, $interface);
    my $walkName = snmpwalkgrep($host, $community, $MIBifName, $interface);
     
    if ($walkDescr =~ /$interface/ or $walkName =~ /$interface/){
    	if ($walkDescr =~ /ifDescr.([0-9]+)/ || $walkName =~ /ifName.([0-9]+)/){
    		my $oid =$1;
    		#print "$oid\n";
    		my $tree="IF-MIB::ifOperStatus.$oid";
    		my $return=snmpwalk($host, $community, $tree);
    		if ($return =~ /up/ && $state eq "up"){
    			my $LastChange= snmpwalk($host, $community, "$MIBifLastChange"."\.".$oid);
    			my $Alias= snmpwalk($host, $community, "$MIBDescription"."\.".$oid);
    			my $TrafficIn =snmpwalk($host, $community, "$MIBTrafficIn"."\.".$oid);
    			my $TrafficOut=snmpwalk($host, $community, "$MIBTrafficOut"."\.".$oid);
    			my $LastChangeCleaned=CleanMe($LastChange); 
    			my $AliasCleaned=CleanMe($Alias);
    			my $TrafficInCleaned=CleanMe($TrafficIn);
    			my $TrafficOutCleaned=CleanMe($TrafficOut);
    			print "$interface up: $AliasCleaned, LastChanges: $LastChangeCleaned, Traffic in : $TrafficInCleaned octets, out: $TrafficOutCleaned octets\n";
    			exit $OK;		
     
    		}elsif ($return =~ /down/ && $state eq "up"){
    			print "$interface is down\n";
    			exit $CRITICAL;
    		}elsif($return =~ /down/ && $state eq "down"){
    			print "$interface down : ok\n";
    			exit $OK;
    		}elsif($return =~ /up/ && $state eq "down"){
    			print "$interface should not be up\n";
    			exit $CRITICAL;
    		}elsif($return =~ /dormant/ && $state eq "down" || $return =~ /dormant/ && $state eq "up"){
    			print "Error : $interface is sleeping\n";
    			exit $CRITICAL;
    		}elsif($return =~ /dormant/ && $state eq "dormant"){
    			print "$interface is sleeping : ok\n";
    			exit $OK
    		}elsif($return =~ /up/ && $state eq "dormant"){
    			print "$interface is up and should be sleeping\n";
    			exit $CRITICAL;
    		}else{
    			print "Unknown state for $interface : check your -s state syntax\n";
    			exit $UNKNOW;
    		}
     
    	}else{
    	print "Not supported\n";
    	exit $UNKNOW;
    	}	
    }else{
    	print "Interface not found : please check your syntax for this device\n"; 
    	exit $UNKNOW;
    }
     
    sub CleanMe
    {
    	my $input=$_[0];
    	if ($input =~ /: (.*)/){
    	my $return=$1;
    	chomp($return);
    	return $return;
    }
     
     
    }
     
    sub snmpwalk
    {
    	my ($host, $community, $tree)=@_;
    	my $walk = `snmpwalk -v 1 -c $community $host $tree`;
    	chomp($walk);
    	return $walk;
    }
     
    sub snmpwalkgrep
    {
    	my ($host, $community, $tree, $interface)=@_;
    	my $walk = `snmpwalk -v 1 -c $community $host $tree |grep $interface`;
    	chomp($walk);
    	return $walk;
    }
     
    sub snmpget
    {
    	my ($host, $community, $tree)=@_;
    	my $get = `snmpget -v 1 -c $community $host $tree`;
    	chomp($get);
    	return $get;
    }
     
     
    # ============================================================================
     #
    =head1 AUTHORS
     
    by R3dl!GhT 
     
    =cut
     
     
    =head1 COPYRIGHT
     
     Copyright (C) R3dL!GhT 2007.
     
    This module is free software; you can redistribute it and/or
    modify it under the terms of the GNU Public License.
     
    =cut
    # ============================================================================
    #
    # __END__
    #
    merci d'avance.

  4. #4
    Responsable Perl et Outils

    Avatar de djibril
    Homme Profil pro
    Inscrit en
    Avril 2004
    Messages
    19 820
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations forums :
    Inscription : Avril 2004
    Messages : 19 820
    Points : 499 184
    Points
    499 184
    Par défaut
    il faut que tu fasses il t'expliquera comment donner des options au programme.

  5. #5
    Futur Membre du Club
    Inscrit en
    Février 2011
    Messages
    11
    Détails du profil
    Informations forums :
    Inscription : Février 2011
    Messages : 11
    Points : 5
    Points
    5
    Par défaut
    merciiiiiii

  6. #6
    Responsable Perl et Outils

    Avatar de djibril
    Homme Profil pro
    Inscrit en
    Avril 2004
    Messages
    19 820
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations forums :
    Inscription : Avril 2004
    Messages : 19 820
    Points : 499 184
    Points
    499 184
    Par défaut
    Si ça fonctionne, dis le nous et me ton sujet en résolu !

    Merci

Discussions similaires

  1. Erreur dans le fichier de lancement
    Par sboober dans le forum JWS
    Réponses: 2
    Dernier message: 14/04/2009, 17h41
  2. Erreur "pas de disque" au lancement d'un exe
    Par Charly910 dans le forum Windows XP
    Réponses: 1
    Dernier message: 10/07/2007, 16h09
  3. Réponses: 5
    Dernier message: 22/05/2007, 22h34
  4. Erreur XMLRAD dès le premier lancement
    Par DQD dans le forum XMLRAD
    Réponses: 6
    Dernier message: 20/01/2006, 22h58
  5. erreur d´execution 3061
    Par Toff !!!!! dans le forum Access
    Réponses: 6
    Dernier message: 21/12/2005, 14h32

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo