summaryrefslogtreecommitdiff
path: root/MIBS/hillstone/HILLSTONE-IP-MIB
diff options
context:
space:
mode:
authorDavid Leutgeb <david.leutgeb@mannundmouse.com>2023-12-05 12:25:34 +0100
committerDavid Leutgeb <david.leutgeb@mannundmouse.com>2023-12-05 12:25:34 +0100
commit98a672123c7872f6b9b75a9a2b6bb3aea504de6a (patch)
tree9b13bd7f563c3198047bd359195327cf28b3caf0 /MIBS/hillstone/HILLSTONE-IP-MIB
downloadmibs-main.tar.gz
mibs-main.zip
Initial commitHEADmain
Diffstat (limited to 'MIBS/hillstone/HILLSTONE-IP-MIB')
-rw-r--r--MIBS/hillstone/HILLSTONE-IP-MIB45
1 files changed, 45 insertions, 0 deletions
diff --git a/MIBS/hillstone/HILLSTONE-IP-MIB b/MIBS/hillstone/HILLSTONE-IP-MIB
new file mode 100644
index 0000000..e5930fa
--- /dev/null
+++ b/MIBS/hillstone/HILLSTONE-IP-MIB
@@ -0,0 +1,45 @@
+-- **********************************************************************
+-- HILLSTONE-IP-MIB
+--
+-- Copyright (c) 2009 by Hillstone Networks, Inc.
+-- All rights reserved.
+--
+-- Version: V3
+-- Description: Hillstone Networks IP MIB Object Identifier Assignments
+-- **********************************************************************
+--
+
+HILLSTONE-IP-MIB DEFINITIONS ::= BEGIN
+
+IMPORTS
+ hillstoneIp
+ FROM HILLSTONE-SMI
+ OBJECT-TYPE
+ FROM RFC-1212;
+
+ -- textual conventions
+
+ DisplayString ::=
+ OCTET STRING
+ -- This data type is used to model textual information taken
+ -- from the NVT ASCII character set. By convention, objects
+ -- with this syntax are declared as having
+ --
+ -- SIZE (0..255)
+
+hillstoneIpObjects OBJECT IDENTIFIER ::= { hillstoneIp 1 }
+
+hillstoneIpAddressFamily OBJECT-TYPE
+ SYNTAX INTEGER
+ {
+ ipv4(1),
+ ipv6(2),
+ other(3)
+ }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "The address family of this interface."
+ ::= { hillstoneIpObjects 1 }
+
+END