home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1996 May / PCW596.iso / wtest / microsft / sdk / ftp.mib next >
Text File  |  1995-06-07  |  6KB  |  165 lines

  1. FtpServer-MIB DEFINITIONS ::= BEGIN
  2.  
  3.         IMPORTS
  4.                 enterprises,
  5.                 OBJECT-TYPE,
  6.                 Counter
  7.                         FROM RFC1155-SMI
  8.                 InternetServer
  9.                         FROM inetsrv;
  10.  
  11. --      microsoft       OBJECT IDENTIFIER ::= { enterprises 311 }
  12. --      software        OBJECT IDENTIFIER ::= { microsoft 1 }
  13. --      InternetServer  OBJECT IDENTIFIER ::= { software 7 }
  14.         FtpServer       OBJECT IDENTIFIER ::= { InternetServer 2 }
  15.         FtpStatistics   OBJECT IDENTIFIER ::= { FtpServer 1 }
  16.  
  17. -- FTP Server Statistics
  18.  
  19.         TotalBytesSent_HighWord OBJECT-TYPE
  20.                 SYNTAX  Counter
  21.                 ACCESS  read-only
  22.                 STATUS  mandatory
  23.                 DESCRIPTION
  24.                         "This is the high 32-bits of the total number of
  25.                         of BYTEs sent by the FTP Server"
  26.                 ::= { FtpStatistics 1 }
  27.  
  28.         TotalBytesSent_LowWord OBJECT-TYPE
  29.                 SYNTAX  Counter
  30.                 ACCESS  read-only
  31.                 STATUS  mandatory
  32.                 DESCRIPTION
  33.                         "This is the low 32-bits of the total number of
  34.                         of BYTEs sent by the FTP Server"
  35.                 ::= { FtpStatistics 2 }
  36.  
  37.         TotalBytesReceived_HighWord OBJECT-TYPE
  38.                 SYNTAX  Counter
  39.                 ACCESS  read-only
  40.                 STATUS  mandatory
  41.                 DESCRIPTION
  42.                         "This is the high 32-bits of the total number of
  43.                         of BYTEs received by the FTP Server"
  44.                 ::= { FtpStatistics 3 }
  45.  
  46.         TotalBytesReceived_LowWord OBJECT-TYPE
  47.                 SYNTAX  Counter
  48.                 ACCESS  read-only
  49.                 STATUS  mandatory
  50.                 DESCRIPTION
  51.                         "This is the low 32-bits of the total number of
  52.                         of BYTEs received by the FTP Server"
  53.                 ::= { FtpStatistics 4 }
  54.  
  55.         TotalFilesSent OBJECT-TYPE
  56.                 SYNTAX  Counter
  57.                 ACCESS  read-only
  58.                 STATUS  mandatory
  59.                 DESCRIPTION
  60.                         "This is the total number of files sent by this
  61.                         FTP Server"
  62.                 ::= { FtpStatistics 5 }
  63.  
  64.         TotalFilesReceived OBJECT-TYPE
  65.                 SYNTAX  Counter
  66.                 ACCESS  read-only
  67.                 STATUS  mandatory
  68.                 DESCRIPTION
  69.                         "This is the total number of files received by this
  70.                         FTP Server"
  71.                 ::= { FtpStatistics 6 }
  72.  
  73.         CurrentAnonymousUsers OBJECT-TYPE
  74.                 SYNTAX  Integer
  75.                 ACCESS  read-only
  76.                 STATUS  mandatory
  77.                 DESCRIPTION
  78.                         "This is the number of anonymous users currently
  79.                         connected to the FTP Server"
  80.                 ::= { FtpStatistics 7 }
  81.  
  82.         CurrentNonAnonymousUsers OBJECT-TYPE
  83.                 SYNTAX  Integer
  84.                 ACCESS  read-only
  85.                 STATUS  mandatory
  86.                 DESCRIPTION
  87.                         "This is the number of nonanonymous users currently
  88.                         connected to the FTP Server"
  89.                 ::= { FtpStatistics 8 }
  90.  
  91.         TotalAnonymousUsers OBJECT-TYPE
  92.                 SYNTAX  Counter
  93.                 ACCESS  read-only
  94.                 STATUS  mandatory
  95.                 DESCRIPTION
  96.                         "This is the total number of anonymous users that
  97.                         have ever connected to the FTP Server"
  98.                 ::= { FtpStatistics 9 }
  99.  
  100.         TotalNonAnonymousUsers OBJECT-TYPE
  101.                 SYNTAX  Counter
  102.                 ACCESS  read-only
  103.                 STATUS  mandatory
  104.                 DESCRIPTION
  105.                         "This is the total number of nonanonymous users that
  106.                         have ever connected to the FTP Server"
  107.                 ::= { FtpStatistics 10 }
  108.  
  109.         MaxAnonymousUsers OBJECT-TYPE
  110.                 SYNTAX  Counter
  111.                 ACCESS  read-only
  112.                 STATUS  mandatory
  113.                 DESCRIPTION
  114.                         "This is the maximum number of anonymous users
  115.                         simultaneously connected to the FTP Server"
  116.                 ::= { FtpStatistics 11 }
  117.  
  118.         MaxNonAnonymousUsers OBJECT-TYPE
  119.                 SYNTAX  Counter
  120.                 ACCESS  read-only
  121.                 STATUS  mandatory
  122.                 DESCRIPTION
  123.                         "This is the maximum number of nonanonymous users
  124.                         simultaneously connected to the FTP Server"
  125.                 ::= { FtpStatistics 12 }
  126.  
  127.         CurrentConnections OBJECT-TYPE
  128.                 SYNTAX  Integer
  129.                 ACCESS  read-only
  130.                 STATUS  mandatory
  131.                 DESCRIPTION
  132.                         "This is the current number of connections to the
  133.                         FTP Server"
  134.                 ::= { FtpStatistics 13 }
  135.  
  136.         MaxConnections OBJECT-TYPE
  137.                 SYNTAX  Counter
  138.                 ACCESS  read-only
  139.                 STATUS  mandatory
  140.                 DESCRIPTION
  141.                         "This is the maximum number of simultaneous
  142.                         connections to the FTP Server"
  143.                 ::= { FtpStatistics 14 }
  144.  
  145.         ConnectionAttempts OBJECT-TYPE
  146.                 SYNTAX  Counter
  147.                 ACCESS  read-only
  148.                 STATUS  mandatory
  149.                 DESCRIPTION
  150.                         "This is the number of connection attempts that
  151.                         have been made to the FTP Server"
  152.                 ::= { FtpStatistics 15 }
  153.  
  154.         LogonAttempts OBJECT-TYPE
  155.                 SYNTAX  Counter
  156.                 ACCESS  read-only
  157.                 STATUS  mandatory
  158.                 DESCRIPTION
  159.                         "This is the number of logon attempts that have
  160.                         been made to the FTP Server"
  161.                 ::= { FtpStatistics 16 }
  162.  
  163. END
  164.  
  165.