home *** CD-ROM | disk | FTP | other *** search
/ Handbook of Infosec Terms 2.0 / Handbook_of_Infosec_Terms_Version_2.0_ISSO.iso / text / rfcs / rfc1024.txt < prev    next >
Text File  |  1996-05-07  |  126KB  |  2,680 lines

  1.  Network Working Group                                        C.Partridge Request For Comment: 1024                                       BBN/NNSC                                                               G. Trewitt                                                                 Stanford                                                             October 1987 
  2.  
  3.                        HEMS VARIABLE DEFINITIONS 
  4.  
  5. STATUS OF THIS MEMO 
  6.  
  7.    This memo assigns instruction codes, defines object formats and    object semantics for use with the High-Level Monitoring and Control    Language, defined in RFC-1023. 
  8.  
  9.    This memo is provisional and the definitions are subject to change.    Readers should confirm that they have the most recent version of the    memo. 
  10.  
  11.    The authors assume a working knowledge of the ISO data encoding    standard, ASN.1, and a general understanding of the IP protocol    suite. 
  12.  
  13.    Distribution of this memo is unlimited. 
  14.  
  15. INTRODUCTION 
  16.  
  17.    In other memos [RFC-1021, RFC-1022] the authors have described a    general system for monitoring and controlling network entities; this    system is called the High-Level Entity Management System (HEMS).    This system permits applications to read and write values in remote    entities which support a simple query processor. 
  18.  
  19.    In this memo we standardize the language instruction codes, the    objects which can be read or written, and the meanings of any    constants stored in the objects.  There are three parts to this    standardization: (1) the assignment of an ASN.1 tag to each value,    (2) the definition of the external representation of the value (e.g.,    INTEGER, OCTETSTRING, etc.), and (3) the definition of the meaning,    or semantics of a value (e.g., what types of packets a particular    packet counter actually tracks). 
  20.  
  21.    This definition is provisional, and the authors hope that it will be    expanded and improved as the community becomes more experienced with    HEMS.  Readers with suggestions for additional object definitions, or    improved definitions are encouraged to contact the authors. 
  22.  
  23.  
  24.  
  25.  
  26.  
  27.  Partridge & Trewitt                                             [Page 1] 
  28.  RFC 1024                    HEMS Definitions                October 1987 
  29.  
  30.  MESSAGE FORMATS 
  31.  
  32.    All HEMS values are conveyed between applications and entities using    the High-Level Entity Management Protocol (HEMP) specified in RFC-    1022.  All values specified in this memo are passed in the data    sections of HEMP messages.  For all message types, the data section    is a SEQUENCE of objects.  For requests, these objects are operations    and their operands.  Replies contain a sequence of objects retrieved    by a request.  Events contain an initial event object followed by an    optional number of objects related to the event. 
  33.  
  34.    Messages conforming to this memo should set the link field in the    HEMP CommonHeader to 1, to indicate version 1 of HEMS.  The    resourceId field should be set to NULL. 
  35.  
  36.  CONTROL LANGUAGE INSTRUCTIONS 
  37.  
  38.    The HEMS Monitoring and Control Language defines a suite of    operations which the query processor must be able to perform.  These    operations and their operands are ASN.1 objects which are passed to    the query processor over a network connection.  The operations and    operands are sent in postfix form (the operation follows the    operands). Operands are pushed onto a stack and are processed when    the operation is encountered. 
  39.  
  40.    To ensure that operations are easily recognized in the input stream,    they are all encoded in a single application-specific type.  This    type is shown below. 
  41.  
  42.                Operation ::= [APPLICATION 1] IMPLICIT INTEGER {                        reserved(0), get(1) begin(2), end(3),                        get-match(4), get-attributes(5),                        get-attributes-match(6), get-range(7),                        set(8), set-match(9)                    } 
  43.  
  44.    When the query processor encounters an Operation object it consults    the value to determine which operation is to be done (e.g., GET). 
  45.  
  46. GENERAL COMMENTS ON OBJECTS STORED IN ENTITIES 
  47.  
  48.    The High-Level Monitoring and Control Language requires the object    space to have a tree-shaped type space.  Locating a particular object    requires identifying that section of the tree in which the object    resides.  (A more detailed explanation of the scheme is given in    RFC-1023). 
  49.  
  50.  
  51.  
  52.  Partridge & Trewitt                                             [Page 2] 
  53.  RFC 1024                    HEMS Definitions                October 1987 
  54.  
  55.     This memo defines a universal type space.  A subset of this type    space is expected to be an appropriate type space for any entity    (e.g., a gateway or a multi-user host).  The type space is divided    into required and optional portions.  Implementors should implement    the required portion of the type space plus that part of the optional    type space which is appropriate for their particular entity. 
  56.  
  57.    One problem with defining a universal type space is that certain    interesting objects are not universal, but are instead very machine    specific (for example, status registers on specialized hardware).  To    allow implementors to retrieve such implementation-specific objects    using the HEMS system, a special APPLICATION type is reserved for    non-standard values. 
  58.  
  59.    Putting objects in ASN.1 form implies an ability to map to and from    ASN.1 format.  One of the design goals of this system has been to    minimize the amount of ASN.1 compilation required by the query    processor to reduce the expense of processing queries at entities.    (This implies a certain willingness to force the applications    querying entities to be more powerful).  We expect that most of the    complex mapping will be done when objects are read; most writable    objects have a simple format (e.g., an INTEGER, or OCTETSTRING).  As    a result, we have made a heavy use of the ASN.1 SET type, which    allows values to be presented in any order.  Applications which    require particular fields in an object may use the template structure    to specify particular fields to be retrieved, but this still permits    the query processor to return the fields in whatever order is    convenient. 
  60.  
  61.    In addition to ease the problems of ASN.1 compilation, query    processors are not required to reduce an INTEGER to the minimum    number of octets as specified in ASN.1.  Applications should be    prepared to receive INTEGERs which have leading octets with all zeros    or ones. 
  62.  
  63.    More generally, a design goal of HEMS was to try to limit the data    processing done at the entity, and to place the burden of data    reduction on the querying application.  As a result, the objects    presented here are typically counters, or values which the entity has    to compute already.  Object definitions which require the entity to    do data reduction are not supported, although consideration might be    given to making them optionally available. 
  64.  
  65.    Finally, HEMS is required to support access by multiple network    management centers or applications.  This constraint has some    important consequences.  First, the SET operation cannot be applied    to any Counter, since changing the value of a Counter may impair data    acquisition by other centers.  More generally, there are questions 
  66.  
  67.  
  68.  
  69. Partridge & Trewitt                                             [Page 3] 
  70.  RFC 1024                    HEMS Definitions                October 1987 
  71.  
  72.     about competing or clashing SET requests from management centers.    Currently HEMS does not provide any facilities for protecting against    such requests.  If such facilities become necessary, the authors    envision the enhancement of the object definitions to incorporate the    idea of "owned" objects. 
  73.  
  74.  READING THE OBJECT DEFINITIONS 
  75.  
  76.    Most of the rest of this memo is devoted to ennumerating the objects    managed by the query processor.  Many of these objects are    dictionaries, objects which reference other objects.  Defining    dictionaries requires that we specify the class of objects they    reference. 
  77.  
  78.    Most significant objects, such as packet counts, reside at the leaves    of the object data tree.  They need to be carefully defined to ensure    that their meaning is consistent across all HEMS implementations.    These values are defined using the following format: 
  79.  
  80.     OBJECT:  This is the name of the object. 
  81.  
  82.    Type:  This is the ASN.1 type of the object. 
  83.  
  84.    Definition:  The meaning of the data the object contains.            Implementations should ensure that their instance of            the object fulfills this definition since an important            feature of HEMS is that objects have consistent meaning            across all machines.  It is better not to implement            an object than to abuse its definition. 
  85.  
  86.    Notes:  An optional section of the definition which is used            to discuss issues not covered in other sections of            this specification. 
  87.  
  88.    Object Status:  An optional section of the definition which            is used to indicate whether the object is required of all            HEMS implementations, encouraged of HEMS implementations            or simply considered useful.  Currently, there are four            levels of status: 
  89.  
  90.                Required:  The object is felt to provide critical                information and must be included in a fully                conforming HEMS implementation. 
  91.  
  92.                Required On Condition:  The object is felt to                provide critical information about an optional 
  93.  
  94.  
  95.  
  96. Partridge & Trewitt                                             [Page 4] 
  97.  RFC 1024                    HEMS Definitions                October 1987 
  98.  
  99.                 feature of an IP entity (for example, support of                the Transmission Control Protocol).  The object                is required if the feature is implemented in the                entity. 
  100.  
  101.                Encouraged:  The object is felt to provide very                useful management information and implementors                are encouraged to implement it. 
  102.  
  103.                Defined:  The object may be useful and has been                defined so that all implementations of the object                are consistent. 
  104.  
  105.            If the object status is not specified, the object should            be considered required.  If the parent dictionary is optional,            then the object should be considered required if the parent            dictionary is supported. 
  106.  
  107.    Operations on Object:  The definition of how each monitoring            and control operation acts on the object.  Many operations            have the same effect on almost all values, so some            default definitions are presented here.  In the absence            of an operation specification, implementors should use            the default operations defined here. 
  108.  
  109.            BEGIN:  The default is for BEGIN to be defined for                dictionaries, and an error if performed on leaf                objects in the tree. 
  110.  
  111.            CREATE:  The default is that CREATE is undefined. 
  112.  
  113.            DELETE:  The default is that DELETE is undefined. 
  114.  
  115.            END:  END is a stack operation and is defined for all objects.                Note that END may fail if there is no object on the                stack. 
  116.  
  117.             GET-ATTRIBUTES:  The default is that GET-ATTRIBUTES is                defined on the contents of all dictionaries specified                in this memo.  The text description attributes                are optional for values defined in this memo, but                are required for implementation-specific objects.                Any descriptions of object listed in this memo should                cite this memo.  GET-ATTRIBUTES must be supported on                all entity-specific values.  GET-ATTRIBUTES                returns a Attributes object, which is defined in                the well-known types section below. 
  118.  
  119.  
  120.  
  121. Partridge & Trewitt                                             [Page 5] 
  122.  RFC 1024                    HEMS Definitions                October 1987 
  123.  
  124.             GET-ATTRIBUTES-MATCH:  The default is that                GET-ATTRIBUTES-MATCH is optionally defined on any                object which supports GET-MATCH, and is an error                otherwise.  The rules for attributes returned by                GET-ATTRIBUTES-MATCH are the same as those for                GET-ATTRIBUTES. 
  125.  
  126.            GET:  The default definition of GET is to emit the operand                specified is a leaf object, and if the operand is a                dictionary, to recursively GET the entire dictionary and                its subdictionaries. 
  127.  
  128.            GET-MATCH:  Unless otherwise specified, GET-MATCH is not                supported on an object. 
  129.  
  130.            GET-RANGE:  Unless otherwise specified, GET-RANGE is not                supported on an object. 
  131.  
  132.            SET:  Unless otherwise specified, SET is not supported on an                object. 
  133.  
  134.            SET-MATCH:  Unless otherwise specified, SET-MATCH is not                supported on an object. 
  135.  
  136.  ATTRIBUTES 
  137.  
  138.    HEMS requires that remote applications be able to discover the    meaning of an object by querying the entity in which the object is    stored.  This is done through use of the GET-ATTRIBUTES operator,    which causes an Attributes object to be returned to the application.    The Attributes object is described below. 
  139.  
  140.            Attributes ::= [APPLICATION 2] IMPLICIT SEQUENCE {                tagASN1       [0] IMPLICIT INTEGER,                valueFormat   [1] IMPLICIT INTEGER,                longDesc      [2] IMPLICIT IA5String OPTIONAL,                shortDesc     [3] IMPLICIT IA5String OPTIONAL,                unitsDesc     [4] IMPLICIT IA5String OPTIONAL,                precision     [5] IMPLICIT INTEGER OPTIONAL,                properties    [6] IMPLICIT BITSTRING OPTIONAL,            } 
  141.  
  142.    The meanings of the various attributes are given below. 
  143.  
  144.            tagASN1:  The ASN.1 tag for this object.                This attribute is required. 
  145.  
  146.  
  147.  
  148.  Partridge & Trewitt                                             [Page 6] 
  149.  RFC 1024                    HEMS Definitions                October 1987 
  150.  
  151.             valueFormat:  The underlying ASN.1 type of the object                (e.g., SEQUENCE, or OCTETSTRING).  This attribute                is required. 
  152.  
  153.            longDesc:  A potentially lengthy text description which                fully defines the object.  This attribute is optional                for objects defined in this memo and required for                entity-specific objects. 
  154.  
  155.            shortDesc:  A short mnemonic string of less than 15 octets                which is suitable for labelling the value on a display.                This attribute is optional. 
  156.  
  157.            unitsDesc:  A short string used for integer values to                indicate the units in which the value is measured                (e.g. "ms", "sec", "packets", etc).  This attribute                is optional. 
  158.  
  159.            precision:  For Counter objects, the value at which the                Counter will roll-over.  Required for all Counter                objects. 
  160.  
  161.            properties:  A bitstring of boolean properties of the                object.  If the bit is on, it has the given property.                This attribute is optional.  The bits currently                defined are: 
  162.  
  163.                    0 -- If true, the difference between two values                        of this object is significant. For example,                        the changes in a packet count is always                        significant, it always conveys information.                        In this case, the 0 bit would be set.  On the                        other hand, the difference between two readings                        of a queue length may be meaningless. 
  164.  
  165.  IMPLEMENTATION SPECIFIC TYPES 
  166.  
  167.    Each vendor or implementation specific value must be contained within    an VendorSpecific object.  The format of the VendorSpecific object is    shown below. 
  168.  
  169.    Type:  VendorSpecific 
  170.  
  171.             VendorSpecific ::= [APPLICATION 3] IMPLICIT SET of ANY 
  172.  
  173.  
  174.  
  175.  
  176.  
  177.  Partridge & Trewitt                                             [Page 7] 
  178.  RFC 1024                    HEMS Definitions                October 1987 
  179.  
  180.     For a detailed discussion of the need for this type, see RFC 1023. 
  181.  
  182. WELL-KNOWN TYPES 
  183.  
  184.    There are some generally useful types which are defined across the    system and are considered well-known.  These types support abstract    notions that are frequently used in other definitions. 
  185.  
  186.    TYPE: Error 
  187.  
  188.            Error ::= [APPLICATION 0] IMPLICIT SEQUENCE {                errorCode INTEGER,                errorOffset INTEGER                errorDescription IA5String,            } 
  189.  
  190.    The Error type is returned within reply messages when an error is    countered.  The errorCode is a number specifying a general class of    error.  The errorOffset is the octet in the query where the error was    discovered.  Note that the query starts at the first octet (octet 0)    of the HEMP data section.  The errorDescription is a text message    explaining the error.  Note that the definition of this section is    the same (except for the start of the offset) as that of the HEMP    protocol error structure and the error codes have been selected to    keep the code spaces distinct.  This is intended to ease the    processing of error messages.  The defined errorCodes are: 
  191.  
  192.                100 -- Any error not listed below. 
  193.  
  194.                101 -- System error.  The query processor has failed                    in some way. 
  195.  
  196.                102 -- Format error.  An error has been detected in                    the input stream. 
  197.  
  198.                103 -- Stack error.  A stack overflow or underflow has                    occurred. 
  199.  
  200.                104 -- Instruction error.  The instruction is either                    unknown, or not supported on the object to which                    it has been applied. 
  201.  
  202.                105 -- Operand error.  The wrong number of operands or                    inappropriate operands have been given to an                    instruction. 
  203.  
  204.  
  205.  
  206.  
  207.  
  208.  Partridge & Trewitt                                             [Page 8] 
  209.  RFC 1024                    HEMS Definitions                October 1987 
  210.  
  211.     TYPE:  Counter 
  212.  
  213.        Counter ::= [APPLICATION 4] IMPLICIT INTEGER 
  214.  
  215.    The Counter type is an unsigned integer which is defined to roll-over    to 0 when incremented past a certain value.  (The roll-over point may    be found by examining the attributes for the particular counter.)    Counter sizes should be chosen such that the counters will not roll    over more than once every 24 hours. 
  216.  
  217.    TYPE:  InstructionGroup 
  218.  
  219.        InstructionGroup ::= [APPLICATION 5] IMPLICIT SEQUENCE            of ANY 
  220.  
  221.    An InstructionGroup is an encapsulated sequence of operands and    operations.  It allows applications to encode queries as objects. 
  222.  
  223.    TYPE:  Histogram 
  224.  
  225.        Histogram ::= SET of HistEntry 
  226.  
  227.        HistEntry ::= SEQUENCE {            histValue INTEGER,            histCount Counter        } 
  228.  
  229.    A Histogram associates a count, histCount, with a numeric value,    histValue.  No meaning is placed on the count or value by this    definition.  Each HistEntry may represent a simple map (e.g.,    histCount instances of histValue), or a more complex relationship    (e.g., a count of all values between this histValue and the next    lowest histValue in the Histogram).  The meaning of the particular    Histogram is given in the object definition. 
  230.  
  231.    TYPE: TrafficMatrix 
  232.  
  233.        TrafficMatrix ::= SET of TrafficEntry 
  234.  
  235.        TrafficEntry ::= SEQUENCE {            src IpAddress,            dst IpAddress,            count Counter        } 
  236.  
  237.    A TrafficMatrix measures traffic observed between two IP addresses.    Typically it is used to count packets flowing through a gateway. 
  238.  
  239.  
  240.  
  241.  Partridge & Trewitt                                             [Page 9] 
  242.  RFC 1024                    HEMS Definitions                October 1987 
  243.  
  244.     TYPE:  IpAddress 
  245.  
  246.        IpAddress ::= OCTETSTRING 
  247.  
  248.    The 4 octet IP address.  If the length of the string is less than 4    then the missing octets are wildcarded.  A zero length string is a    default address (e.g., for indicating default routes). 
  249.  
  250.     TYPE: Fraction 
  251.  
  252.        Fraction ::= INTEGER 
  253.  
  254.    A Fraction is an integer representation of a fractional value.  It    contains the numerator of a value as expressed over 256.  (For    example dividing the Fraction by 256 gives the fractional value.) 
  255.  
  256.    TYPE:  BootClock 
  257.  
  258.        BootClock ::= INTEGER 
  259.  
  260.    The time in milliseconds since the machine was last booted or reset.    This value is always defined. 
  261.  
  262.    TYPE:  localClock 
  263.  
  264.        LocalClock ::= INTEGER 
  265.  
  266.    The local system clock, measured in milliseconds since 00:00 1    January 1900 UTC.  Assumed to be only a local estimate of the time.    The value 0 is reserved for an uninitialized clock (For example, an    uninitialized time-of-day chip.) 
  267.  
  268.     TYPE:  NetClock 
  269.  
  270.        NetClock ::= INTEGER 
  271.  
  272.    A network synchronized clock, which is assumed to be synchronized    across some part of a network.  The clock value is measured in    milliseconds since 00:00 1 January 1900 UTC.  Specific information    about the synchronization protocol is found in the system variable    dictionary.  The value 0 is used to indicate an uninitialized clock. 
  273.  
  274.    TYPE: TimeStamp 
  275.  
  276.        TimeStamp ::= CHOICE {            [0] BootClock 
  277.  
  278.  
  279.  
  280. Partridge & Trewitt                                            [Page 10] 
  281.  RFC 1024                    HEMS Definitions                October 1987 
  282.  
  283.             [1] localClock            [2] NetClock        } 
  284.  
  285.    A TimeStamp, which was taken from the boot clock, system clock or the    synchronized clock.  In general, a time of day is preferred to the    time since boot, and a synchronized clock is preferred to an    unsynchronized clock.  It is more useful to know that an event    occurred at a particular time, than that it happened so many    milliseconds after the machine booted. 
  286.  
  287.  OBJECT DEFINITIONS 
  288.  
  289. The Root Dictionary 
  290.  
  291.    In HEMS, all data is stored in dictionaries, where a dictionary is    thought to represent a conceptual grouping of values.  The top-level    dictionary is the root dictionary.  The form of the root dictionary    for is shown below. 
  292.  
  293.            RootDictionary ::= [APPLICATION 32] IMPLICIT SET {                SystemVariables,                EventControls OPTIONAL,                Interfaces,                IpNetworkLayer,                IpRoutingTable,                IpTransportLayer,                IpApplications OPTIONAL            } 
  294.  
  295. The root dictionary is split into seven general dictionaries: 
  296.  
  297.            - SystemVariables, which stores general system values such            as the system clock, machine memory and system up/down            status. 
  298.  
  299.            - EventControls, which stores all objects necessary to            observe and control the event generating mechanism in            entities which support events. 
  300.  
  301.            - interfaces, which contains all information on all            the network interfaces and IP to physical address            maps (ARP tables, X.25 Standard mappings, etc). 
  302.  
  303.            - IpNetworkLayer, which contains information about the            workings of the IP layer.  This includes information such            as routing tables, general packet counts, and host-traffic 
  304.  
  305.  
  306.  
  307. Partridge & Trewitt                                            [Page 11] 
  308.  RFC 1024                    HEMS Definitions                October 1987 
  309.  
  310.             matrices. 
  311.  
  312.            - IpRoutingTable, which contains information on how the            machine routes packets.  It proved more useful to segregate            routing information than to keep it stored with the network            layer data. 
  313.  
  314.            - IpTransportLayer, which stores information on the transport            protocols that the entity supports. 
  315.  
  316.            - IpApplications, which may store information about various            internet applications such as the domain system.  This            section is not required of HEMS entities. 
  317.  
  318.    The next several sections define the values stored in the five    dictionaries. 
  319.  
  320.  The SystemVariables Dictionary 
  321.  
  322.    The SystemVariables dictionary stores objects which are not strictly    protocol, network, or application specific.  Such objects include    values such as the machine load, clocks and the processor status.    The form of the dictionary is shown below. 
  323.  
  324.    SystemVariables ::= [APPLICATION 33] IMPLICIT SET {        referenceClock   [0] IMPLICIT TimeStamp,        netClockInfo     [1] IMPLICIT SET OPTIONAL,        processorLoad    [2] IMPLICIT INTEGER,        entityState      [3] IMPLICIT INTEGER,        kernelMemory     [4] IMPLICIT OCTETSTRING OPTIONAL,        pktBuffers       [5] IMPLICIT INTEGER OPTIONAL,        pktOctets        [6] IMPLICIT INTEGER OPTIONAL,        pktBuffersFree   [7] IMPLICIT INTEGER OPTIONAL,        pktOctetsFree    [8] IMPLICIT INTEGER OPTIONAL        systemID         [9] IMPLICIT IA5STRING,    } 
  325.  
  326.    OBJECT:  SystemVariables 
  327.  
  328.    Type:  SET 
  329.  
  330.    Definition:  see above 
  331.  
  332.    The objects in the dictionary are defined below. 
  333.  
  334.    OBJECT:  referenceClock 
  335.  
  336.  
  337.  
  338.  Partridge & Trewitt                                            [Page 12] 
  339.  RFC 1024                    HEMS Definitions                October 1987 
  340.  
  341.     Type:  TimeStamp 
  342.  
  343.    Definition:  The system clock used for placing timestamps on        information.  Use of a NetClock is encouraged. 
  344.  
  345.    Operations on Object:  Defaults. 
  346.  
  347.    Notes:  Cross-network clock adjustment is best handled by a proper            time synchronization protocol, not through the use of SET. 
  348.  
  349.     OBJECT:  netClockInfo 
  350.  
  351.    Type:  SET 
  352.  
  353.    Definition:  Detailed information on the referenceClock if the        referenceClock is a NetClock.  The format of this        information is shown below. 
  354.  
  355.        netClockInfo ::= [1] IMPLICIT SET {            estError INTEGER,            refClockType INTEGER {                unspecified(0), primary-reference(1),                ntp-secondary-reference(2), secondary-reference(3),                wristwatch(4)              }         } 
  356.  
  357.         The estError is the estimated error in milliseconds.  The         refClockType is a value indicating the type of reference         clock consulted for network time  (the values are taken         directly from the Network Time Protocol specification,         RFC-958). 
  358.  
  359.    Object Status:  Required if the referenceClock is a NetClock. 
  360.  
  361.     OBJECT: processorLoad 
  362.  
  363.    Type:  Fraction 
  364.  
  365.    Definition:  A value, expressed as a Fraction, which indicates            the current processing load on the entity.  A value of            256 (= 1.0) is defined to be running at capacity.  It            is recognized that this is an imprecise definition since            capacity can be measured in several ways.  For example,            a multiprocessor may still have plenty of capacity            even if one processor is running at capacity, 
  366.  
  367.  
  368.  
  369. Partridge & Trewitt                                            [Page 13] 
  370.  RFC 1024                    HEMS Definitions                October 1987 
  371.  
  372.             or it may be at capacity because that processor is the            master processor and handles all context switching.            The idea is for remote applications to be able to get some            sense of the current workload on the entity.  Also note            that the time scale of the measurement should be small.            A load measure that averages over the past 10 seconds            is acceptable but a load measure that averages over the            past 10 minutes is not.  Implementors should chose some            mapping between system load and this scale such that 256            represents a machine under severe strain.  (Note that this            suggests that values greater than 256 may be returned in            rare cases.) 
  373.  
  374.    OBJECT:  entityState 
  375.  
  376.    Type:  INTEGER 
  377.  
  378.    Definition: An object which indicates the system state.  There are          several defined object values.  Some values are read-only and          can only be read from the object.  Over values are write-only          and will never be read from the object. Over values are          write-only and will never be read from the object.The values          are: 
  379.  
  380.            The read-only values are: 
  381.  
  382.                    (0) -- reserved. 
  383.  
  384.                    (1) -- running.  The entity is up and running. 
  385.  
  386.                    (2) -- testing.  The entity is running some sort of                        diagnostics which may affect its network                        operation. 
  387.  
  388.            The write-only values are: 
  389.  
  390.                    (0) -- reserved. 
  391.  
  392.                    (1) -- reset the entity. 
  393.  
  394.                    (2) -- reboot the entity. This value is assumed to                        cause a more aggressive recycling of the system                        than reset, though this need not be the case. 
  395.  
  396.                    (3) -- halt the entity.  This value stops the                        entity.  It assumed to prevent the entity from                        operating until it is manually restarted.  (I.e.                        the halt takes the machine off the network). 
  397.  
  398.  
  399.  
  400. Partridge & Trewitt                                            [Page 14] 
  401.  RFC 1024                    HEMS Definitions                October 1987 
  402.  
  403.     Note:  The ability to change an entity's state requires very strong       access controls. 
  404.  
  405.     Operations on Object:  The defaults except as noted below. 
  406.  
  407.        SET:  Optionally writes the value into the object.              The message requesting the SET must be authenticated. 
  408.  
  409.        SET-MATCH:  Optionally writes the value into the object              if the current value is matched. 
  410.  
  411.    OBJECT:  kernelMemory 
  412.  
  413.    Type:  OCTETSTRING 
  414.  
  415.    Definition:  A sequence of octets which represents the image of the         kernel software running on the entity.  This facility is         provided to allow remote network debugging. 
  416.  
  417.         By kernel software, we mean that software which controls the         operations and access to the hardware.  In particular, the kernel         is expected to contain all network software up through the IP         layer. 
  418.  
  419.         Implementations which use lightweight processes or segmented         images should consider providing some way to map their internal         representation into a single contiguous stream of octets. 
  420.  
  421.    Note:  Access control is required to read this object. 
  422.  
  423.    Object Status:  Useful. 
  424.  
  425.    Operations on Object:  The defaults except as noted below. 
  426.  
  427.        GET-RANGE:  Emits the section of memory specified. 
  428.  
  429.        GET:  Emits all of memory, but note that a GET on the system            dictionary should *not* emit this object. 
  430.  
  431.    OBJECT:  pktBuffers 
  432.  
  433.    Type:  INTEGER 
  434.  
  435.    Definition:  The total number of packet buffers in the entity. 
  436.  
  437.    Object Status:  Required if the entity has a maximum number of        buffers.  Note that most entities do have a limit (even if it 
  438.  
  439.  
  440.  
  441. Partridge & Trewitt                                            [Page 15] 
  442.  RFC 1024                    HEMS Definitions                October 1987 
  443.  
  444.         is for practical purposes, near infinite) and should return        that limit. 
  445.  
  446.    OBJECT:  pktOctets 
  447.  
  448.    Type:  INTEGER 
  449.  
  450.    Definition:  The maximum number of octets that can be buffered in the        entity at any one time. 
  451.  
  452.    Object Status:  Required if the entity has a maximum number of octets        it can buffer.  Note that most entities do have a limit and        should return that limit. 
  453.  
  454.     OBJECT:  pktBuffersFree 
  455.  
  456.    Type:  INTEGER 
  457.  
  458.    Definition:  The number of packet buffers currently available.        Subtracting pktBuffersFree from pktBuffers should give the        number of buffers in use. 
  459.  
  460.    Object Status:  Required if there is a limit on the number of        buffers. 
  461.  
  462.     OBJECT: pktOctetsFree 
  463.  
  464.    Type: INTEGER 
  465.  
  466.    Definition:  The number of octets currently available including those        not used in allocated buffers.  Subtracting this value from        pktOctets should give the number of octets in use. 
  467.  
  468.        This object can be used to track how well the entity buffers its        data. 
  469.  
  470.        Object Status:  Required if there is a limit on the number of        octets that can be buffered. 
  471.  
  472.     OBJECT:  systemID 
  473.  
  474.    Type:  IA5STRING 
  475.  
  476.    Definition:  The text identification of the entity.  This value        should include the full name of the vendor, the type of system, 
  477.  
  478.  
  479.  
  480. Partridge & Trewitt                                            [Page 16] 
  481.  RFC 1024                    HEMS Definitions                October 1987 
  482.  
  483.         and the version number of the hardware and software running on        the entity. 
  484.  
  485.  The EventControls Dictionary 
  486.  
  487.     The EventControls dictionary contains objects to control and     monitor the delivery of event messages to operations centers.     The format of this dictionary is shown below. 
  488.  
  489.         EventControls ::= [APPLICATION 34] IMPLICIT SET OPTIONAL {            lastEvent      [0] IMPLICIT OCTETSTRING OPTIONAL,            eventMessageID [1] IMPLICIT Counter,            eventCenters   [2] IMPLICIT SET of IpAddress,            eventList      [3] IMPLICIT SET of eventEntry,        } 
  490.  
  491.      OBJECT: eventControls 
  492.  
  493.     Type: SET 
  494.  
  495.     Definition: See above. 
  496.  
  497.     Object Status:  This object will be required in entities which         support events, after the event definitions have been         properly specified.  See discussion of the event formats         at the end of this memo. 
  498.  
  499.     A description of the fields in this dictionary are given below. 
  500.  
  501.      OBJECT:  lastEvent 
  502.  
  503.     Type:  OCTETSTRING 
  504.  
  505.     Definition:  The last event message sent. 
  506.  
  507.     Object Status: Implementation of this object is encouraged if the         transport protocol used for events is unreliable (e.g., UDP). 
  508.  
  509.      OBJECT:  eventMessageID 
  510.  
  511.      Type:  Counter 
  512.  
  513.  
  514.  
  515.  Partridge & Trewitt                                            [Page 17] 
  516.  RFC 1024                    HEMS Definitions                October 1987 
  517.  
  518.      Definition:  The HEMP MessageId to be used in the next event         message.  Equals the number of events sent. 
  519.  
  520.     OBJECT:  eventCenters 
  521.  
  522.     Type:  SET of IpAddress 
  523.  
  524.     Definition:  The list of IP addresses to which events are sent.         This list receives all events.  For more selective event         monitoring, centers should list themselves under the         particular events of interest. 
  525.  
  526.     Note:  If the SET operator is defined then use of some form of         access control is recommended. 
  527.  
  528.     Operations on Object: The defaults except as listed below. 
  529.  
  530.         CREATE:  Adds an address to the list.  The new address may             not be a broadcast address (it may be a multicast             address). 
  531.  
  532.         DELETE:  Deletes an address from the list. 
  533.  
  534.         SET-MATCH:  Defined on the IP address.  Replaces the             address with a new value. 
  535.  
  536.         EMIT-MATCH:  Defined on the IP address. 
  537.  
  538.      OBJECT:  eventList 
  539.  
  540.     Type: SET of eventEntry 
  541.  
  542.     Definition: An array of entries which contain objects which allow         management centers to control how and when events are sent.         (The contents of the eventEntry structure are explained below.) 
  543.  
  544. The eventControls Dictionary:  eventList/eventEntry 
  545.  
  546.     The eventEntry provides the necessary control objects to manage how     a particular event is sent.  The format of the eventEntry is shown     below. 
  547.  
  548.             eventEntry ::= [0] IMPLICIT SET {                 eventID        [0] IMPLICIT INTEGER,                 eventMode      [1] IMPLICIT INTEGER,                 eventCount     [2] IMPLICIT Counter,                 threshold      [3] IMPLICIT Counter, 
  549.  
  550.  
  551.  
  552. Partridge & Trewitt                                            [Page 18] 
  553.  RFC 1024                    HEMS Definitions                October 1987 
  554.  
  555.                  thresholdIncr  [4] IMPLICIT INTEGER,                 eventExecution [5] IMPLICIT InstructionGroup OPTIONAL,                 eventCenters   [6] IMPLICIT SET of IpAddress             } 
  556.  
  557.     OBJECT:  eventEntry 
  558.  
  559.     Type:  SET 
  560.  
  561.     Definition:  See Above. 
  562.  
  563.      OBJECT:  eventID 
  564.  
  565.     Type:  INTEGER 
  566.  
  567.     Definition:  The particular event ID. 
  568.  
  569.      OBJECT:  eventMode 
  570.  
  571.     Type:  INTEGER 
  572.  
  573.     Definition:  A control object which determines how and whether this         event is sent.  The three modes are: 
  574.  
  575.            0 -- unused. 
  576.  
  577.            1 -- off.  The event is not sent. 
  578.  
  579.            2 -- on.   The event is sent every time it occurs. 
  580.  
  581.            3 -- threshold.  The event is sent every time the                 event count reaches the threshold. 
  582.  
  583.      OBJECT:  eventCount 
  584.  
  585.     Type:  Counter 
  586.  
  587.     Definition:  The number of times this event has occurred. 
  588.  
  589.      OBJECT:  threshold 
  590.  
  591.     Type:  Counter 
  592.  
  593.  
  594.  
  595.  
  596.  
  597. Partridge & Trewitt                                            [Page 19] 
  598.  RFC 1024                    HEMS Definitions                October 1987 
  599.  
  600.      Definition: The event threshold.  If the eventMode is "threshold"         then a event is sent every time the eventCount equals this         value. 
  601.  
  602.     Operations on Object:  The defaults except as noted below. 
  603.  
  604.             SET:  Changes the threshold. 
  605.  
  606.     OBJECT:  thresholdIncr 
  607.  
  608.     Type:  INTEGER 
  609.  
  610.     Definition:  The threshold increment.  Every time a event threshold         is reached, the threshold value is incremented by this value         (modulo the precision of the Counter) to find the new         threshold. 
  611.  
  612.     Operations on Object:  The defaults except as noted below. 
  613.  
  614.             SET:  Changes the increment. 
  615.  
  616.      OBJECT:  eventExecution 
  617.  
  618.     Type:  InstructionGroup 
  619.  
  620.     Definition:  A query to be executed whenever the event is actually         sent.  Any data retrieved by this query is appended to the         event message. 
  621.  
  622.     Object Status:  Encouraged. 
  623.  
  624.     Operations on Object:  The defaults except as noted below. 
  625.  
  626.             SET:  Changes the buffer. 
  627.  
  628.      OBJECT:  eventCenters 
  629.  
  630.     Type:  SET 
  631.  
  632.     Definition:  The IP addresses of the monitoring centers which wish         to listen to this particular event.  Note that events should be         sent to both these centers and the global list of event centers. 
  633.  
  634.     Operations on Object:  The defaults except as noted below. 
  635.  
  636.             CREATE:  Adds an address to the list of centers. 
  637.  
  638.  
  639.  
  640. Partridge & Trewitt                                            [Page 20] 
  641.  RFC 1024                    HEMS Definitions                October 1987 
  642.  
  643.              DELETE:  Deletes an address from the list. 
  644.  
  645.             SET-MATCH:  Defined on the IP address.  Replaces the                 entry with a new value. 
  646.  
  647.             EMIT-MATCH:  Defined on the IP address. 
  648.  
  649.  The Interfaces Dictionary 
  650.  
  651.     The Interfaces dictionary a list of per-interface objects.  Since     one of the fundamental goals of HEMS is to use generic interfaces     across differing hardwares, all hardware interfaces are described by     the same data structure, the InterfaceData. 
  652.  
  653.          Interfaces ::= [APPLICATION 35] IMPLICIT SET OF InterfaceData 
  654.  
  655.     OBJECT:  Interfaces 
  656.  
  657.     Type:  SET 
  658.  
  659.     Definition:  see above. 
  660.  
  661.  The Interfaces Dictionary: The InterfaceData structure. 
  662.  
  663.     The InterfaceData structure contains all information on a particular     interface.  The form of the structure is shown below. 
  664.  
  665.             InterfaceData ::= [0] IMPLICIT SET {                 addresses         [0] IMPLICIT SET of IpAddress,                 mtu               [1] IMPLICIT INTEGER,                 netMask           [2] IMPLICIT IpAddress,                 pktsIn            [3] IMPLICIT Counter,                 pktsOut           [4] IMPLICIT Counter,                 inputPktsDropped  [5] IMPLICIT Counter,                 outputPktsDropped [6] IMPLICIT Counter,                 bcastPktsIn       [7] IMPLICIT Counter OPTIONAL,                 bcastPktsOut      [8] IMPLICIT Counter OPTIONAL,                 mcastPktsIn       [9] IMPLICIT Counter OPTIONAL,                 mcastPktsOut     [10] IMPLICIT Counter OPTIONAL,                 inputErrors      [11] IMPLICIT Counter,                 outputErrors     [12] IMPLICIT Counter,                 outputQLen       [13] IMPLICIT INTEGER,                 name             [14] IMPLICIT IA5String,                 status           [15] IMPLICIT INTEGER,                 ifType           [16] IMPLICIT INTEGER,                 mediaErrors      [17] IMPLICIT Counter OPTIONAL, 
  666.  
  667.  
  668.  
  669. Partridge & Trewitt                                            [Page 21] 
  670.  RFC 1024                    HEMS Definitions                October 1987 
  671.  
  672.                  upTime           [18] IMPLICIT TimeStamp,                 broadcast        [19] IMPLICIT BITSTRING                 multicast        [20] IMPLICIT SET of BITSTRING,                 addressList      [21] IMPLICIT SET OPTIONAL,             } 
  673.  
  674.     OBJECT:  InterfaceData 
  675.  
  676.     Type:  SET 
  677.  
  678.     Definition:  see above. 
  679.  
  680.     Operations on Object:  The defaults except as noted below. 
  681.  
  682.         SET-MATCH:  This operation is optionally defined on the             address field of the structure.  Only certain fields             in this structure may be changed.  The fields which             may be SET are indicated in the descriptions below. 
  683.  
  684.         GET-MATCH:  Defined to emit information on the interface             which matches the address given. 
  685.  
  686.     The fields in the structure are defined below. 
  687.  
  688.      OBJECT:  addresses 
  689.  
  690.     Type:  SET of IpAddress 
  691.  
  692.     Definition:  The IP addresses that the interface accepts.  Note that         additional information on multicast addresses may be found in         the IgmpValues dictionary. 
  693.  
  694.      OBJECT:  mtu 
  695.  
  696.     Type:  INTEGER 
  697.  
  698.     Definition:  The maximum transmission unit of the device. 
  699.  
  700.      OBJECT:  netMask 
  701.  
  702.     Type:  IpAddress 
  703.  
  704.     Definition:  The subnet mask, which is an address with all the         network bits set to 1 and all the hosts bits set to 0.  Used to         identify subnets. 
  705.  
  706.  
  707.  
  708. Partridge & Trewitt                                            [Page 22] 
  709.  RFC 1024                    HEMS Definitions                October 1987 
  710.  
  711.      OBJECT:  pktsIn 
  712.  
  713.     Type:  Counter 
  714.  
  715.     Definition:  The total number of packets received on this interface         including those in error. 
  716.  
  717.      OBJECT:  pktsOut 
  718.  
  719.     Type:  Counter 
  720.  
  721.     Definition:  The total number of packets that higher levels have         attempted to send, including those that were not sent. 
  722.  
  723.      OBJECT:  inputPktsDropped 
  724.  
  725.     Type:  Counter 
  726.  
  727.     Definition:  The number of good inbound packets dropped (presumably         to free up buffer space). 
  728.  
  729.     OBJECT:  outputPktsDropped 
  730.  
  731.     Type:  Counter 
  732.  
  733.     Definition:  The number of good outbound packets dropped (presumably         to free up buffer space). 
  734.  
  735.     OBJECT:  bcastPktsIn 
  736.  
  737.     Type:  Counter 
  738.  
  739.     Definition:  The number of broadcast packets received including         those in error. 
  740.  
  741.     Object Status:  Encouraged on interfaces that support broadcast. 
  742.  
  743.      OBJECT:  bcastPktsOut 
  744.  
  745.     Type:  Counter 
  746.  
  747.     Definition:  The number of broadcast packets that higher levels         attempted to send, including those that were not sent. 
  748.  
  749.     Object Status:  Encouraged on interfaces that support broadcast. 
  750.  
  751.  
  752.  
  753. Partridge & Trewitt                                            [Page 23] 
  754.  RFC 1024                    HEMS Definitions                October 1987 
  755.  
  756.      OBJECT:  mcastPktsIn 
  757.  
  758.     Type:  Counter 
  759.  
  760.     Definition:  The number of multicast packets received including         those in error. 
  761.  
  762.     Object Status:  Encouraged on interfaces that support multicast. 
  763.  
  764.  
  765.  
  766.     OBJECT:  mcastPktsOut 
  767.  
  768.     Type:  Counter 
  769.  
  770.     Definition: The number of multicast packets sent, including those         that were not sent. 
  771.  
  772.     Object Status:  Encouraged on interfaces that support multicast. 
  773.  
  774.      OBJECT:  inputErrors 
  775.  
  776.     Type:  Counter 
  777.  
  778.     Definition: The number of inbound packets that could not be         delivered.  The number of inbound packets delivered         should equal inputPkts less this value and inputPktsDropped. 
  779.  
  780.     OBJECT:  outputErrors 
  781.  
  782.     Type:  Counter 
  783.  
  784.     Definition:  The number of outbound packets that could not be         transmitted because of errors.  The number of outbound         packets placed on the network should equal outputPkts         less this value and outputPktsDropped. 
  785.  
  786.     OBJECT:  outputQLen 
  787.  
  788.     Type:  INTEGER 
  789.  
  790.     Definition:  The length of the output packet queue (in packets). 
  791.  
  792.      OBJECT:  name 
  793.  
  794.     Type:  IA5String 
  795.  
  796.  
  797.  
  798. Partridge & Trewitt                                            [Page 24] 
  799.  RFC 1024                    HEMS Definitions                October 1987 
  800.  
  801.      Definition:  A text string completely identifying the interface.         This string should include the name of the manufacturer, the         product name and the version of the hardware. 
  802.  
  803.     OBJECT:  status 
  804.  
  805.     Type:  INTEGER 
  806.  
  807.     Definition:  The status of the object.  The status values are: 
  808.  
  809.                 0 -- reserved                 1 -- testing (the interface is in some test mode)                 2 -- down  (the interface is down)                 3 -- up  (the interface is up ready to pass packets) 
  810.  
  811.     Note:  If set operations are defined, access control is required. 
  812.  
  813.     Operations on Object:  The defaults except as noted below. 
  814.  
  815.        SET:  Optionally defined to change the state of the interface. 
  816.  
  817.     OBJECT:  ifType 
  818.  
  819.     Type:  INTEGER 
  820.  
  821.     Definition: A flag which indicates the type of interface in use.  The         currently defined types are: 
  822.  
  823.                      0 -- reserved                      1 -- 1822 HDH                      2 -- 1822                      3 -- FDDI                      4 -- DDN X.25                      5 -- RFC-877 X.25                      6 -- StarLan                      7 -- Proteon 10Mbit                      8 -- Proteon 80Mbit                      9 -- Ethernet                     10 -- 802.3 Ethernet                     11 -- 802.4 Token Bus                     12 -- 802.5 Token Ring                     13 -- Point-to-Point Serial 
  824.  
  825.     OBJECT:  mediaErrors 
  826.  
  827.     Type:  Counter 
  828.  
  829.  
  830.  
  831.  
  832.  
  833. Partridge & Trewitt                                            [Page 25] 
  834.  RFC 1024                    HEMS Definitions                October 1987 
  835.  
  836.      Definition:  A counter of media errors, such as collisions on         Ethernets, token regeneration on token passing rings, or lost         RFNMs on PSNs. 
  837.  
  838.     Object Status:  Encouraged for interfaces to media which have such         errors. 
  839.  
  840.      OBJECT:  upTime 
  841.  
  842.     Type:  TimeStamp 
  843.  
  844.     Definition:  When the interface was put in its current state. 
  845.  
  846.      OBJECT:  broadcast 
  847.  
  848.     Type:  BITSTRING 
  849.  
  850.     Definition:  Whether this interface has a physical broadcast         address. 
  851.  
  852.     Object Status:  Required if the interface has a broadcast adddress. 
  853.  
  854.      OBJECT:  multicast 
  855.  
  856.     Type:  SET of BITSTRING 
  857.  
  858.     Definition: The set of hardware multicast addresses currently         enabled on the device. 
  859.  
  860.     Object Status:  Encouraged in interfaces which support multicast. 
  861.  
  862.  
  863.  
  864.     OBJECT:  addressList 
  865.  
  866.     Definition:  SET of addressMap 
  867.  
  868.          addressMap ::= [0] IMPLICIT SET {                  ipAddr     [0] IMPLICIT IpAddress                  physAddr   [1] IMPLICIT BITSTRING          } 
  869.  
  870.     Definition:  Most interfaces maintain tables mapping physical         network address to IP address.  An example is an ARP table.         This table stores that map as a series of entries which map 
  871.  
  872.  
  873.  
  874. Partridge & Trewitt                                            [Page 26] 
  875.  RFC 1024                    HEMS Definitions                October 1987 
  876.  
  877.          IP addresses to the physical address. 
  878.  
  879.     Object Status:  Required if the interface has to map IP addresses to         physical addresses. 
  880.  
  881. The IpNetworkLayer Dictionary 
  882.  
  883.     The IpNetworkLayer dictionary contains all information about the IP     Layer.  The format of the dictionary is shown below. 
  884.  
  885.             IpNetworkLayer ::= [APPLICATION 36] IMPLICIT SET {                 gateway           [0] IMPLICIT BOOLEAN,                 inputPkts         [1] IMPLICIT Counter,                 inputErrors       [2] IMPLICIT Counter,                 inputPktsDropped  [3] IMPLICIT Counter,                 inputQLen         [4] IMPLICIT INTEGER OPTIONAL,                 outputPkts        [5] IMPLICIT Counter,                 outputErrors      [6] IMPLICIT Counter,                 outputPktsDropped [7] IMPLICIT Counter,                 outputQLen        [8] IMPLICIT INTEGER OPTIONAL,                 ipID              [9] IMPLICIT Counter,                 fragCreated       [10] IMPLICIT Counter OPTIONAL,                 fragRcvd          [11] IMPLICIT Counter OPTIONAL,                 fragDropped       [12] IMPLICIT Counter OPTIONAL,                 pktsReassembled   [13] IMPLICIT Counter OPTIONAL,                 pktsFragmented    [14] IMPLICIT Counter OPTIONAL,                 htm               [15] IMPLICIT TrafficMatrix OPTIONAL,                 itm               [16] IMPLICIT TrafficMatrix OPTIONAL             } 
  886.  
  887.     OBJECT:  IpNetworkLayer 
  888.  
  889.     Type:  SET 
  890.  
  891.     Definition:  See above. 
  892.  
  893.      The fields of the dictionary are defined below. 
  894.  
  895.      OBJECT:  gateway 
  896.  
  897.     Type:  BOOLEAN 
  898.  
  899.     Definition: A boolean value which is true if the entity gateways         packets. 
  900.  
  901.  
  902.  
  903.  
  904.  
  905. Partridge & Trewitt                                            [Page 27] 
  906.  RFC 1024                    HEMS Definitions                October 1987 
  907.  
  908.      OBJECT: inputPkts 
  909.  
  910.     Type: Counter 
  911.  
  912.     Definition: The total number of input packets received including         those in error. 
  913.  
  914.      OBJECT: inputErrors 
  915.  
  916.     Type: Counter 
  917.  
  918.     Definition:  The number of input packets discarded due to errors         (unknown protocols, format errors, etc). 
  919.  
  920.      OBJECT:  inputPktsDropped 
  921.  
  922.     Type:  Counter 
  923.  
  924.     Definition: The number of input packets dropped for lack of buffer         space. 
  925.  
  926.      OBJECT:  inputQLen 
  927.  
  928.     Type:  INTEGER 
  929.  
  930.     Definition:  The number of inbound packets currently waiting to be         processed by the IP layer. 
  931.  
  932.     Object Status:  Encouraged. 
  933.  
  934.      OBJECT:  outputPkts 
  935.  
  936.     Type:  Counter 
  937.  
  938.     Definition:  The total number of outbound packets including both         those packets presented to the IP layer by higher layers and         packets which are gatewayed. 
  939.  
  940.      OBJECT:  outputErrors 
  941.  
  942.     Type:  Counter 
  943.  
  944.     Definition:  The number of output packets discarded because of 
  945.  
  946.  
  947.  
  948. Partridge & Trewitt                                            [Page 28] 
  949.  RFC 1024                    HEMS Definitions                October 1987 
  950.  
  951.          errors (unable to route, format errors, etc). 
  952.  
  953.      OBJECT:  outputPktsDropped 
  954.  
  955.     Type: Counter 
  956.  
  957.     Definition:  The number of output packets dropped for lack of         buffer space. 
  958.  
  959.      OBJECT:  outputQLen 
  960.  
  961.     Type:  INTEGER 
  962.  
  963.     Definition: The number of outbound packets waiting to be processed         by the IP layer. 
  964.  
  965.     Object Status:  Encouraged. 
  966.  
  967.      OBJECT:  ipID 
  968.  
  969.     Type:  Counter 
  970.  
  971.     Definition:  The next IP packet ID identifier to be used.  Note         that in some implementations the transport layer may set the         IP identifier, in which case this value is used if the IP         identifier has not been set by the transport layer. 
  972.  
  973.     OBJECT:  fragCreated 
  974.  
  975.     Type:  Counter 
  976.  
  977.     Definition:  The number of IP fragments created at this entity.         (e.g., if an IP is split into three fragments at this entity,         then this counter is incremented by three). 
  978.  
  979.     Object Status:  Encouraged. 
  980.  
  981.      OBJECT:  fragRcvd 
  982.  
  983.     Type:  Counter 
  984.  
  985.     Definition:  The number of IP fragments received at this entity. 
  986.  
  987.     Object Status:  Encouraged. 
  988.  
  989.  
  990.  
  991. Partridge & Trewitt                                            [Page 29] 
  992.  RFC 1024                    HEMS Definitions                October 1987 
  993.  
  994.      OBJECT:  fragDropped 
  995.  
  996.     Type:  Counter 
  997.  
  998.     Definition:  The number of IP fragments discarded at this entity         for whatever reason (timed out, errors, etc). 
  999.  
  1000.     Object Status:  Encouraged. 
  1001.  
  1002.      OBJECT:  pktsReassembled 
  1003.  
  1004.     Type:  Counter 
  1005.  
  1006.     Definition:  The number of IP datagrams that have been reassembled         at this entity. 
  1007.  
  1008.     Object Status:  Encouraged 
  1009.  
  1010.      OBJECT:  pktsFragmented 
  1011.  
  1012.     Type:  Counter 
  1013.  
  1014.     Definition:  The number of IP datagrams that have been fragmented         at this entity. 
  1015.  
  1016.     Object Status:  Encouraged. 
  1017.  
  1018.      OBJECT:  htm 
  1019.  
  1020.     Type:  TrafficMatrix 
  1021.  
  1022.     Definition:  A host traffic matrix, mapping all traffic switched any         pair of sources and destinations.  The count in each trafficEntry         routeDst is expressed in packets.  Source routed IP packets         should be logged as being between their source and the         destination (i.e., they should not be treated as destined for         this entity). 
  1023.  
  1024.     Notes:  This information may be considered sensitive. 
  1025.  
  1026.     Object Status:  Encouraged in gateways. 
  1027.  
  1028.  
  1029.  
  1030.     OBJECT:  itm 
  1031.  
  1032.  
  1033.  
  1034. Partridge & Trewitt                                            [Page 30] 
  1035.  RFC 1024                    HEMS Definitions                October 1987 
  1036.  
  1037.      Type:  TrafficMatrix 
  1038.  
  1039.     Definition: An interface traffic matrix showing traffic switched         between interfaces in an entity.  The source and destinations         fields are the IP addresses of the interfaces between which         the packet was switched.  The count in each trafficEntry is         expressed in packets. 
  1040.  
  1041.     Object Status: Useful. 
  1042.  
  1043.  The IpRoutingTable Dictionary 
  1044.  
  1045.     The IpRoutingTable dictionary contains all routing information.     Note that information about any routing protocols used to maintain     the routing table is found under the entry for the routing protocol.     The format of the routing dictionary is shown below. 
  1046.  
  1047.     IpRoutingTable ::= [APPLICATION 37] IMPLICIT SET {             routingProtocols [0] IMPLICIT OCTETSTRING,             coreRouter       [1] IMPLICIT BOOLEAN,             autoSys          [2] IMPLICIT INTEGER,             metricUsed       [3] IMPLICIT OCTET,                              [4] RoutingEntries,     } 
  1048.  
  1049.     OBJECT:  IpRoutingTable 
  1050.  
  1051.     Type:  SET 
  1052.  
  1053.     Definition:  See above. 
  1054.  
  1055.      The objects contained in the dictionary are described below. 
  1056.  
  1057.     OBJECT:  routingProtocols 
  1058.  
  1059.     Type:  OCTETSTRING 
  1060.  
  1061.     Definition: A sparse list of the routing protocols used to update         the routing table (e.g., EGP and ICMP).  Each octet contains one         of the following values: 
  1062.  
  1063.                     0 -- anything not specified below. 
  1064.  
  1065.                     1 -- local (non-protocol) information.  (E.g.                         routing tables can be changed by hand). 
  1066.  
  1067.  
  1068.  
  1069.  Partridge & Trewitt                                            [Page 31] 
  1070.  RFC 1024                    HEMS Definitions                October 1987 
  1071.  
  1072.                      2 -- HEMS (was changed/set by a HEMS operation) 
  1073.  
  1074.                     3 -- Internet Control Message Protocols, (i.e.                         ICMP redirects). 
  1075.  
  1076.                     4 --  Exterior Gateway Protocol (EGP). 
  1077.  
  1078.                     5 -- Gateway-to-Gateway Protocol (GGP). 
  1079.  
  1080.                     6 -- Dissimilar Gateway Protocol (DGP). 
  1081.  
  1082.                     7 -- HELO 
  1083.  
  1084.                     8 -- RIP 
  1085.  
  1086.                     9 -- Proprietary IGP 
  1087.  
  1088.     OBJECT: coreRouter 
  1089.  
  1090.     Type:  BOOLEAN 
  1091.  
  1092.     Definition:  This value is set to true if this entity is a reference         router for any other router (i.e., if it distributes any of its         routes to other machines). 
  1093.  
  1094.      OBJECT:  autoSys 
  1095.  
  1096.     Type:  INTEGER 
  1097.  
  1098.     Definition:  The autonomous system number of the autonomous system in         which this entity resides. 
  1099.  
  1100.      OBJECT:  metricUsed 
  1101.  
  1102.     Type:  OCTET 
  1103.  
  1104.     Definition: Classifies the routing metric used in the routing table         entries.  The value should be chosen from the list of values for         routingProtocols above, and indicates the metric definition used         (e.g., this entity uses an EGP metric internally). 
  1105.  
  1106.      OBJECT:  RoutingEntries 
  1107.  
  1108.     Type:  SET of RoutingEntry 
  1109.  
  1110.  
  1111.  
  1112.  Partridge & Trewitt                                            [Page 32] 
  1113.  RFC 1024                    HEMS Definitions                October 1987 
  1114.  
  1115.      Definition:  The set of all routing entries.  The RoutingEntry is         defined below. 
  1116.  
  1117.  The IpRoutingTable Dictionary: The RoutingEntry 
  1118.  
  1119.     The RoutingEntry contains all information on a particular route.     The format of the structure is shown below. 
  1120.  
  1121.             RoutingEntry ::= [0] IMPLICIT SET {                 routeMetric     [0] IMPLICIT INTEGER,                 routeDst        [1] IMPLICIT IpAddress,                 nextHop         [2] IMPLICIT IpAddress,                 routeAuthor     [3] IMPLICIT IpAddress OPTIONAL,                 routeproto      [4] IMPLICIT Octet OPTIONAL,                 routeTime       [5] TimeStamp,                 routeTOS        [6] IMPLICIT INTEGER OPTIONAL,                 valid           [7] IMPLICIT BOOLEAN             } 
  1122.  
  1123.     OBJECT:  RoutingEntry 
  1124.  
  1125.     Type:  SET 
  1126.  
  1127.     Definition:  See above. 
  1128.  
  1129.     Operations on Object:  Defaults except as specified below. 
  1130.  
  1131.         CREATE: Adds a new routing entry.  It should be confirmed             that the entry is new. 
  1132.  
  1133.         DELETE: Deletes a routing entry. 
  1134.  
  1135.         GET-MATCH:  The match operator is defined on the routeDst             field.  A match on an IpAddress is defined to be a             search to find the route or routes which would be             used to reach the IpAddress.  More than one route             may be applicable, in which case all possible routes             should be returned. 
  1136.  
  1137.         SET-MATCH: Is optionally defined on the object.  A SET             on an entire RoutingEntry replaces the entire entry             with a new value.  Certain fields (indicated below)             can also be changed using a SET-MATCH. 
  1138.  
  1139.             The match operator is defined on the routeDst and             routeTOS fields.  To SET a value, the match must be             exact on the IP address (this is different from the 
  1140.  
  1141.  
  1142.  
  1143. Partridge & Trewitt                                            [Page 33] 
  1144.  RFC 1024                    HEMS Definitions                October 1987 
  1145.  
  1146.              search definition for GET-MATCH). 
  1147.  
  1148.             Note that support of the operator on an entity             which uses a dynamic routing protocol such as             GGP or EGP will require close coordination with             the routing protocol to ensure consistent data.             (Arguably, this facility should not be supported             on such machines). 
  1149.  
  1150.     The definitions of the fields in the RoutingEntry are given below. 
  1151.  
  1152.      OBJECT:  routeMetric 
  1153.  
  1154.     Type:  INTEGER 
  1155.  
  1156.     Definition: The routing metric on this route.  Note that the type of         metric is defined in the metricUsed field of the IpRoutingTable         dictionary. 
  1157.  
  1158.     OBJECT: routeDst 
  1159.  
  1160.     Type: IpAddress 
  1161.  
  1162.     Definition:  The final destination that can be reached via this         route. 
  1163.  
  1164.      OBJECT:  nextHop 
  1165.  
  1166.     Type:  IpAddress 
  1167.  
  1168.     Definition:  The next hop to the final destination. 
  1169.  
  1170.      OBJECT:  routeAuthor 
  1171.  
  1172.     Type:  IpAddress 
  1173.  
  1174.     Definition:  The IP address of the entity from which this route was         *first* received.  That is, the first entity which stated that         was reached via nextHop.  The default IpAddress should be used         to indicate routes which originated on the entity. 
  1175.  
  1176.     Object Status:  Encouraged. 
  1177.  
  1178.      OBJECT:  routeProto 
  1179.  
  1180.  
  1181.  
  1182. Partridge & Trewitt                                            [Page 34] 
  1183.  RFC 1024                    HEMS Definitions                October 1987 
  1184.  
  1185.      Type:  Octet 
  1186.  
  1187.     Definition:  The routing protocol from which this route was learned.         The value is taken from the list of values for routingProtocols         above. 
  1188.  
  1189.     Object Status:  Encouraged. 
  1190.  
  1191.      OBJECT: routeTime 
  1192.  
  1193.     Type:  TimeStamp 
  1194.  
  1195.     Definition:  When this route was first received. 
  1196.  
  1197.     Object Status:  Encouraged. 
  1198.  
  1199.      OBJECT:  routeTOS 
  1200.  
  1201.     Type:  INTEGER 
  1202.  
  1203.     Definition:  The IP Type of Service which this routing entry serves. 
  1204.  
  1205.     Object Status:  Required if type of service routing is supported. 
  1206.  
  1207.      OBJECT:  valid 
  1208.  
  1209.     Type:  BOOLEAN 
  1210.  
  1211.     Definition:  Whether the route is active.  (Some machines retain         routes which are no longer valid for various reasons.) 
  1212.  
  1213. The IpTransportLayer Dictionary 
  1214.  
  1215.     The IpTransportLayer Dictionary contains any information which     pertains to transport protocols which use the IP protocol as the     network protocol.  For ease of reference, the ASN.1 tag of each     transport protocol's dictionary is the same as the assigned IP     Protocol number.  The definition of the IpTransportLayer     dictionary is shown below.  Note that dictionaries for many     protocols are not yet defined. 
  1216.  
  1217.     IpTransportLayer ::= [APPLICATION 38] IMPLICIT SET {                 [0] IMPLICIT ProtocolsSupported,                 [1] IMPLICIT IcmpValues,                 [2] IMPLICIT IgmpValues OPTIONAL, 
  1218.  
  1219.  
  1220.  
  1221. Partridge & Trewitt                                            [Page 35] 
  1222.  RFC 1024                    HEMS Definitions                October 1987 
  1223.  
  1224.                  [3] IMPLICIT GgpValues OPTIONAL,                 [7] IMPLICIT TcpValues OPTIONAL,                 [8] IMPLICIT EgpValues OPTIONAL,                 [17] IMPLICIT UdpValues OPTIONAL,                 [20] IMPLICIT HmpValues OPTIONAL,                 [27] IMPLICIT RdpValues OPTIONAL,                 [30] IMPLICIT NetbltValues OPTIONAL,     } 
  1225.  
  1226.     OBJECT:  IpTransportLayer 
  1227.  
  1228.     Type:  SET 
  1229.  
  1230.     Definition:  see above. 
  1231.  
  1232.     The objects in the dictionary are defined below. 
  1233.  
  1234. The IpTransportLayer Dictionary:  ProtocolsSupported 
  1235.  
  1236.     OBJECT:  protocolsSupported 
  1237.  
  1238.     Type:  OCTETSTRING 
  1239.  
  1240.     Definition: Sparse list of transport protocols supported.  Each         octet in the OCTETSTRING contains the IP protocol number of a         supported protocol.  For the purposes of this definition, an         entity supports a protocol if it both contains software to         makes it possible for the protocol to be used in         communications with the entity, AND the entity keeps the         required values (if any) defined in this memo for that protocol. 
  1241.  
  1242.  The IpTransportLayer Dictionary: IcmpValues 
  1243.  
  1244.     The IcmpValues dictionary is a subdictionary of the IpTransportLayer     dictionary which tracks the workings of the Internet Control Message     Protocol, defined in RFC-792.  The form of the dictionary is shown     below.             IcmpValues ::= SET {                 inputPktCount   [0] IMPLICIT Counter,                 inputPktErrors  [1] IMPLICIT Counter,                 inputPktDeliver [2] IMPLICIT Counter,                 inputPktTypes   [3] IMPLICIT Histogram OPTIONAL,                 outputPktCount  [4] IMPLICIT Counter,                 outputPktErrors [5] IMPLICIT Counter,                 outputPktTypes  [6] IMPLICIT Histogram OPTIONAL,                 icmpTraffic     [7] IMPLICIT TrafficMatrix OPTIONAL,                 ipID            [8] IMPLICIT Counter OPTIONAL 
  1245.  
  1246.  
  1247.  
  1248. Partridge & Trewitt                                            [Page 36] 
  1249.  RFC 1024                    HEMS Definitions                October 1987 
  1250.  
  1251.              } 
  1252.  
  1253.     OBJECT:  IcmpValues 
  1254.  
  1255.     Type:  SET 
  1256.  
  1257.     Definition:  see above. 
  1258.  
  1259.     The objects in the dictionary are defined below. 
  1260.  
  1261.      OBJECT:  inputPktCount 
  1262.  
  1263.     Type:  Counter 
  1264.  
  1265.     Definition:  The total number of ICMP packets received (including         those in error). 
  1266.  
  1267.  
  1268.  
  1269.     OBJECT:  inputPktErrors 
  1270.  
  1271.     Type:  Counter 
  1272.  
  1273.     Definition:  The number of ICMP packets received which proved to         have errors (bad checksums, bad length etc).  Subtracting this         value from the inputPktCount field should give the number of         valid ICMP packets received. 
  1274.  
  1275.      OBJECT:  inputPktDeliver 
  1276.  
  1277.     Type:  Counter 
  1278.  
  1279.     Definition:  The number of valid ICMP packets which were         successfully processed (e.g., delivered to the higher         protocol). 
  1280.  
  1281.      OBJECT:  inputPktTypes 
  1282.  
  1283.     Type:  Histogram 
  1284.  
  1285.     Definition:  A histogram of ICMP messages types and codes received,         not including those messages that proved to contain errors.         The histogram histValue field contains a 16-bit value which is         the the (ICMP type * 256) + ICMP code, and the histCount field         contains the number of valid messages containing this 
  1286.  
  1287.  
  1288.  
  1289. Partridge & Trewitt                                            [Page 37] 
  1290.  RFC 1024                    HEMS Definitions                October 1987 
  1291.  
  1292.          type/code pair which have been received. 
  1293.  
  1294.         The message type and code values are those defined in RFC-792         (e.g., the Time Exceeded Message with a code of "fragment         reassembly time exceeded" is (11 * 256) + 1 = 2817). 
  1295.  
  1296.     Object Status:  Useful. 
  1297.  
  1298.     Operations on Object:  The defaults except as listed below: 
  1299.  
  1300.         GET-MATCH:  Match is defined on the value of the histValue             field. 
  1301.  
  1302.     OBJECT:  outputPktCount 
  1303.  
  1304.     Type:  Counter 
  1305.  
  1306.     Definition:  The total number of ICMP packets that the entity         attempted to send (including those that failed due to lack of         buffers, a missing route or other transient transmission         problems). 
  1307.  
  1308.      OBJECT:  outputPktErrors 
  1309.  
  1310.     Type:  Counter      Definition:  The number of ICMP packets which the entity could not         send due to transmission problems such as the lack of buffers, a         missing route or other transient transmission problems.  This         value is not required to include errors which the ICMP layer         could not reasonably be expected to detect such as damage to the         packet in transit.  Subtracting this value from the PktCount         field should give the number of ICMP packets the entity believes         it successfully sent. 
  1311.  
  1312.  
  1313.  
  1314.     OBJECT:  outputPktTypes 
  1315.  
  1316.     Type:  Histogram 
  1317.  
  1318.     Definition:  A histogram of ICMP messages types and codes sent,         including those messages that later failed to be transmitted.         The histogram histValue field contains a 16-bit value which is         the the (ICMP type * 256) + ICMP code, and the histCount field         contains the number of valid messages containing this type/code         pair which have been sent. 
  1319.  
  1320.  
  1321.  
  1322. Partridge & Trewitt                                            [Page 38] 
  1323.  RFC 1024                    HEMS Definitions                October 1987 
  1324.  
  1325.          The message type and code values are those defined in RFC-792         (e.g., the Time Exceeded Message with a code of "fragment         reassembly time exceeded" is (11 * 256) + 1 = 2817). 
  1326.  
  1327.      Object Status:  Useful. 
  1328.  
  1329.     Operations on Object:  The defaults except as listed below: 
  1330.  
  1331.             GET-MATCH:  Match is defined on the value of the histValue                 field. 
  1332.  
  1333.     OBJECT:  icmpTraffic 
  1334.  
  1335.     Type:  TrafficMatrix 
  1336.  
  1337.     Definition:  All ICMP traffic which has originated on this machine.         The source address in the traffic matrix should be the interface         from which the packet was sent.  The destination is the address         to which the packet is to finally be delivered (not an         intermediate hop). 
  1338.  
  1339.     Object Status:  Useful. 
  1340.  
  1341.      OBJECT:  ipID 
  1342.  
  1343.     Type:  Counter 
  1344.  
  1345.     Definition:  The next IP packet ID identifier to be used by the ICMP         code. 
  1346.  
  1347.     Object Status:  Required if the ICMP code generates its own IP         identifiers. 
  1348.  
  1349.  
  1350.  
  1351. The IpTransportLayer Dictionary: IgmpValues 
  1352.  
  1353.     IgmpValues ::= SET {         conformance     [0] IMPLICIT INTEGER,         inputPktCount   [1] IMPLICIT Counter,         inputPktErrors  [2] IMPLICIT Counter,         inputPktTypes   [3] IMPLICIT Histogram OPTIONAL,         outputPktCount  [4] IMPLICIT Counter,         outputPktErrors [5] IMPLICIT Counter,         outputPktTypes  [6] IMPLICIT Histogram OPTIONAL,         igmpTraffic     [7] IMPLICIT TrafficMatrix OPTIONAL 
  1354.  
  1355.  
  1356.  
  1357. Partridge & Trewitt                                            [Page 39] 
  1358.  RFC 1024                    HEMS Definitions                October 1987 
  1359.  
  1360.          igmpGroups      [8] IMPLICIT SET of IgmpGroupEntry,         ipID            [9] IMPLICIT Counter OPTIONAL,        } 
  1361.  
  1362.     OBJECT:  IgmpValues 
  1363.  
  1364.     Type:  SET 
  1365.  
  1366.     Definition:  The dictionary of information on the Internet Group         Management Protocol (RFC-988). 
  1367.  
  1368.     Object Status:  Required in hosts which support IGMP. 
  1369.  
  1370.     The objects stored in this dictionary are defined below. 
  1371.  
  1372.      OBJECT:  conformance 
  1373.  
  1374.     Type:  INTEGER 
  1375.  
  1376.     Definition:  The level of conformance with RFC-988.  The conformance         levels are: 
  1377.  
  1378.                0 -- Level 0.  No support for IP multicasting 
  1379.  
  1380.                1 -- Level 1.  Support for sending but not receiving                     multicast datagrams. 
  1381.  
  1382.                2 -- Level 2.  Full support for IP multicasting. 
  1383.  
  1384.         These values are taken directly from RFC-988. 
  1385.  
  1386.      OBJECT:  inputPktCount 
  1387.  
  1388.     Type:  Counter 
  1389.  
  1390.     Definition:  The number of IGMP packets received including those         that proved to be in error. 
  1391.  
  1392.     OBJECT:  inputPktErrors 
  1393.  
  1394.     Type:  Counter 
  1395.  
  1396.     Definition:  The number of IGMP packets received which proved to         be in error.  This value subtracted from inputPktCount should         give the number of valid IGMP packets received. 
  1397.  
  1398.  
  1399.  
  1400.  Partridge & Trewitt                                            [Page 40] 
  1401.  RFC 1024                    HEMS Definitions                October 1987 
  1402.  
  1403.      OBJECT:  inputPktTypes 
  1404.  
  1405.     Type:  Histogram 
  1406.  
  1407.     Definition:  A histogram of IGMP messages types and codes sent,         including those messages that later failed to be transmitted.         The histogram histValue field contains a 16-bit value which         is the the (IGMP type * 256) + IGMP code, and the histCount         field contains the number of valid messages containing this         type/code pair which have been sent. 
  1408.  
  1409.         The type and code values are taken from RFC-988. 
  1410.  
  1411.      OBJECT:  outputPktCount 
  1412.  
  1413.     Type:  Counter 
  1414.  
  1415.     Definition:  The total number of IGMP packets that the entity         attempted to send (including those that failed due to lack         of buffers, a missing route or other transient transmission         problems). 
  1416.  
  1417.     OBJECT:  outputPktErrors 
  1418.  
  1419.     Type:  Counter 
  1420.  
  1421.     Definition:  The number of IGMP packets which the entity could not         send due to transmission problems such as the lack of buffers,         a missing route or other transient transmission problems.         This value is not required to include errors which the IGMP         layer could not reasonably be expected to detect such as damage         to the packet in transit.  Subtracting this value from the         outputPktCount field should give the number of IGMP packets         the entity believes it successfully sent. 
  1422.  
  1423.     OBJECT:  outputPktTypes 
  1424.  
  1425.     Type:  Histogram 
  1426.  
  1427.     Definition:  A histogram of IGMP messages types and codes sent,         including those messages that later failed to be transmitted.         The histogram histValue field contains a 16-bit value which is         the the (IGMP type * 256) + IGMP code, and the histCount field         contains the number of valid messages containing this type/code         pair which have been sent. 
  1428.  
  1429.         The type and code values are taken from RFC-988. 
  1430.  
  1431.  
  1432.  
  1433. Partridge & Trewitt                                            [Page 41] 
  1434.  RFC 1024                    HEMS Definitions                October 1987 
  1435.  
  1436.      OBJECT: igmpTraffic 
  1437.  
  1438.     Type: TrafficMatrix 
  1439.  
  1440.     Definition:  All IGMP traffic which has originated on this machine.         The source address in the traffic matrix should be the interface         from which the packet was sent.  The destination is the address         to which the packet is to finally be delivered (not an         intermediate hop). 
  1441.  
  1442.     Object Status: Useful. 
  1443.  
  1444.  
  1445.  
  1446.     OBJECT: igmpGroups 
  1447.  
  1448.     Type: SET 
  1449.  
  1450.     Definition:  The various igmpGroups of which this host is aware.         This is stored as a set of IgmpGroupEntry.  The format of an         IgmpGroupEntry is shown below. 
  1451.  
  1452.                     IgmpGroupEntry ::= [0] SET {                         groupAddress      [0] IMPLICIT IpAddress,                         groupAccessKey    [1] IMPLICIT OCTETSTRING,                         groupAgent        [2] IMPLICIT BOOLEAN,                     } 
  1453.  
  1454.         The groupAddress is the multicast IP address.  The         groupAccessKey is the 8 octet key -- this key may be         confidential and should only be available to authorized querying         entities.  The groupAgent field is true if this entity is an         agent for the multicast group. 
  1455.  
  1456.     OBJECT:  ipID 
  1457.  
  1458.     Type:  Counter 
  1459.  
  1460.     Definition:  The next IP packet ID identifier to be used by the IGMP         code. 
  1461.  
  1462.     Object Status:  Required if the IGMP code generates its own IP         identifiers. 
  1463.  
  1464.  
  1465.  
  1466.  
  1467.  
  1468.  
  1469.  
  1470.  Partridge & Trewitt                                            [Page 42] 
  1471.  RFC 1024                    HEMS Definitions                October 1987 
  1472.  
  1473.  The IpTransportLayer Dictionary:  GgpValues 
  1474.  
  1475.     The definition of the GgpValues dictionary is left for further     study. 
  1476.  
  1477. The IpTransportLayer Dictionary:  TcpValues 
  1478.  
  1479.     The TcpValues dictionary is a subdictionary of the IpTransportLayer     dictionary which tracks the workings of the Transmission Control     Protocol, defined in RFC-793.  The definitions of several objects in     this dictionary refer to definitions in RFC-793.  The form of the     dictionary is shown below. 
  1480.  
  1481.              TcpValues ::= SET {                           [0] IMPLICIT TcpParam                           [1] IMPLICIT TcpStats OPTIONAL,               tcpConnData [2] IMPLICIT SET of TcpConn,             } 
  1482.  
  1483.     OBJECT:  TcpValues 
  1484.  
  1485.     Type:  IMPLICIT SET 
  1486.  
  1487.     Definition:  see above. 
  1488.  
  1489.     Object Status:  Required if the entity supports TCP. 
  1490.  
  1491.     The objects in the dictionary are defined in the next few sections. 
  1492.  
  1493.  The IpTransportLayer Dictionary: TcpValues/TcpParam 
  1494.  
  1495.     The TcpParam dictionary contains information about certain     parameters such as round-trip timer estimation constants which are     managed on a per-machine basis.  The form of the dictionary is shown     below. 
  1496.  
  1497.             TcpParam ::= SET {                 tcpRtoA       [0] IMPLICIT IA5String,                 tcpRtoParam   [1] IMPLICIT SET of RtoParam,                 ipID          [2] IMPLICIT Counter,                 tcpRtoMin     [3] IMPLICIT INTEGER OPTIONAL,                 tcpRtoMax     [4] IMPLICIT INTEGER OPTIONAL,                 tcpMaxSegSiz  [5] IMPLICIT INTEGER,                 tcpMaxConn    [6] IMPLICIT INTEGER OPTIONAL,                 tcpMaxWindow  [7] IMPLICIT INTEGER OPTIONAL,             } 
  1498.  
  1499.  
  1500.  
  1501. Partridge & Trewitt                                            [Page 43] 
  1502.  RFC 1024                    HEMS Definitions                October 1987 
  1503.  
  1504.      OBJECT:  tcpParam 
  1505.  
  1506.     Type:  SET 
  1507.  
  1508.     Definition:  see above. 
  1509.  
  1510.      The definition of the objects in the tcpParam dictionary are given     below. 
  1511.  
  1512.     OBJECT:  tcpRtoA 
  1513.  
  1514.     Type:  IA5String 
  1515.  
  1516.     Definition:  The TCP retransmission timeout algorithm used.  The         algorithm is expressed as one or more equations to generate         a target value, "RTO[N]", which is the retransmission timeout         for packet "N".  Expressions should use well understood         symbols such as * for multiplication and / for division, and         parentheses to indicate precedence.  Variables should begin         with an upper case character.  Multiple equations should be         separated by semi-colons.  Comments should be in braces (i.e.,         {}).  Constants should begin with a lower case character.  In         addition to "RTO[N]" the symbol "S[N]" is defined to mean the         round-trip sample for packet N.  Using this syntax, the         algorithm in RFC-793 would be expressed as: 
  1517.  
  1518.                 RTO[N] = SRTT[N] * beta ;                 SRTT[N] = ( S[N-1] * alpha) + (SRTT[N-1] * (1 - alpha)) 
  1519.  
  1520.     Note:  The syntax probably needs to be refined so that it can be        parsed and interpreted by a program.  This is left for future        study. 
  1521.  
  1522.      OBJECT:  tcpRtoParam 
  1523.  
  1524.     Type:  SET of RtoParam 
  1525.  
  1526.     Definition:  The list of the values of the constants used by the         retransmission timeout algorithm.  The format of the RtoParam         structure is shown below. 
  1527.  
  1528.         RtoParam ::= SEQUENCE {             name IA5String,             value Fraction         } 
  1529.  
  1530.  
  1531.  
  1532.  Partridge & Trewitt                                            [Page 44] 
  1533.  RFC 1024                    HEMS Definitions                October 1987 
  1534.  
  1535.          The name is the name of the constant as expressed in the         tcpRtoA (e.g., "beta"). 
  1536.  
  1537.     OBJECT:  ipID 
  1538.  
  1539.     Type:  Counter 
  1540.  
  1541.     Definition:  The next IP packet ID identifier to be used by the TCP         code. 
  1542.  
  1543.     Object Status:  Required if the TCP code generates its own IP         identifiers. 
  1544.  
  1545.     OBJECT:  tcpRtoMin 
  1546.  
  1547.     Type:  INTEGER 
  1548.  
  1549.     Definition:  The minimum value the TCP implementation permits for         the retransmission timeout (RTO), measured in milliseconds. 
  1550.  
  1551.     Note:  If the SET operation is optionally defined, access control        must be exercised. 
  1552.  
  1553.     Object Status:  Required if the implementation uses the suggested         algorithm in RFC-793 or if the implementation sets any limits         on the minimum RTO. 
  1554.  
  1555.     Operations on Object:  The defaults except as listed below: 
  1556.  
  1557.         SET:  Optionally defined to change the value.  Implementations            should confirm that the new value is less than tcpRtoMax. 
  1558.  
  1559.      OBJECT:  tcpRtoMax 
  1560.  
  1561.     Type:  INTEGER 
  1562.  
  1563.     Definition:  The maximum value the TCP implementation permits for         the retransmission timeout (RTO), measured in milliseconds. 
  1564.  
  1565.     Note:  If the SET operation is optionally defined, access control        must be exercised. 
  1566.  
  1567.     Object Status:  Required if the implementation uses the suggested         algorithm in RFC-793 or if the implementation sets any limits         on the maximum RTO. 
  1568.  
  1569.     Operations on Object:  The defaults except as listed below: 
  1570.  
  1571.  
  1572.  
  1573. Partridge & Trewitt                                            [Page 45] 
  1574.  RFC 1024                    HEMS Definitions                October 1987 
  1575.  
  1576.      SET:  Optionally defined to change the value.  Implementations          should confirm that the new value is greater than tcpRtoMax,          and that the value is large (i.e., several seconds). 
  1577.  
  1578.      OBJECT:  tcpMaxSegSiz 
  1579.  
  1580.     Type:  INTEGER 
  1581.  
  1582.     Definition:  The maximum segment size used by this implementation. 
  1583.  
  1584.     Object Status:  Required if the entity sets an upper limit on the         MTU.  (Some implementations have no constraints, but chose an         MTU from external constraints such as the maximum MTU of the         network interface in use.) 
  1585.  
  1586.      OBJECT:  tcpMaxConn 
  1587.  
  1588.     Type:  INTEGER 
  1589.  
  1590.     Definition:  An optional value, which must be present if the entity         has a limit on the total number of TCP connections it can support. 
  1591.  
  1592.     Object Status:  Required if the entity sets limits. 
  1593.  
  1594.     Note:  If the SET operation is defined, access control must be         exercised. 
  1595.  
  1596.     Operations on Object:  The defaults except as listed below: 
  1597.  
  1598.         SET:  Optionally defined to change the value.  If the             new value is less than the number of currently             open connections, implementations are *not* required             to close existing connections, but may not open             any additional ones. 
  1599.  
  1600.      OBJECT:  tcpMaxWindow 
  1601.  
  1602.     Type:  INTEGER 
  1603.  
  1604.     Definition:  An optional value, which must be present if the entity         places a fixed upper limit on the size of any connection's TCP         window (i.e., if the maximum window size is not per connection         configurable). 
  1605.  
  1606.     Object Status:  Required if the entity sets limits. 
  1607.  
  1608.  
  1609.  
  1610. Partridge & Trewitt                                            [Page 46] 
  1611.  RFC 1024                    HEMS Definitions                October 1987 
  1612.  
  1613.      Note:  If the SET operation is defined, access control must be         exercised. 
  1614.  
  1615.     Operations on Object:  The defaults except as listed below: 
  1616.  
  1617.             SET:  Optionally defined to change the value.  The new                 value must be at least the size of one maximum                 TCP segment. 
  1618.  
  1619. The IpTransportLayer Dictionary: TcpValues/TcpStats 
  1620.  
  1621.     The TcpStats dictionary stores general information about the     workings of the TCP layer.  The form of the dictionary is shown     below. 
  1622.  
  1623.             TcpStats ::= SET {                  connAttempts     [0] IMPLICIT Counter OPTIONAL,                  connOpened       [1] IMPLICIT Counter OPTIONAL,                  connAccepted     [2] IMPLICIT Counter OPTIONAL,                  connClosed       [3] IMPLICIT Counter OPTIONAL,                  connAborted      [4] IMPLICIT Counter OPTIONAL,                  connAbortedInfo  [5] IMPLICIT Histogram OPTIONAL,                  octetsIn         [6] IMPLICIT Counter OPTIONAL,                  octetsOut        [7] IMPLICIT Counter OPTIONAL,                  octetsInDup      [8] IMPLICIT Counter OPTIONAL,                  octetsRetrans    [9] IMPLICIT Counter OPTIONAL,                  inputPkts       [10] IMPLICIT Counter OPTIONAL,                  retransPkts     [11] IMPLICIT Counter OPTIONAL,                  outputPkts      [12] IMPLICIT Counter OPTIONAL,                  dupPkts         [13] IMPLICIT Counter OPTIONAL, 
  1624.  
  1625.             } 
  1626.  
  1627.     OBJECT:  TcpStats 
  1628.  
  1629.     Type:  SET 
  1630.  
  1631.     Definition:  See above. 
  1632.  
  1633.     Object Status:  Encouraged. 
  1634.  
  1635.     The definition of the fields in the dictionary are given below. 
  1636.  
  1637.      OBJECT:  connAttempts 
  1638.  
  1639.     Type:  Counter 
  1640.  
  1641.  
  1642.  
  1643.  Partridge & Trewitt                                            [Page 47] 
  1644.  RFC 1024                    HEMS Definitions                October 1987 
  1645.  
  1646.      Definition:  The number of connection attempts that have been made         from this host.  This includes pending attempts. 
  1647.  
  1648.     Object Status:  Encouraged. 
  1649.  
  1650.      OBJECT:  connOpened 
  1651.  
  1652.     Type:  Counter 
  1653.  
  1654.     Definition:  The number of connection attempts from this host which         successfully generated an open connection.  This includes         currently open connections.      Object Status:  Encouraged. 
  1655.  
  1656.      OBJECT:  connAccepted 
  1657.  
  1658.     Type:  Counter 
  1659.  
  1660.     Definition:  The number of connections accepted by listening peers         on this entity.  This includes currently open connections. 
  1661.  
  1662.     Object Status:  Encouraged. 
  1663.  
  1664.      OBJECT:  connClosed 
  1665.  
  1666.     Type:  Counter 
  1667.  
  1668.     Definition:  The number of connections which were properly closed. 
  1669.  
  1670.     Object Status:  Encouraged. 
  1671.  
  1672.      OBJECT:  connAborted 
  1673.  
  1674.     Type:  Counter 
  1675.  
  1676.     Definition:  The number of connections which were aborted.  Note         that if implementations trace how the connection was aborted,         they are encouraged to use the connAbortedInfo histogram. 
  1677.  
  1678.     Object Status:  Encouraged. 
  1679.  
  1680.      OBJECT:  connAbortedInfo 
  1681.  
  1682.  
  1683.  
  1684. Partridge & Trewitt                                            [Page 48] 
  1685.  RFC 1024                    HEMS Definitions                October 1987 
  1686.  
  1687.      Type:  Histogram 
  1688.  
  1689.     Definition:  The number of connections which were aborted by type of         abort.  The histValue is one of the codes listed below.  The         histCount is the number of connections aborted for this reason.         The histValues codes are: 
  1690.  
  1691.                     0 -- an abort condition not specified below                     1 -- remote abort                     2 -- local application abort                     3 -- local protocol level abort 
  1692.  
  1693.     Object Status:  Useful 
  1694.  
  1695.      OBJECT:  octetsIn 
  1696.  
  1697.     Type:  Counter 
  1698.  
  1699.     Definition:  The total number of TCP octets (not including         duplicates) received at this entity. 
  1700.  
  1701.     Object Status:  Required if TcpStats is implemented. 
  1702.  
  1703.      OBJECT:  octetsOut 
  1704.  
  1705.     Type:  Counter 
  1706.  
  1707.     Definition:  The total number of TCP octets (not including         retransmissions) sent from this entity. 
  1708.  
  1709.     Object Status:  Required if TcpStats is implemented. 
  1710.  
  1711.      OBJECT:  octetsInDup 
  1712.  
  1713.     Type:  Counter 
  1714.  
  1715.     Definition:  The total number of TCP octets received which were         duplicates. 
  1716.  
  1717.     Object Status:  Required if TcpStats is implemented. 
  1718.  
  1719.      OBJECT:  octetsReTrans 
  1720.  
  1721.     Type:  Counter 
  1722.  
  1723.  
  1724.  
  1725. Partridge & Trewitt                                            [Page 49] 
  1726.  RFC 1024                    HEMS Definitions                October 1987 
  1727.  
  1728.      Definition:  The total number of TCP octets which have been         retransmitted. 
  1729.  
  1730.     Object Status:  Required if TcpStats is implemented. 
  1731.  
  1732.      OBJECT:  inputPkts 
  1733.  
  1734.     Type:  Counter 
  1735.  
  1736.     Definition:  The total number of valid packets received, including         those on current connections. 
  1737.  
  1738.     Object Status:  Useful. 
  1739.  
  1740.      OBJECT:  retransPkts 
  1741.  
  1742.     Type:  Counter 
  1743.  
  1744.     Definition:  The total number of packets retransmitted. 
  1745.  
  1746.     Object Status:  Useful. 
  1747.  
  1748.      OBJECT:  outputPkts 
  1749.  
  1750.     Type:  Counter 
  1751.  
  1752.     Definition:  The total number of packets sent. 
  1753.  
  1754.     Object Status:  Useful. 
  1755.  
  1756.      OBJECT:  dupPkts 
  1757.  
  1758.     Type:  Counter 
  1759.  
  1760.     Definition:  The number of packets received which contained only         data already received. 
  1761.  
  1762.     Object Status:  Useful. 
  1763.  
  1764.  
  1765.  
  1766.  
  1767.  
  1768.  
  1769.  
  1770.  
  1771.  
  1772. Partridge & Trewitt                                            [Page 50] 
  1773.  RFC 1024                    HEMS Definitions                October 1987 
  1774.  
  1775.  The IpTransportLayer Dictionary: TcpValues/TcpConn 
  1776.  
  1777.     The tcpConnData field in the TcpValues dictionary is a set of     TcpConn, where each TcpConn contains information on a particular TCP     connection.  The definition of TcpConn is shown below. 
  1778.  
  1779.                 TcpConn ::= SET {                     localPort       [0] IMPLICIT INTEGER,                     localAddress    [1] IMPLICIT IpAddress,                     foreignPort     [2] IMPLICIT INTEGER,                     foreignAddress  [3] IMPLICIT IpAddress,                     state           [4] IMPLICIT INTEGER,                     snduna          [5] IMPLICIT INTEGER,                     sndnxt          [6] IMPLICIT INTEGER,                     sndwnd          [7] IMPLICIT INTEGER,                     congwnd         [8] IMPLICIT INTEGER,                     rcvnxt          [9] IMPLICIT INTEGER,                     rcvwnd         [10] IMPLICIT INTEGER,                     srtt           [11] IMPLICIT INTEGER OPTIONAL,                     lastrtt        [12] IMPLICIT INTEGER OPTIONAL,                     maxSegSize     [13] IMPLICIT INTEGER,                     octetsSent     [14] IMPLICIT Counter OPTIONAL,                     octetsRXmit    [15] IMPLICIT Counter OPTIONAL,                     octetsRcvd     [16] IMPLICIT Counter OPTIONAL,                     octetDups      [17] IMPLICIT Counter OPTIONAL,                     octetPastWin   [18] IMPLICIT Counter OPTIONAL,                     segSizes       [19] IMPLICIT Histogram OPTIONAL,             } 
  1780.  
  1781.     The set of TCP connections can be searched in a number of ways based     on the local and foreign addresses (including the port number).     Individual values of a connection cannot be retrieved without a     search. 
  1782.  
  1783.     OBJECT:  TcpConn 
  1784.  
  1785.     Type:  SET 
  1786.  
  1787.     Definition:  The per TCP connection data. 
  1788.  
  1789.     Operations on Object:  The defaults except as listed below: 
  1790.  
  1791.           GET-MATCH:  Defined on any combination of values of               localAddress,  localPort, foreignAddress and               foreignPort.  Returns all connections which match               the template.  (For example, GET-MATCH on a               particular foreignAddress returns all connections               to that address.) 
  1792.  
  1793.  
  1794.  
  1795. Partridge & Trewitt                                            [Page 51] 
  1796.  RFC 1024                    HEMS Definitions                October 1987 
  1797.  
  1798.      The definitions of the fields of the tcpConn structure are given     below. 
  1799.  
  1800.     OBJECT:  localPort 
  1801.  
  1802.     Type:  INTEGER 
  1803.  
  1804.     Definition:  The local port number of this connection. 
  1805.  
  1806.     Operations on Object: Defaults.  Note that MATCH operators may be         applied to this object to locate information on a particular TCP         connection. 
  1807.  
  1808.      OBJECT:  localAddress 
  1809.  
  1810.     Type:  IpAddress 
  1811.  
  1812.     Definition:  The local IP address of this connection.  May be the         default IP address defined above.  This value may not be valid         in certain states. 
  1813.  
  1814.     Operations on Object:  Defaults.  Note that MATCH operators may be         applied to this object to locate information on a particular         TCP connection. 
  1815.  
  1816.     OBJECT:  foreignPort 
  1817.  
  1818.     Type:  INTEGER 
  1819.  
  1820.     Definition:  The foreign port number of this connection.  This value         may be meaningless if the local peer is in certain states (e.g.,         LISTEN). 
  1821.  
  1822.     Operations on Object:  Defaults.  Note that MATCH operators may be        applied to this object to locate information on a particular TCP        connection. 
  1823.  
  1824.      OBJECT:  foreignAddress 
  1825.  
  1826.     Type:  IpAddress 
  1827.  
  1828.     Definition:  The foreign IP address of this connection.  This value         may be meaningless if the local peer is in certain states (e.g.,         LISTEN). 
  1829.  
  1830.     Operations on Object: Defaults.  Note that MATCH operators may be 
  1831.  
  1832.  
  1833.  
  1834. Partridge & Trewitt                                            [Page 52] 
  1835.  RFC 1024                    HEMS Definitions                October 1987 
  1836.  
  1837.          applied to this object to locate information on a particular         TCP connection. 
  1838.  
  1839.     OBJECT:  state 
  1840.  
  1841.     Type:  INTEGER 
  1842.  
  1843.     Definition:  The current state of the local peer.  The values         corresponding to the different states are: close(0), listen(1),         syn-sent(2), syn-received(3), established(4), close-wait(5),         fin-wait-1(6), closing(7), last-ack(8), fin-wait-2(9),         time-wait(10).  Implementations must map internal         representations of the state into these values. 
  1844.  
  1845.      OBJECT:  snduna 
  1846.  
  1847.     Type:  INTEGER 
  1848.  
  1849.     Definition:  The SND.UNA value as defined in RFC-793. 
  1850.  
  1851.      OBJECT:  sndnxt 
  1852.  
  1853.     Type:  INTEGER 
  1854.  
  1855.     Definition:  The SND.NXT value as defined in RFC-793. 
  1856.  
  1857.      OBJECT:  sndwnd 
  1858.  
  1859.     Type:  INTEGER 
  1860.  
  1861.     Definition:  The SND.WND value as defined in RFC-793. 
  1862.  
  1863.      OBJECT:  congwnd 
  1864.  
  1865.     Type:  INTEGER 
  1866.  
  1867.     Definition:  The congestion window.  This value is less than or         equal to sndwnd.  If less than sndwnd, then congestion         control is in effect and congwnd is the reduced send window         size in use. 
  1868.  
  1869.     OBJECT:  rcvnxt 
  1870.  
  1871.     Type:  INTEGER 
  1872.  
  1873.  
  1874.  
  1875. Partridge & Trewitt                                            [Page 53] 
  1876.  RFC 1024                    HEMS Definitions                October 1987 
  1877.  
  1878.      Definition:  The RCV.NXT value as defined in RFC-793. 
  1879.  
  1880.      OBJECT:  rcvwnd 
  1881.  
  1882.     Type:  INTEGER 
  1883.  
  1884.     Definition:  The RCV.WND value as defined in RFC-793. 
  1885.  
  1886.      OBJECT:  srtt 
  1887.  
  1888.     Type:  INTEGER 
  1889.  
  1890.     Definition:  The smoothed round-trip time in milliseconds. 
  1891.  
  1892.     Object Status:  Required if the implementation maintains a smoothed         round-trip time. 
  1893.  
  1894.      OBJECT:  lastrtt 
  1895.  
  1896.     Type:  INTEGER 
  1897.  
  1898.     Definition:  The last round-trip time sample taken in milliseconds. 
  1899.  
  1900.     Object Status:  Encouraged. 
  1901.  
  1902.      OBJECT:  maxSegSize 
  1903.  
  1904.     Type:  INTEGER 
  1905.  
  1906.     Definition:  The maximum segment size that can be used on this         connection. 
  1907.  
  1908.      OBJECT:  octetsSent 
  1909.  
  1910.     Type:  Counter 
  1911.  
  1912.     Definition:  The total number of octets transmitted since the         connection was opened, not including retransmissions.  Can         alternatively be thought of as the current length of the         stream. 
  1913.  
  1914.     Object Status:  Encouraged. 
  1915.  
  1916.  
  1917.  
  1918.  Partridge & Trewitt                                            [Page 54] 
  1919.  RFC 1024                    HEMS Definitions                October 1987 
  1920.  
  1921.      OBJECT:  octetsRXmit 
  1922.  
  1923.     Type:  Counter 
  1924.  
  1925.     Definition:  The total number of octets retransmitted since the         connection was opened.  This plus octetsSent should give the         total number of octets sent. 
  1926.  
  1927.     Object Status:  Encouraged. 
  1928.  
  1929.      OBJECT:  octetsRcvd 
  1930.  
  1931.     Type:  Counter 
  1932.  
  1933.     Definition:  The number of octets received since the connection was         opened, not including duplicates received.  The receiver's         version of octetsSent. 
  1934.  
  1935.     Object Status:  Encouraged. 
  1936.  
  1937.      OBJECT:  octetDups 
  1938.  
  1939.     Type:  Counter 
  1940.  
  1941.     Definition:  The total number of octets received since the         connection was opened which were redundant (i.e., they had been         previously received). 
  1942.  
  1943.     Object Status:  Encouraged. 
  1944.  
  1945.      OBJECT:  octetPastWin 
  1946.  
  1947.     Type:  Counter 
  1948.  
  1949.     Definition:  The number of segments which contained data beyond         the upper edge of the receive window. 
  1950.  
  1951.     Object Status:  Encouraged 
  1952.  
  1953.      OBJECT:  segSizes 
  1954.  
  1955.     Type:  Histogram 
  1956.  
  1957.     Definition:  A histogram of the sizes of the packets sent on the 
  1958.  
  1959.  
  1960.  
  1961. Partridge & Trewitt                                            [Page 55] 
  1962.  RFC 1024                    HEMS Definitions                October 1987 
  1963.  
  1964.          connection (useful for catching cases of silly-window syndrome).         This histogram is an range histogram, measuring the number of         segments whose size fell into a give range.  The histogram         histValue field contains a segment size, and the histCount         field contains the number of segments between this size and         the next largest size. 
  1965.  
  1966.     Object Status:  Useful. 
  1967.  
  1968. The IpTransportLayer Dictionary: EgpValues 
  1969.  
  1970.     The EgpValues dictionary stores information about the workings of     the Exterior Gateway Protocol, defined in RFC-904.  The format of     the dictionary is shown below. 
  1971.  
  1972.             EgpValues ::= SET {                 egpState  [0] IMPLICIT INTEGER,                           [1] IMPLICIT EgpParam,                           [2] IMPLICIT EgpStats OPTIONAL,               egpPeerData [3] IMPLICIT SET of EgpPeer             } 
  1973.  
  1974.      OBJECT:  EgpValues 
  1975.  
  1976.     Type:  SET 
  1977.  
  1978.     Definition:  See above. 
  1979.  
  1980.     Object Status:  Required in entities which support EGP. 
  1981.  
  1982.     The definitions of the subdictionaries of this dictionary are given     below. 
  1983.  
  1984.      OBJECT:  egpState 
  1985.  
  1986.     Type:  INTEGER 
  1987.  
  1988.     Definition:  The state of the EGP system.  The state values are: 
  1989.  
  1990.                         0 -- Idle                         1 -- Acquisition                         2 -- Down                         3 -- Up                         4 -- Cease 
  1991.  
  1992.     These values are taken directly from RFC-904. 
  1993.  
  1994.  
  1995.  
  1996. Partridge & Trewitt                                            [Page 56] 
  1997.  RFC 1024                    HEMS Definitions                October 1987 
  1998.  
  1999.  The IpTransportLayer Dictionary: EgpValues/EgpParam 
  2000.  
  2001.     The EgpParam dictionary stores the various EGP parameters.  The     format of the dictionary is shown below. 
  2002.  
  2003.             EgpParam ::= SET {                 p1    [0] IMPLICIT INTEGER,                 p2    [1] IMPLICIT INTEGER,                 p3    [2] IMPLICIT INTEGER,                 p4    [3] IMPLICIT INTEGER,                 p5    [4] IMPLICIT INTEGER,                 ipID  [5] IMPLICIT Counter OPTIONAL             } 
  2004.  
  2005.     OBJECT:  EgpParam 
  2006.  
  2007.     Type:  SET 
  2008.  
  2009.     Definition:  See above. 
  2010.  
  2011.     The definition of the fields of the dictionary are given below.  All     the definitions are taken from RFC-904. 
  2012.  
  2013.      OBJECT:  p1 
  2014.  
  2015.     Type:  INTEGER 
  2016.  
  2017.     Definition:  Minimum interval acceptable between successive Hello         commands received. 
  2018.  
  2019.     Operations on Object:  The defaults except as noted below. 
  2020.  
  2021.         SET:  The set command is optionally defined on this object. 
  2022.  
  2023.     OBJECT:  p2 
  2024.  
  2025.     Type:  INTEGER 
  2026.  
  2027.     Definition:  Minimum interval acceptable between successive Poll         commands received. 
  2028.  
  2029.     Operations on Object:  The defaults except as noted below. 
  2030.  
  2031.         SET:  The set command is optionally defined on this object. 
  2032.  
  2033.      OBJECT:  p3 
  2034.  
  2035.  
  2036.  
  2037. Partridge & Trewitt                                            [Page 57] 
  2038.  RFC 1024                    HEMS Definitions                October 1987 
  2039.  
  2040.      Type:  INTEGER 
  2041.  
  2042.     Definition:  Interval between Request or Cease command         retransmissions. 
  2043.  
  2044.     Operations on Object:  The defaults except as noted below. 
  2045.  
  2046.         SET:  The set command is optionally defined on this object. 
  2047.  
  2048.      OBJECT:  p4 
  2049.  
  2050.     Type:  INTEGER 
  2051.  
  2052.     Definition:  Interval during which state variables are maintained in         the absence of commands or response in the Down and Up states. 
  2053.  
  2054.     Operations on Object:  The defaults except as noted below. 
  2055.  
  2056.     SET:  The set command is optionally defined on this object. 
  2057.  
  2058.      OBJECT:  p5 
  2059.  
  2060.     Type:  INTEGER 
  2061.  
  2062.     Definition:  Interval during which state variables are maintained in         the absence of commands or response in the Acquisition and Cease         states. 
  2063.  
  2064.     Operations on Object:  The defaults except as noted below. 
  2065.  
  2066.         SET:  The set command is optionally defined on this object. 
  2067.  
  2068.      OBJECT: ipID 
  2069.  
  2070.     Type: Counter 
  2071.  
  2072.     Definition:  The next IP packet ID identifier to be used by the EGP         code. 
  2073.  
  2074.     Object Status: Required if the EGP code generates its own IP         identifiers. 
  2075.  
  2076.  The IpTransportLayer Dictionary: EgpValues/EgpStats 
  2077.  
  2078.  
  2079.  
  2080.  Partridge & Trewitt                                            [Page 58] 
  2081.  RFC 1024                    HEMS Definitions                October 1987 
  2082.  
  2083.      The EgpStats dictionary keeps statistics about the use of EGP on     this entity.  The form of the dictionary is shown below. 
  2084.  
  2085.             EgpStats ::= SET {                 inputPktCount   [1] IMPLICIT Counter,                 inputPktErrors  [2] IMPLICIT Counter,                 inputPktTypes   [3] IMPLICIT Histogram OPTIONAL,                 outputPktCount  [4] IMPLICIT Counter,                 outputPktErrors [5] IMPLICIT Counter,                 outputPktTypes  [6] IMPLICIT Histogram OPTIONAL,                 egpTraffic      [7] IMPLICIT TrafficMatrix OPTIONAL             } 
  2086.  
  2087.      OBJECT:  EgpStats 
  2088.  
  2089.     Type:  SET 
  2090.  
  2091.     Definition:  See above. 
  2092.  
  2093.      The definitions of the objects in this dictionary are given below. 
  2094.  
  2095.      OBJECT:  inputPktCount 
  2096.  
  2097.     Type: Counter 
  2098.  
  2099.     Definition:  The number of EGP packets received including those that         proved to be in error. 
  2100.  
  2101.      OBJECT:  inputPktErrors 
  2102.  
  2103.     Type:  Counter 
  2104.  
  2105.     Definition:  The number of EGP packets received which proved to be         in error.  This value subtracted from inputPktCount should give         the number of valid EGP packets received. 
  2106.  
  2107.      OBJECT:  inputPktTypes 
  2108.  
  2109.     Type:  Histogram 
  2110.  
  2111.     Definition:  A histogram of types of valid EGP messages received.         The histogram histValue field contains the message type number,         and the histCount field contains the number of messages of 
  2112.  
  2113.  
  2114.  
  2115. Partridge & Trewitt                                            [Page 59] 
  2116.  RFC 1024                    HEMS Definitions                October 1987 
  2117.  
  2118.          this type which have been received. 
  2119.  
  2120.     Object Status:  Useful. 
  2121.  
  2122.      OBJECT:  outputPktCount 
  2123.  
  2124.     Type:  Counter 
  2125.  
  2126.     Definition:  The total number of EGP packets that the entity         attempted to send (including those that failed due to lack of         buffers, a missing route or other transient transmission         problems). 
  2127.  
  2128.     OBJECT:  outputPktErrors 
  2129.  
  2130.     Type:  Counter 
  2131.  
  2132.     Definition:  The number of EGP packets which the entity could not         send due to transmission problems such as the lack of buffers,         a missing route or other transient transmission problems.         This value is not required to include errors which the EGP         layer could not reasonably be expected to detect such as         damage to the packet in transit.  Subtracting this value from         the outputPktCount field should give the number of EGP packets         the entity believes it successfully sent. 
  2133.  
  2134.      OBJECT:  outputPktTypes 
  2135.  
  2136.     Type:  Histogram 
  2137.  
  2138.     Definition:  A histogram of EGP messages types sent, including those         that later failed to be transmitted.  The histogram histValue         field contains the message type number, and the histCount field         contains the number of messages of this type which have been sent. 
  2139.  
  2140.     Object Status:  Useful. 
  2141.  
  2142.  
  2143.  
  2144.     OBJECT:  egpTraffic 
  2145.  
  2146.     Type:  TrafficMatrix 
  2147.  
  2148.     Definition:  All EGP traffic which has originated on this machine.         The source address in the traffic matrix should be the interface         from which the packet was sent.  The destination is the address 
  2149.  
  2150.  
  2151.  
  2152. Partridge & Trewitt                                            [Page 60] 
  2153.  RFC 1024                    HEMS Definitions                October 1987 
  2154.  
  2155.          to which the packet is to finally be delivered (not an         intermediate hop). 
  2156.  
  2157.     Object Status:  Useful. 
  2158.  
  2159.  The IpTransportLayer Dictionary: EgpValues/EgpPeer 
  2160.  
  2161.     The egpPeerData field of the EgpValues dictionary is a set of     EgpPeer structures which contain the state variables for a     particular EGP neighbor.  The form of the EgpPeer structure is shown     below. 
  2162.  
  2163.             EgpPeer ::= SET {                 r       [0] IMPLICIT Counter,                 s       [1] IMPLICIT Counter,                 t1      [2] IMPLICIT INTEGER,                 t2      [3] IMPLICIT INTEGER,                 t3      [4] IMPLICIT INTEGER,                 m       [5] IMPLICIT BOOLEAN,                 timer1  [6] IMPLICIT INTEGER,                 timer2  [7] IMPLICIT INTEGER,                 timer3  [8] IMPLICIT INTEGER,                 addr    [9] IMPLICIT IpAddress             } 
  2164.  
  2165.      OBJECT:  EgpPeer 
  2166.  
  2167.     Type:  SET 
  2168.  
  2169.     Definition:  The state information for a given EGP neighbor. 
  2170.  
  2171.     The definition of each field is given below. 
  2172.  
  2173.      OBJECT:  r 
  2174.  
  2175.     Type:  Counter 
  2176.  
  2177.     Definition:  The receive sequence number as defined in RFC-904. 
  2178.  
  2179.      OBJECT:  s 
  2180.  
  2181.     Type:  Counter 
  2182.  
  2183.     Definition:  The send sequence number as defined in RFC-904. 
  2184.  
  2185.  
  2186.  
  2187. Partridge & Trewitt                                            [Page 61] 
  2188.  RFC 1024                    HEMS Definitions                October 1987 
  2189.  
  2190.      OBJECT:  t1 
  2191.  
  2192.     Type:  INTEGER 
  2193.  
  2194.     Definition:  The interval between Hello command retransmissions as         defined in RFC-904. 
  2195.  
  2196.     OBJECT:  t2 
  2197.  
  2198.     Type:  INTEGER 
  2199.  
  2200.     Definition:  The interval between Poll command retransmissions as         defined in RFC-904. 
  2201.  
  2202.     OBJECT:  t3 
  2203.  
  2204.     Type:  INTEGER 
  2205.  
  2206.     Definition:  The interval during which neighbor-reachability         indications are counted, as defined in RFC-904. 
  2207.  
  2208.     OBJECT:  m 
  2209.  
  2210.     Type:  BOOLEAN 
  2211.  
  2212.     Definition:  The Hello Polling mode.  True if in active mode, false         if in passive mode. 
  2213.  
  2214.     Operations on Object:  The defaults except as noted below. 
  2215.  
  2216.         SET:  Optionally defined to change the Hello Polling mode. 
  2217.  
  2218.     OBJECT:  timer1 
  2219.  
  2220.     Type:  INTEGER 
  2221.  
  2222.     Definition:  The value of timer 1 as defined in RFC-904. 
  2223.  
  2224.      OBJECT:  timer2 
  2225.  
  2226.     Type:  INTEGER 
  2227.  
  2228.     Definition:  The value of timer 2 as defined in RFC-904. 
  2229.  
  2230.      OBJECT:  timer3 
  2231.  
  2232.  
  2233.  
  2234.  Partridge & Trewitt                                            [Page 62] 
  2235.  RFC 1024                    HEMS Definitions                October 1987 
  2236.  
  2237.      Type:  INTEGER 
  2238.  
  2239.     Definition:  The value of timer 3 as defined in RFC-904. 
  2240.  
  2241.      OBJECT:  addr 
  2242.  
  2243.     Type:  IpAddress 
  2244.  
  2245.     Definition:  The IP address of the neighbor. 
  2246.  
  2247. The IpTransportLayer Dictionary: UdpValues 
  2248.  
  2249.     The UdpValues dictionary stores all information on the User Datagram     Protocol, defined in RFC-768.  The format of the dictionary is shown     below. 
  2250.  
  2251.             UdpValues ::= [17] IMPLICIT SET OPTIONAL {                 ipID        [0] IMPLICIT Counter OPTIONAL,                             [1] IMPLICIT UdpStats,                 udpPortData [2] IMPLICIT SET of udpPort             } 
  2252.  
  2253.     OBJECT:  UdpValues 
  2254.  
  2255.     Type:  SET 
  2256.  
  2257.     Definition:  See above. 
  2258.  
  2259.     Object Status:  Implementation of this dictionary is required if         the entity supports UDP. 
  2260.  
  2261.     The fields of this dictionary are given below. 
  2262.  
  2263.     OBJECT:  ipID 
  2264.  
  2265.     Type:  Counter 
  2266.  
  2267.     Definition:  The next IP packet ID identifier to be used by the UDP         code. 
  2268.  
  2269.     Object Status:  Required if the UDP code generates its own IP         identifiers. 
  2270.  
  2271.  The IpTransportLayer Dictionary: UdpValues/UdpStats 
  2272.  
  2273.     The UdpStats dictionary stores general information about the 
  2274.  
  2275.  
  2276.  
  2277. Partridge & Trewitt                                            [Page 63] 
  2278.  RFC 1024                    HEMS Definitions                October 1987 
  2279.  
  2280.      behavior of the UDP protocol on the entity.  The format of the     dictionary is shown below. 
  2281.  
  2282.             UdpStats ::= SET {                 inputPkts       [0] IMPLICIT Counter,                 inputPktErrors  [1] IMPLICIT Counter,                 outputPkts      [2] IMPLICIT Counter,             } 
  2283.  
  2284.     OBJECT:  UdpStats 
  2285.  
  2286.     Type:  SET 
  2287.  
  2288.     Definition:  See above. 
  2289.  
  2290.     Object Status:  Encouraged. 
  2291.  
  2292.     The fields in this dictionary are defined below. 
  2293.  
  2294.      OBJECT:  inputPkts 
  2295.  
  2296.     Type:  Counter 
  2297.  
  2298.     Definition:  The total number of UDP packets received at this entity         including any errors. 
  2299.  
  2300.     Object Status:  Required if the UdpStats dictionary is implemented. 
  2301.  
  2302.      OBJECT:  inputPktsErrors 
  2303.  
  2304.     Type:  Counter 
  2305.  
  2306.     Definition:  The number of UDP packets which could not be delivered         because of format errors, data corruption or because there was no         application at the destination port. 
  2307.  
  2308.     Object Status:  Required if the UdpStats dictionary is implemented. 
  2309.  
  2310.      OBJECT:  outputPkts 
  2311.  
  2312.     Type:  Counter 
  2313.  
  2314.     Definition:  The total number of UDP segments sent from this entity. 
  2315.  
  2316.     Object Status:  Required if the UdpStats dictionary is implemented. 
  2317.  
  2318.  
  2319.  
  2320. Partridge & Trewitt                                            [Page 64] 
  2321.  RFC 1024                    HEMS Definitions                October 1987 
  2322.  
  2323.  The IpTransportLayer Dictionary: UdpValues/udpPortData 
  2324.  
  2325.     The udpPortData structure stores information about individual UDP     applications.  The udpPortData is represented as a set of records,     udpPorts, which track the behavior of individual ports.  The format     of both structures are shown below. 
  2326.  
  2327.             udpPortData    [1] IMPLICIT SET of UdpPort 
  2328.  
  2329.             UdpPort ::=  [0] IMPLICIT SET {                 localAddress     [0] IMPLICIT IpAddress,                 localPort        [1] IMPLICIT INTEGER,                 foreignAddress   [2] IMPLICIT IpAddress OPTIONAL,                 foreignPort      [3] IMPLICIT INTEGER OPTIONAL,                 maxPktSize       [4] IMPLICIT INTEGER,                 pktsRcvd         [5] IMPLICIT Counter,                 octetRcvd        [6] IMPLICIT Counter OPTIONAL,                 pktsSent         [7] IMPLICIT Counter,                 octetSent        [8] IMPLICIT Counter OPTIONAL,             } 
  2330.  
  2331.     OBJECT:  udpPortData 
  2332.  
  2333.     Type:  SET of udpPort 
  2334.  
  2335.     Definition:  See above. 
  2336.  
  2337.      OBJECT:  UdpPort 
  2338.  
  2339.     Type:  SET 
  2340.  
  2341.     Definition:  See above. 
  2342.  
  2343.     Operations on Object: The defaults except as noted below. 
  2344.  
  2345.         GET-MATCH.  Defined on any combination of the values of             localAddress, localPort, foreignAddress and foreignPort.             Returns all ports which match the template. 
  2346.  
  2347.     The meaning of the individual fields of the udpPort record are given     below. 
  2348.  
  2349.      OBJECT:  localAddress 
  2350.  
  2351.     Type:  IpAddress 
  2352.  
  2353.  
  2354.  
  2355.  Partridge & Trewitt                                            [Page 65] 
  2356.  RFC 1024                    HEMS Definitions                October 1987 
  2357.  
  2358.      Definition:  The local IP address of the port.  May be the default         IP address if records are accepted from any interface. 
  2359.  
  2360.      OBJECT:  localPort 
  2361.  
  2362.     Type:  INTEGER 
  2363.  
  2364.     Definition:  The local port number. 
  2365.  
  2366.      OBJECT:  foreignAddress 
  2367.  
  2368.     Type:  IpAddress 
  2369.  
  2370.     Definition:  Some UDP implementations permit applications to specify         the remote address from which packets will be accepted.  In such         implementations, this field may be used to return the remote IP         address.  If this value is set to the default IP address, then         packets from any host are accepted.  The default IP address         indicates that the application has not specified the remote         address (but could if it chose). 
  2371.  
  2372.     Object Status:  Required in entities which permit applications to         specify the remote address. 
  2373.  
  2374.      OBJECT:  foreignPort 
  2375.  
  2376.     Type:  INTEGER 
  2377.  
  2378.     Definition:  Some UDP implementations permit applications to specify         the remote address from which packets will be accepted.  In such         implementations, this field may be used to return the remote         port.  If this value is set to 0, packets from any remote port         are accepted. 
  2379.  
  2380.     Object Status:  Required in entities which permit applications to         specify the remote port. 
  2381.  
  2382.     OBJECT:  maxPktSize 
  2383.  
  2384.     Type:  INTEGER 
  2385.  
  2386.     Definition:  The maximum UDP packet size, if any, supported by this         host. 
  2387.  
  2388.     Object Status:  Required if there is a limit on the UDP packet size. 
  2389.  
  2390.  
  2391.  
  2392. Partridge & Trewitt                                            [Page 66] 
  2393.  RFC 1024                    HEMS Definitions                October 1987 
  2394.  
  2395.      OBJECT:  pktsRcvd 
  2396.  
  2397.     Type:  Counter 
  2398.  
  2399.     Definition:  The total number of packets received on this port during         the lifetime of this application (i.e., application which opened         this port). 
  2400.  
  2401.      OBJECT:  octetsRcvd 
  2402.  
  2403.     Type:  Counter 
  2404.  
  2405.     Definition:  The total number of octets received at this port. 
  2406.  
  2407.      OBJECT:  pktsSent 
  2408.  
  2409.     Type:  Counter 
  2410.  
  2411.     Definition:  The total number of packets sent on this port during the         lifetime of this application (i.e., the application which opened         this port). 
  2412.  
  2413.      OBJECT:  octetsSent 
  2414.  
  2415.     Type:  Counter 
  2416.  
  2417.     Definition:  The total number of octets sent on this port during the         lifetime of this application (i.e., the application which opened         this port). 
  2418.  
  2419.  The IpTransportLayer Dictionary:  HmpValues 
  2420.  
  2421.      The HmpValues dictionary stores all information on the Host      Monitoring Protocol, defined in RFC-869.  Since HEMS is designed to      replace HMP, the definition of this dictionary has been deferred      until a clear need for it is demonstrated. 
  2422.  
  2423.  The IpTransportLayer Dictionary:  RdpValues 
  2424.  
  2425.      The RdpValues dictionary stores all information on the Reliable      Data Protocol (RDP).  Since RDP is currently being tested and      revised, the definition of this dictionary is left for further      study. 
  2426.  
  2427.  
  2428.  
  2429. Partridge & Trewitt                                            [Page 67] 
  2430.  RFC 1024                    HEMS Definitions                October 1987 
  2431.  
  2432.  The IpTransportLayer Dictionary:  NetbltValues 
  2433.  
  2434.      The NetbltValues dictionary stores all information on the Network      Block Transfer protocol.  Since Netblt is currently being tested      and revised, the definition of this dictionary is left for further      study. 
  2435.  
  2436.  The IpApplications Dictionary 
  2437.  
  2438.      The IpApplications dictionary stores information about networking      applications whose operations may affect the proper operation of      the network.  Examples of such applications might be domain      nameservers or distributed routing agents (such as gated or      routed).  The definition of this dictionary is left for further      study. 
  2439.  
  2440.  NOTES ON RETRIEVAL OF OBJECTS 
  2441.  
  2442.      It is assumed in this system that the query processor is only one      of many concurrently running processes on an entity, and that the      operations of the other processes may affect the values of the      objects managed by the query processor.  To permit this      concurrency, the query processor is not required to keep the values      frozen during the execution of a query.  As a result, related      values may change during the course of the query's execution.      Applications should be prepared for this possibility. 
  2443.  
  2444.      In several places, specific mathematical relations between objects      have been specified, for example, that object X minus object Y      should yield some well-defined value.  Note that in many cases,      objects X and Y are roll-over counters, in which case these      relations are only valid modulo the precision of the counter.  This      is acceptable.  The relationships are only intended to clarify the      association between objects. 
  2445.  
  2446.  EVENTS 
  2447.  
  2448.      In the remainder of this memo we present the format and definition      of event messages which are unsolicited updates sent from entities      to management centers. 
  2449.  
  2450.      This section needs much further work.  The authors provide this      section to illustrate how the trap mechanism works.  However, much      more research must be done into the questions of what events need      to be reported, and what information they must carry with them 
  2451.  
  2452.  
  2453.  
  2454. Partridge & Trewitt                                            [Page 68] 
  2455.  RFC 1024                    HEMS Definitions                October 1987 
  2456.  
  2457.       before this section can be completed.  The authors welcome any      advice from the community on this subject. 
  2458.  
  2459.  Format of Event Messages 
  2460.  
  2461.      Event messages have the same format as replies; they are a sequence      of objects.  The only difference between a event message and a      regular reply to a query is that the event message is labelled as a      event in the HEMP message header and the first object in the event      message is a special event leader describing the event.  All      objects after the event message are standard objects stored by the      entity which might be useful to a monitoring center in      understanding the machine state which caused the event.  Each event      has a certain number of objects that it must return.  Additional      objects may be returned by loading instructions into the      eventExecution buffer of the relevant eventEntry. 
  2462.  
  2463.      The format of the event leader is shown below: 
  2464.  
  2465.              EventLeader ::= [APPLICATION 1024] IMPLICIT SEQUENCE {                  eventCode INTEGER,                  eventIndex INTEGER,                  eventThreshold INTEGER,                  eventTime TimeStamp,                  eventDescr IA5STRING              } 
  2466.  
  2467.       The eventCode is a number which indicates the type of event.  The      eventCodes are defined below. 
  2468.  
  2469.      The eventIndex is an implementation specific value.  It is      considered good practice to make sure that a particular event is      only generated in one place.  It may be the case that certain HEMS      generic events (for example, "no buffer space") may be generated by      more than one place in an entity's code.  To allow implementors and      network managers to determine where the event is actually being      generated, implementors should make sure that a distinct eventIndex      is assigned to each location in the code that generates a      particular event. 
  2470.  
  2471.      The eventThreshold is the value of the event threshold when the      event was sent. 
  2472.  
  2473.      The eventTime indicates when the trap was generated. 
  2474.  
  2475.      The eventDescr is a text string which describes the event.  This 
  2476.  
  2477.  
  2478.  
  2479. Partridge & Trewitt                                            [Page 69] 
  2480.  RFC 1024                    HEMS Definitions                October 1987 
  2481.  
  2482.       description should explain the general problem (e.g., "no buffer      space") and may also, optionally, include additional information      about why this particular event was generated (e.g., "could not      send ICMP redirect"). 
  2483.  
  2484.  Event Definitions 
  2485.  
  2486.      The remainder of this memo presents a few generic events, which are      presented for illustration only.  Implementors interested in      supporting events should contact the authors to help work out a      more comprehensive set of definitions. 
  2487.  
  2488.      The format of the event definitions is: 
  2489.  
  2490.      EVENT CODE:  The event code number. 
  2491.  
  2492.      Definition:  Defines the event. 
  2493.  
  2494.          Related Objects: The list of related objects which *must* be          returned following the event header.  All objects should be          returned as fully qualified objects (with ASN.1 codes tracing          a complete path from the root object dictionary).  If no          objects are specified, then no related objects are required. 
  2495.  
  2496.      Event Status:  Events are either required of all conforming              implementations, required if the entity supports a              particular feature (e.g., TCP events) or optional. 
  2497.  
  2498.      Notes: Any additional notes about the event. 
  2499.  
  2500.  List of Events 
  2501.  
  2502.           The next few event codes are for system (as opposed to more          network oriented) events. 
  2503.  
  2504.          EVENT CODE:  0 
  2505.  
  2506.          Definition:  Unused 
  2507.  
  2508.           EVENT CODE:  1 
  2509.  
  2510.          Definition:  The entity has rebooted. 
  2511.  
  2512.          Related Objects:   An INTEGER which is the highest HEMP 
  2513.  
  2514.  
  2515.  
  2516. Partridge & Trewitt                                            [Page 70] 
  2517.  RFC 1024                    HEMS Definitions                October 1987 
  2518.  
  2519.               messageID reached by the trap system before the system              crashed. 
  2520.  
  2521.          EVENT CODE:  2 
  2522.  
  2523.          Definition:  The entity is about to go into test mode. 
  2524.  
  2525.           EVENT CODE:  3 
  2526.  
  2527.          Definition:  The entity is about to reset. 
  2528.  
  2529.           EVENT CODE:  4 
  2530.  
  2531.          Definition:  The entity is about to reboot. 
  2532.  
  2533.           EVENT CODE:  5 
  2534.  
  2535.          Definition:  The entity is about to halt. 
  2536.  
  2537.           EVENT CODE:  6 
  2538.  
  2539.          Definition:  The system is close to depleting its packet buffer              space. 
  2540.  
  2541.          Event Status:  optional 
  2542.  
  2543.           EVENT CODE:  7 
  2544.  
  2545.          Definition:  The system has depleted its packet buffer space. 
  2546.  
  2547.           EVENT CODE:  8 
  2548.  
  2549.          Definition:  The system has depleted a non-packet buffer space. 
  2550.  
  2551.          Note:  The two trap codes above do not deal neatly with              systems which have multiple buffer pools, each of which              may be depleted separately, with very different effects              on the entity. 
  2552.  
  2553.           The next set of event codes apply to events related to network          interfaces. 
  2554.  
  2555.  
  2556.  
  2557. Partridge & Trewitt                                            [Page 71] 
  2558.  RFC 1024                    HEMS Definitions                October 1987 
  2559.  
  2560.           EVENT CODE:  1024 
  2561.  
  2562.          Definition:  The given interface has just come up. 
  2563.  
  2564.          Related Objects:  The InterfaceData structure for the              interface. 
  2565.  
  2566.          EVENT CODE:  1025 
  2567.  
  2568.          Definition:  The given interface has just been taken down. 
  2569.  
  2570.          Related Objects:  The InterfaceData structure for the              interface. 
  2571.  
  2572.          EVENT CODE:  1026 
  2573.  
  2574.          Definition:  The given interface has just gone into test mode. 
  2575.  
  2576.          Related Objects:  The InterfaceData structure for the              interface. 
  2577.  
  2578.          The next set of event codes are used to report IP-level errors. 
  2579.  
  2580.           EVENT CODE:  2048 
  2581.  
  2582.          Definition:  Unable to route IP packet. 
  2583.  
  2584.           EVENT CODE:  2049 
  2585.  
  2586.          Definition:  Bad IP checksum. 
  2587.  
  2588.           EVENT CODE:  2050 
  2589.  
  2590.          Definition:  An IP packet with a bad header was received (for              example, with a broadcast or multicast IP address as the              source, or the wrong IP version number, or a header length              which is too short). 
  2591.  
  2592.          Related Objects:  Should return the IP header of the packet.              Note that an IP header type has not yet been defined. 
  2593.  
  2594.           EVENT CODE:  2051 
  2595.  
  2596.          Definition:  Packet for unsupported IP transport protocol. 
  2597.  
  2598.  
  2599.  
  2600. Partridge & Trewitt                                            [Page 72] 
  2601.  RFC 1024                    HEMS Definitions                October 1987 
  2602.  
  2603.           Related Objects:  Should return the IP header of the packet.              Note that an IP header type has not yet been defined. 
  2604.  
  2605.           EVENT CODE:  2052 
  2606.  
  2607.          Definition:  A stunted IP packet was received (smaller than              the IP length says it should be). 
  2608.  
  2609.          Related Objects:  Should return the IP header of the packet.              Note that an IP header type has not yet been defined. 
  2610.  
  2611.           EVENT CODE:  2053 
  2612.  
  2613.          Definition:  An oversize IP packet was received (larger than              the IP length says it should be). 
  2614.  
  2615.          Related Objects:  Should return the IP header of the packet.              Note that an IP header type has not yet been defined. 
  2616.  
  2617.           EVENT CODE:  2054 
  2618.  
  2619.          Definition:  A good IP packet was discarded (usually to free              up buffer space). 
  2620.  
  2621.          Related Objects:  Should return the IP header of the packet.              Note that an IP header type has not yet been defined. 
  2622.  
  2623.           EVENT CODE:  2055 
  2624.  
  2625.          Definition:  An IP packet's time-to-live as expired. 
  2626.  
  2627.          Related Objects:  Should return the IP header of the packet.              Note that an IP header type has not yet been defined. 
  2628.  
  2629.           EVENT CODE:  2056 
  2630.  
  2631.          Definition:  This IP fragment has timed out. 
  2632.  
  2633.          Related Objects:  Should return the header of the fragment.              Note that an IP header type has not yet been defined. 
  2634.  
  2635.  
  2636.  
  2637.  
  2638.  
  2639.  Partridge & Trewitt                                            [Page 73] 
  2640.  RFC 1024                    HEMS Definitions                October 1987 
  2641.  
  2642.  AREAS FOR FURTHER STUDY 
  2643.  
  2644.      There are several parts of this document that could use additional      study.  Comments from readers are welcome. 
  2645.  
  2646.      The whole event system needs thorough examination.  It is not clear      that the event control mechanism strikes the proper balance between      sufficient flexibility to allow monitoring centers to customize      their event stream, and keeping the basic mechanism simple.      Further, the problem of defining generic events for all entities is      an immense task.  Finally, the system of appending required values      after traps, followed by optional values read from the data tree      feels a bit cumbersome.  It would be nice if all values were in the      same data space. 
  2647.  
  2648.      Several readers have suggested it might make more sense to keep TCP      connection parameters on a per-connection basis rather than      globally. 
  2649.  
  2650.      The method for specifying the TCP round-trip time algorithm needs      to be refined.  The expression syntax should be sufficiently      general that all round-trip-time-related algorithms (e.g., those      for time or routing protocols) can be expressed in it. 
  2651.  
  2652.      Much more research could be done into what information needs to be      gathered to effectively monitor a network. 
  2653.  
  2654.  
  2655.  
  2656.  
  2657.  
  2658.  
  2659.  
  2660.  
  2661.  
  2662.  
  2663.  
  2664.  
  2665.  
  2666.  
  2667.  
  2668.  
  2669.  
  2670.  
  2671.  
  2672.  
  2673.  
  2674.  
  2675.  
  2676.  
  2677.  
  2678. Partridge & Trewitt                                            [Page 74] 
  2679.  
  2680.