I'm trying to define an MIB for the following sample MO:
tabular_mo_struct
{
int index1;
int index2;
int address [10];
int flag;
}
flag above can take values like this (bitmask type):
val1, val2, val3,
or a combination of above val1 | val2 | ...
I'm a bit unclear
- if my MIB should represent "address" as an octet string? I could not find any other suitable type.
- What is the best way to represent "flag" in MIB?
Thanks in advance.