[BACK]Return to OPENBSD-PF-MIB.txt CVS log [TXT][DIR] Up to [local] / src / share / snmp

Diff for /src/share/snmp/OPENBSD-PF-MIB.txt between version 1.2 and 1.3

version 1.2, 2013/03/11 19:49:37 version 1.3, 2013/09/07 04:31:52
Line 1 
Line 1 
 -- $OpenBSD$  -- $OpenBSD$
 --  --
 -- Copyright (c) 2004-2012 Joel Knight <knight.joel@gmail.com>  -- Copyright (c) 2004-2013 Joel Knight <knight.joel@gmail.com>
 --  --
 -- Permission to use, copy, modify, and distribute this document for any  -- Permission to use, copy, modify, and distribute this document for any
 -- purpose with or without fee is hereby granted, provided that the above  -- purpose with or without fee is hereby granted, provided that the above
Line 33 
Line 33 
                 FROM SNMPv2-CONF;                  FROM SNMPv2-CONF;
   
 pfMIBObjects MODULE-IDENTITY  pfMIBObjects MODULE-IDENTITY
     LAST-UPDATED "201302242033Z"      LAST-UPDATED "201308310446Z"
     ORGANIZATION "OpenBSD"      ORGANIZATION "OpenBSD"
     CONTACT-INFO "      CONTACT-INFO "
                   Author:     Joel Knight                    Author:     Joel Knight
Line 43 
Line 43 
     DESCRIPTION "The MIB module for gathering information from      DESCRIPTION "The MIB module for gathering information from
                 OpenBSD's packet filter.                  OpenBSD's packet filter.
                 "                  "
       REVISION "201308310446Z"
       DESCRIPTION "Add pf(4) table byte/packet counters for 'match' rules"
     REVISION "201302242033Z"      REVISION "201302242033Z"
     DESCRIPTION "Add separate counter for failed translations"      DESCRIPTION "Add separate counter for failed translations"
     REVISION "201201260000Z"      REVISION "201201260000Z"
Line 919 
Line 921 
                 pfTblOutBlockBytes      Counter64,                  pfTblOutBlockBytes      Counter64,
                 pfTblOutXPassPkts               Counter64,                  pfTblOutXPassPkts               Counter64,
                 pfTblOutXPassBytes      Counter64,                  pfTblOutXPassBytes      Counter64,
                 pfTblStatsCleared               TimeTicks                  pfTblStatsCleared               TimeTicks,
                   pfTblInMatchPkts                Counter64,
                   pfTblInMatchBytes               Counter64,
                   pfTblOutMatchPkts               Counter64,
                   pfTblOutMatchBytes              Counter64
         }          }
   
 pfTblIndex OBJECT-TYPE  pfTblIndex OBJECT-TYPE
Line 1092 
Line 1098 
         for this pf table were zeroed."          for this pf table were zeroed."
         ::= { pfTblEntry 20 }          ::= { pfTblEntry 20 }
   
   pfTblInMatchPkts OBJECT-TYPE
           SYNTAX          Counter64
           MAX-ACCESS      read-only
           STATUS          current
           DESCRIPTION
           "The number of inbound packets that hit a 'match' rule where this
           particular table was referenced by the rule."
           ::= { pfTblEntry 21 }
   
   pfTblInMatchBytes OBJECT-TYPE
           SYNTAX          Counter64
           MAX-ACCESS      read-only
           STATUS          current
           DESCRIPTION
           "The total size in bytes of all inbound packets that hit a
           'match' rule where this particular table was referenced by
           the rule."
           ::= { pfTblEntry 22 }
   
   pfTblOutMatchPkts OBJECT-TYPE
           SYNTAX          Counter64
           MAX-ACCESS      read-only
           STATUS          current
           DESCRIPTION
           "The number of outbound packets that hit a 'match' rule where this
           particular table was referenced by the rule."
           ::= { pfTblEntry 23 }
   
   pfTblOutMatchBytes OBJECT-TYPE
           SYNTAX          Counter64
           MAX-ACCESS      read-only
           STATUS          current
           DESCRIPTION
           "The total size in bytes of all outbound packets that hit a
           'match' rule where this particular table was referenced by
           the rule."
           ::= { pfTblEntry 24 }
   
 pfTblAddrTable OBJECT-TYPE  pfTblAddrTable OBJECT-TYPE
         SYNTAX          SEQUENCE OF TblAddrEntry          SYNTAX          SEQUENCE OF TblAddrEntry
         MAX-ACCESS      not-accessible          MAX-ACCESS      not-accessible
Line 1124 
Line 1168 
                 pfTblAddrOutBlockPkts   Counter64,                  pfTblAddrOutBlockPkts   Counter64,
                 pfTblAddrOutBlockBytes  Counter64,                  pfTblAddrOutBlockBytes  Counter64,
                 pfTblAddrOutPassPkts    Counter64,                  pfTblAddrOutPassPkts    Counter64,
                 pfTblAddrOutPassBytes   Counter64                  pfTblAddrOutPassBytes   Counter64,
                   pfTblAddrInMatchPkts    Counter64,
                   pfTblAddrInMatchBytes   Counter64,
                   pfTblAddrOutMatchPkts   Counter64,
                   pfTblAddrOutMatchBytes  Counter64
         }          }
   
 pfTblAddrTblIndex OBJECT-TYPE  pfTblAddrTblIndex OBJECT-TYPE
Line 1235 
Line 1283 
         "The number of outbound bytes passed as a result of matchg          "The number of outbound bytes passed as a result of matchg
         this table entry."          this table entry."
         ::= { pfTblAddrEntry 12 }          ::= { pfTblAddrEntry 12 }
   
   pfTblAddrInMatchPkts OBJECT-TYPE
           SYNTAX          Counter64
           MAX-ACCESS      read-only
           STATUS          current
           DESCRIPTION
           "The number of inbound packets that hit a 'match' rule where
           this table entry was referenced."
           ::= { pfTblAddrEntry 13 }
   
   pfTblAddrInMatchBytes OBJECT-TYPE
           SYNTAX          Counter64
           MAX-ACCESS      read-only
           STATUS          current
           DESCRIPTION
           "The total size in bytes of all inbound packets that hit
           a 'match' rule where this table entry was referenced."
           ::= { pfTblAddrEntry 14 }
   
   pfTblAddrOutMatchPkts OBJECT-TYPE
           SYNTAX          Counter64
           MAX-ACCESS      read-only
           STATUS          current
           DESCRIPTION
           "The number of outbound packets that hit a 'match' rule where
           this table entry was referenced."
           ::= { pfTblAddrEntry 15 }
   
   pfTblAddrOutMatchBytes OBJECT-TYPE
           SYNTAX          Counter64
           MAX-ACCESS      read-only
           STATUS          current
           DESCRIPTION
           "The total size in bytes of all outbound packets that hit
           a 'match' rule where this table entry was referenced."
           ::= { pfTblAddrEntry 16 }
   
   
 -- pfLabels  -- pfLabels

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3