summaryrefslogtreecommitdiff
path: root/MIBS/quanta/fastpath_telnet.my
diff options
context:
space:
mode:
Diffstat (limited to 'MIBS/quanta/fastpath_telnet.my')
-rw-r--r--MIBS/quanta/fastpath_telnet.my84
1 files changed, 84 insertions, 0 deletions
diff --git a/MIBS/quanta/fastpath_telnet.my b/MIBS/quanta/fastpath_telnet.my
new file mode 100644
index 0000000..0dd4fcd
--- /dev/null
+++ b/MIBS/quanta/fastpath_telnet.my
@@ -0,0 +1,84 @@
+-- OUTBOUND TELNET MIB overview:
+-- OUTBOUND TELNET MIB falls under lb6m MIB node of the private subtree.
+
+
+
+NETGEAR-OUTBOUNDTELNET-PRIVATE-MIB DEFINITIONS ::= BEGIN
+
+-- Netgear Inc NETGEAR OUTBOUND TELNET MIB
+-- Copyright Netgear Inc (2002-2007) All rights reserved.
+
+-- This SNMP Management Information Specification
+-- embodies Netgear Inc's confidential and proprietary
+-- intellectual property. Netgear Inc retains all title
+-- and ownership in the Specification including any revisions.
+
+-- This Specification is supplied "AS IS", Netgear Inc
+-- makes no warranty, either expressed or implied,
+-- as to the use, operation, condition, or performance of the
+-- Specification.
+
+
+
+IMPORTS
+ MODULE-IDENTITY, OBJECT-TYPE, Integer32 FROM SNMPv2-SMI
+ lb6m FROM QUANTA-LB6M-REF-MIB;
+
+ fastPathOutboundTelnetPrivate MODULE-IDENTITY
+ LAST-UPDATED "201101260000Z" -- 26 January 2011 12:00:00 GMT
+ ORGANIZATION "Netgear Inc"
+ CONTACT-INFO ""
+ DESCRIPTION
+ "The Netgear Private MIB for NETGEAR Outbound Telnet"
+
+ -- Revision history.
+ REVISION
+ "201101260000Z" -- 26 January 2011 12:00:00 GMT
+ DESCRIPTION
+ "Add new Postal address change."
+ REVISION
+ "200705230000Z" -- 23 May 2007 12:00:00 GMT
+ DESCRIPTION
+ "Netgear branding related changes."
+
+ ::= { lb6m 19 }
+
+
+ --**************************************************************************************
+ -- agentOutboundTelnetGroup -> contains MIB objects displaying various properties of a Outbound Telnet
+ --
+ --**************************************************************************************
+
+ agentOutboundTelnetGroup OBJECT IDENTIFIER ::= { fastPathOutboundTelnetPrivate 1 }
+
+ agentOutboundTelnetAdminMode OBJECT-TYPE
+ SYNTAX INTEGER {
+ enable(1),
+ disable(2)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ " Admin-mode of the Outbound Telnet."
+ DEFVAL { enable }
+ ::= { agentOutboundTelnetGroup 1 }
+
+
+ agentOutboundTelnetMaxNoOfSessions OBJECT-TYPE
+ SYNTAX INTEGER (0..5)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ " The maximum no. of Outbound Telnet sessions allowed."
+ DEFVAL { 5 }
+ ::= { agentOutboundTelnetGroup 2 }
+
+ agentOutboundTelnetTimeout OBJECT-TYPE
+ SYNTAX INTEGER (1..160)
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ " The login inactivity timeout value for Outbound Telnet."
+ DEFVAL { 5 }
+ ::= { agentOutboundTelnetGroup 3 }
+END