Bonjour,

J'ai absoluement besoin de pouvoir compiler ma mib privée sous windows7 afin de l'ajouter à l'arbre déjà existant cependant l’exécutable "mibcc.exe" me remonte l'erreur suivante:

Nom : Capture.JPG
Affichages : 194
Taille : 66,0 Ko

Voici ma mib :

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
xxxxxxxx-MIB DEFINITIONS ::= BEGIN

IMPORTS

	enterprises, IpAddress, Counter, TimeTicks
		FROM RFC1155-SMI
	OBJECT-TYPE
		FROM RFC-1212
	DisplayString
		FROM RFC-1213;

compaq			OBJECT IDENTIFIER ::= {enterprises 232}
cpqSystemInfo		OBJECT IDENTIFIER ::= { compaq 2 }
testun			OBJECT IDENTIFIER ::= {cpqSystemInfo 5}
testdeux		OBJECT IDENTIFIER ::= {testun 0}

about OBJECT-TYPE
SYNTAX  DisplayString (SIZE (1..150))
ACCESS  read-write
STATUS  mandatory
DESCRIPTION
          "This variable controls the current state of the toaster. To 
          begin toasting, set it to down (2). To abort toasting 
          (perhaps in the event of an emergency), set it to up (2)."
  ::= {testdeux 1}

name OBJECT-TYPE
SYNTAX  DisplayString (SIZE (1..20))
ACCESS  read-write
STATUS  mandatory
DESCRIPTION
          "This variable controls how well-done is the ensuing toast. It 
          should be on a scale of 1 to 10. Toast made at 10 generally 
          is considered unfit for human consumption; 
          toast made at 1 is warmed lightly."
  ::= {testdeux 2}

age OBJECT-TYPE
SYNTAX  INTEGER (0..150)
ACCESS  read-write
STATUS  mandatory
DESCRIPTION
          "This variable informs the toaster of the type of material that 
          is being toasted. The toaster uses this information, combined 
          with toasterToastDoneness, to compute for how long the material 
          must be toasted to achieve the required doneness."
  ::= {testdeux 3}

END
auriez-vous des idées pour résoudre ce problème ?

D'avance merci.