home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1997 November / VPR9711A.ISO / MS_IE40J / IE4P2 / pwssetup.cab / FTP.MIB < prev    next >
Text File  |  1996-10-18  |  6KB  |  163 lines

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