Hi,
In the Agent Toolkit C Edition, we are providing a tool "Mib Editor" using which you can create a mib (v1 / v2). There is no need for providing a syntax "SEQUENCE OF" manually while creating a mib using mib editor. It will automatically taken care by the mibeditor while defining "SEQUENCE OF" syntax.
See for example, I have created v2 mib using mib editor, where in I have a table object (myTable) which has an entry "MyEntry" and this table has 4 columns.
Below is the snippet of v2 mib which I created using Mib Editor which depict the SEQUENCE OF object type.
myTable OBJECT-TYPE
SYNTAX SEQUENCE OF MyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Description"
::= { moduleIdentity 1 }
myEntry OBJECT-TYPE
SYNTAX MyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Row Description"
INDEX { column4 }
::= { myTable 1 }
MyEntry ::= SEQUENCE {
column1 Integer32,
column2 Integer32,
column3 RowStatus,
column4 Integer32
}
Hope this will answer your query. Kindly get back to us if you have any queries in this regard.
Thanks and Regards,
Subarayan