home *** CD-ROM | disk | FTP | other *** search
/ Network Support Encyclopedia 96-1 / novell-nsepro-1996-1-cd2.iso / download / netware / vlmkt2.exe / WSDRVPRN.MI_ / WSDRVPRN.MIB
Text File  |  1994-05-13  |  5KB  |  164 lines

  1.        Workstation-Drive-Printer-MIB DEFINITIONS ::= BEGIN
  2.  
  3.        --
  4.        -- This MIB currently defines the NetWare File System Mount 
  5.        -- points and printer queues captured on a NetWare client.
  6.        --
  7.        -- Last Updated: March 8, 1994
  8.        --
  9.  
  10.        IMPORTS
  11.           enterprises
  12.              FROM RFC1155-SMI
  13.  
  14.           OBJECT-TYPE
  15.              FROM RFC-1212;
  16.  
  17.  
  18.        novell              OBJECT IDENTIFIER ::= { enterprises 23 }
  19.        mibDoc              OBJECT IDENTIFIER ::= { novell 2 }
  20.  
  21.        nwDesktop           OBJECT IDENTIFIER ::= { mibDoc 22 }
  22.  
  23.        nwdtFileSystem      OBJECT IDENTIFIER ::= { nwDesktop 1 }
  24.        nwdtDevice          OBJECT IDENTIFIER ::= { nwDesktop 2 }
  25.  
  26.        --
  27.        -- The File System Mount Table
  28.        --
  29.  
  30.        nwdtFSMountTable OBJECT-TYPE
  31.           SYNTAX SEQUENCE OF NwdtFSMountEntry
  32.           ACCESS not-accessible
  33.           STATUS mandatory
  34.           DESCRIPTION
  35.                  "A set of data for each accessible drive, whether
  36.                  local or remote."
  37.           ::= { nwdtFileSystem 1 }
  38.  
  39.        nwdtFSMountEntry OBJECT-TYPE
  40.           SYNTAX NwdtFSMountEntry
  41.           ACCESS not-accessible
  42.           STATUS mandatory
  43.           DESCRIPTION
  44.                  "A set of data for a particular drive."
  45.           INDEX  { nwdtFSMountID }
  46.           ::= { nwdtFSMountTable 1 }
  47.  
  48.        NwdtFSMountEntry ::= SEQUENCE {
  49.             nwdtFSMountID               INTEGER,
  50.             nwdtFSMountLocalName        OCTET STRING,
  51.             nwdtFSMountRemoteName       OCTET STRING
  52.           }
  53.  
  54.  
  55.        nwdtFSMountID OBJECT-TYPE
  56.           SYNTAX INTEGER
  57.           ACCESS read-only
  58.           STATUS mandatory
  59.           DESCRIPTION
  60.                  "A unique value for each accessible drive.  This
  61.                  value will be constant for the lifetime of the
  62.                  mapping."
  63.           ::= { nwdtFSMountEntry 1 }
  64.  
  65.        nwdtFSMountLocalName OBJECT-TYPE
  66.           SYNTAX OCTET STRING
  67.           ACCESS read-only
  68.           STATUS mandatory
  69.           DESCRIPTION
  70.                  "The local name for the drive."
  71.           ::= { nwdtFSMountEntry 2 }
  72.  
  73.        nwdtFSMountRemoteName OBJECT-TYPE
  74.           SYNTAX OCTET STRING
  75.           ACCESS read-only
  76.           STATUS mandatory
  77.           DESCRIPTION
  78.                  "The name of the remote point associated with this
  79.                  drive."
  80.           ::= { nwdtFSMountEntry 3 }
  81.  
  82.  
  83.        --
  84.        -- The Printer Table
  85.        --
  86.  
  87.        nwdtPrinterTable OBJECT-TYPE
  88.           SYNTAX SEQUENCE OF NwdtPrinterEntry
  89.           ACCESS not-accessible
  90.           STATUS mandatory
  91.           DESCRIPTION
  92.                  "A set of data for each accessible printer, whether
  93.                  local or remote."
  94.           ::= { nwdtDevice 1 }
  95.  
  96.        nwdtPrinterEntry OBJECT-TYPE
  97.           SYNTAX NwdtPrinterEntry
  98.           ACCESS not-accessible
  99.           STATUS mandatory
  100.           DESCRIPTION
  101.                  "A set of data for a particular printer."
  102.           INDEX  { nwdtPrinterID }
  103.           ::= { nwdtPrinterTable 1 }
  104.  
  105.        NwdtPrinterEntry ::= SEQUENCE {
  106.             nwdtPrinterID               INTEGER,
  107.             nwdtPrinterType             INTEGER,
  108.             nwdtPrinterLocalName        OCTET STRING,
  109.             nwdtPrinterQueueName        OCTET STRING,
  110.             nwdtPrinterServerName       OCTET STRING
  111.           }
  112.  
  113.        nwdtPrinterID OBJECT-TYPE
  114.           SYNTAX INTEGER
  115.           ACCESS read-only
  116.           STATUS mandatory
  117.           DESCRIPTION
  118.                  "A unique value for each accessible printer.  This
  119.                  value will be constant for the lifetime of the
  120.                  mapping."
  121.           ::= { nwdtPrinterEntry 1 }
  122.  
  123.        nwdtPrinterType OBJECT-TYPE
  124.           SYNTAX INTEGER {
  125.                       other(1),
  126.                       local(2),
  127.                       netware(3),
  128.                       unixware(4)
  129.                  }
  130.           ACCESS read-only
  131.           STATUS mandatory
  132.           DESCRIPTION
  133.                  "The type of the printer."
  134.           ::= { nwdtPrinterEntry 2 }
  135.  
  136.        nwdtPrinterLocalName OBJECT-TYPE
  137.           SYNTAX OCTET STRING
  138.           ACCESS read-only
  139.           STATUS mandatory
  140.           DESCRIPTION
  141.                  "The local name for the printer."
  142.           ::= { nwdtPrinterEntry 3 }
  143.  
  144.        nwdtPrinterQueueName OBJECT-TYPE
  145.           SYNTAX OCTET STRING
  146.           ACCESS read-only
  147.           STATUS mandatory
  148.           DESCRIPTION
  149.                  "The name of the print queue associated with this
  150.                  printer.  Zero length string if printer is local."
  151.           ::= { nwdtPrinterEntry 4 }
  152.  
  153.        nwdtPrinterServerName OBJECT-TYPE
  154.           SYNTAX OCTET STRING
  155.           ACCESS read-only
  156.           STATUS mandatory
  157.           DESCRIPTION
  158.                  "The name of the server containing the print queue.
  159.                  Zero length string if printer is local."
  160.           ::= { nwdtPrinterEntry 5 }
  161.  
  162.        END
  163.  
  164.