-- -- For the revision history to work correctly, after a new MIB file has been -- added to the CVS repository the first time the CVS Admin person needs to -- set the correct comment string delimter for the file. -- -- $Log: usr_filter.mib,v $ -- Revision 1.11 1997/07/14 19:10:00 ussrey -- fixed bug #1710 usrFilterPktLogSize did not include the default value of 0 in the range. also changed description. -- -- Revision 1.10 1997/04/09 21:04:59 ussrey -- added usrFilterPktLogCount -- -- Revision 1.9 1997/03/31 15:50:08 ussrey -- added usrFilterPktLogSize and usrFilterPktLogFlag used for syslogging filtered packets -- -- Revision 1.8 1997/02/03 19:41:40 sef -- fixed typo in last checkin -- -- Revision 1.7 1997/02/03 19:37:31 sef -- add ARAP zone filter value -- -- Revision 1.6 1996/09/25 21:07:37 patton -- Put in error message -- -- Revision 1.4.2.2 1996/09/20 15:47:18 freeve -- Add new status info and object for verify error string -- -- Revision 1.4.2.1 1996/09/12 18:32:07 jhalpin -- Fix Filter protocol bits, build usr_cli.mib into usr_netserver.mib, remove unneeded definitions from usr_definitions.mib -- -- Revision 1.4 1996/04/17 22:56:25 freeve -- Create and use usrFilteName type -- -- Revision 1.3 1996/03/29 20:05:19 psd -- Config file name is not configurable. -- -- Revision 1.2 1996/03/25 23:59:52 freeve -- Add Configuration File Manager objects and consolidate the status and -- state fields into one. -- -- Revision 1.1 1996/03/18 21:01:40 freeve -- First cut at filter MIB -- -- -- USR-AT-MIB DEFINITIONS ::= BEGIN IMPORTS atprivateFwd FROM USR-DEFINITIONS-MIB OBJECT-TYPE FROM RFC-1212 atportIndex FROM RFC1742-FORW-MIB; DdpNodeAddress ::= OCTET STRING (SIZE (3)) -- AppleTalk Private port table -- -- This is a USRobotics Private MIB, that allows configuration -- of port information that is not in the public MIB. -- It is indexed the same as the atportTable, using the atportIndex. -- atprivPortTable OBJECT-TYPE SYNTAX SEQUENCE OF AtprivPortEntry ACCESS not-accessible STATUS mandatory DESCRIPTION "This table is used to configure an appletalk port." ::= { atprivateFwd 1 } atprivPortEntry OBJECT-TYPE SYNTAX AtprivPortEntry ACCESS not-accessible STATUS mandatory DESCRIPTION "The description of one of the AppleTalk configuration port." INDEX { atportIndex } ::= { atprivPortTable 1 } AtprivPortEntry ::= SEQUENCE { atprivportSendChecksums INTEGER, atprivportGleaning INTEGER, atprivportNodeSet DdpNodeAddress, atprivportNodeLock INTEGER } atprivportSendChecksums OBJECT-TYPE SYNTAX INTEGER { send (1), dontsend (2) } ACCESS read-write STATUS mandatory DESCRIPTION "Set this value to send to send checksums on this port." --CONFIGURABLE ::= { atprivPortEntry 1 } atprivportGleaning OBJECT-TYPE SYNTAX INTEGER { glean (1), dontglean (2) } ACCESS read-write STATUS mandatory DESCRIPTION "Set this value to glean to glean to the AARP cache." --CONFIGURABLE ::= { atprivPortEntry 2 } atprivportNodeSet OBJECT-TYPE SYNTAX DdpNodeAddress ACCESS read-write STATUS mandatory DESCRIPTION "The node number requested for this port by the administrator. If set to 0.0, then select any node number." ::= { atprivPortEntry 3 } atprivportNodeLock OBJECT-TYPE SYNTAX INTEGER { locked (1), unlocked (2) } ACCESS read-write STATUS mandatory DESCRIPTION "If this is TRUE, the router will come up on the set node or it won't come up at all." ::= { atprivPortEntry 4 } END