RECHERCHER :
COMMUNAUTE MP
Identifiez vous ...
Devenir Membre
J'ai oublié mon MDP
DOMAINE MP
Bavardages
Langages Généraux
Langages Web
Langages DotNet
Autres langages
Dev. Jeux Video
Sécurité
Sys. Exploitation
Graphismes
Logiciels
Réseaux
Bases de données
Méthodologies
Emplois High-tech
Aide juridique
Articles juridiques
FORUM
Index des forums
Ajouter un sujet
Rechercher sujet
Contact Responsable
Devenir modérateur
CHAT MP IRC
Votre pseudo ...
Srv: irc.moteurprog.com
Chan: #MoteurProg
PARTICIPER
Plus de 3500 emplois.
Rechercher un job
Déposez votre CV
Emplois High-tech

Visiteur MP

 help

Forum : IDE JAVA - ECLIPSE
Sous Catégorie : Eclipse
Type du sujet : Sujet Normale
FAQ : FAQ IDE JAVA - ECLIPSE

SUIVI DES SUJETS PAR MAIL

SUIVI PAR MAIL INACTIF

RESOLUTION DU SUJET SUJET NON RESOLU
BLOQUAGE DU SUJET SUJET ACTIF
APPARTENANCE A LA FAQ N'APPARTIENT PAS A LA FAQ


PAGE : [1]

POSTER UN NOUVEAU SUJET REPONDRE A CE SUJET

FORUM IDE JAVA - ECLIPSE

PREMIERE PAGE

PAGE PRECEDENTE

Page précedente

Page suivante

PAGE SUIVANTE

DERNIERE PAGE
rafik larbi
Nouveau membre
Inscrit : 22/04/2006
Messages : 4
Message
#94712
Posté le 24/04/06 à 15:39
salut je veux consevoire un logiciel d'administration reseau sous snmp....et je suis debutant ..... donc je voudrais un petit coup de main en ce qui conserne la configuration du protocole

HAUT DE PAGE

PROFIL MEMBRE LUI ECRIRE 

Publicité
Inscrit : X
Messages : X
Message
#Aucun

HAUT DE PAGE

  

masseuro
Membre MP
Avatar de masseuro
Inscrit : 17/11/2004
Messages : 195
Message
#94814
Posté le 25/04/06 à 13:26
oula! défini un peu ce que tu appelle administration réseau c de la supervision ou pas?
__________________________
rien ne sert de coder pour coder il suffit de coder à point. La fontaine (ah non c'est pas ça qu'il a dit?)

HAUT DE PAGE

PROFIL MEMBRE LUI ECRIRE ALLER VOIR SON SITE

rafik larbi
Nouveau membre
Inscrit : 22/04/2006
Messages : 4
Message
#94841
Posté le 25/04/06 à 17:16
c juste de la surveillance et administration reseau j'ai tout fait il ne me reste que la programmation du protocole snmp

HAUT DE PAGE

PROFIL MEMBRE LUI ECRIRE 

rafik larbi
Nouveau membre
Inscrit : 22/04/2006
Messages : 4
Message
#96032
Posté le 06/05/06 à 18:57
voila ce que je vien de trouver mais j'arrive pa a dechiffrer Smiley

package snmp;

import java.util.*;
import java.io.*;



public class SNMPBERCodec
{

public static final byte SNMPINTEGER = 0x02;
public static final byte SNMPBITSTRING = 0x03;
public static final byte SNMPOCTETSTRING = 0x04;
public static final byte SNMPNULL = 0x05;
public static final byte SNMPOBJECTIDENTIFIER = 0x06;
public static final byte SNMPSEQUENCE = 0x30;

public static final byte SNMPIPADDRESS = (byte)0x40;
public static final byte SNMPCOUNTER32 = (byte)0x41;
public static final byte SNMPGAUGE32 = (byte)0x42;
public static final byte SNMPTIMETICKS = (byte)0x43;
public static final byte SNMPOPAQUE = (byte)0x44;
public static final byte SNMPNSAPADDRESS = (byte)0x45;
public static final byte SNMPCOUNTER64 = (byte)0x46;
public static final byte SNMPUINTEGER32 = (byte)0x47;

public static final byte SNMPGETREQUEST = (byte)0xA0;
public static final byte SNMPGETNEXTREQUEST = (byte)0xA1;
public static final byte SNMPGETRESPONSE = (byte)0xA2;
public static final byte SNMPSETREQUEST = (byte)0xA3;
public static final byte SNMPTRAP = (byte)0xA4;


// SNMPv2p constants; unused!!
public static final byte SNMPv2pCOMMUNICATION = (byte)0xA2;
public static final byte SNMPv2pAUTHORIZEDMESSAGE = (byte)0xA1;
public static final byte SNMPv2pENCRYPTEDMESSAGE = (byte)0xA1;
public static final byte SNMPv2TRAP = (byte)0xA7;

public static final byte SNMPv2pENCRYPTEDDATA = (byte)0xA1;


public static final byte SNMPUNKNOWNOBJECT = 0x00;





/**
SNMPBadValueException Indicates byte array in value field is uninterprettable for
* specified SNMP object type.
*/
public static SNMPObject extractEncoding(SNMPTLV theTLV)
throws SNMPBadValueException
{


switch (theTLV.tag)
{
case SNMPINTEGER:
{
return new SNMPInteger(theTLV.value);
}

case SNMPSEQUENCE:
{
return new SNMPSequence(theTLV.value);
}

case SNMPOBJECTIDENTIFIER:
{
return new SNMPObjectIdentifier(theTLV.value);
}

case SNMPOCTETSTRING:
{
return new SNMPOctetString(theTLV.value);
}

case SNMPBITSTRING:
{
return new SNMPBitString(theTLV.value);
}

case SNMPIPADDRESS:
{
return new SNMPIPAddress(theTLV.value);
}

case SNMPCOUNTER32:
{
return new SNMPCounter32(theTLV.value);
}

case SNMPGAUGE32:
{
return new SNMPGauge32(theTLV.value);
}

case SNMPTIMETICKS:
{
return new SNMPTimeTicks(theTLV.value);
}

case SNMPNSAPADDRESS:
{
return new SNMPNSAPAddress(theTLV.value);
}

case SNMPCOUNTER64:
{
return new SNMPCounter64(theTLV.value);
}

case SNMPUINTEGER32:
{
return new SNMPUInteger32(theTLV.value);
}

case SNMPGETREQUEST:
case SNMPGETNEXTREQUEST:
case SNMPGETRESPONSE:
case SNMPSETREQUEST:
{
return new SNMPPDU(theTLV.value, theTLV.tag);
}

case SNMPTRAP:
{
return new SNMPTrapPDU(theTLV.value);
}

case SNMPNULL:
case SNMPOPAQUE:
{
return new SNMPNull();
}

default:
{
System.out.println("Unrecognized tag");
//return new SNMPOctetString(theTLV.value);
return new SNMPUnknownObject(theTLV.value);
}
}

}





/**
* Extracts the type, length and value of the SNMP object whose BER encoding begins at the
* specified position in the given byte array. (??what about errors??)
*/

public static SNMPTLV extractNextTLV(byte[] enc, int position)
{
SNMPTLV nextTLV = new SNMPTLV();
int currentPos = position;

// get tag

/*
if ((enc[currentPos] % 32) < 31)
{
// single byte tag; extract value
nextTLV.tag = (int)(enc[currentPos]);
}
else
{
// multiple byte tag; for now, just return value in subsequent bytes ...
// but need to think about universal / application fields, etc...
nextTLV.tag = 0;

do
{
currentPos++;
nextTLV.tag = nextTLV.tag * 128 + (int)(enc[currentPos] % 128);
}
while ((enc[currentPos]/128) >= 1);
}
*/

// single byte tag; extract value
nextTLV.tag = enc[currentPos];
currentPos++; // now at start of length info

// get length of data

int dataLength;

int unsignedValue = enc[currentPos];
if (unsignedValue < 0)
unsignedValue += 256;

if ((unsignedValue / 128) < 1)
{
// single byte length; extract value
dataLength = unsignedValue;
}
else
{
// multiple byte length; first byte's value (minus first bit) is # of length bytes
int numBytes = (unsignedValue % 128);

dataLength = 0;

for (int i = 0; i < numBytes; i++)
{
currentPos++;
unsignedValue = enc[currentPos];
if (unsignedValue < 0)
unsignedValue += 256;
dataLength = dataLength * 256 + unsignedValue;
}
}


currentPos++; // now at start of data

// set total length
nextTLV.totalLength = currentPos - position + dataLength;

// extract data portion

ByteArrayOutputStream outBytes = new ByteArrayOutputStream();
outBytes.write(enc, currentPos, dataLength);
nextTLV.value = outBytes.toByteArray();


return nextTLV;

}




/**
* Utility function for encoding a length as a BER byte sequence
*/

public static byte[] encodeLength(int length)
{
ByteArrayOutputStream outBytes = new ByteArrayOutputStream();

// see if can be represented in single byte
// don't forget the first bit is the "long field test" bit!!
if (length < 128)
{
byte[] len = {(byte)length};
outBytes.write(len, 0, 1);
}
else
{
// too big for one byte
// see how many are needed:
int numBytes = 0;
int temp = length;
while (temp > 0)
{
++numBytes;
temp = (int)Math.floor(temp / 256);
}

byte num = (byte)numBytes;
num += 128; // set the "long format" bit
outBytes.write(num);

byte[] len = new byte[numBytes];
for (int i = numBytes-1; i >= 0; --i)
{
len[i] = (byte)(length % 256);
length = (int)Math.floor(length / 256);
}
outBytes.write(len, 0, numBytes);

}

return outBytes.toByteArray();
}




}

HAUT DE PAGE

PROFIL MEMBRE LUI ECRIRE 
POSTER UN NOUVEAU SUJET REPONDRE A CE SUJET

PREMIERE PAGE

PAGE PRECEDENTE Page précédente

Page suivante

PAGE SUIVANTE DERNIERE PAGE

FORUM IDE JAVA - ECLIPSE



    PAGE : [1]



.: Site Web développé par Julien Pichot et l'équipe MPWG avec www.evolvia-web.com :.