telemetry-snmp 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (131) hide show
  1. checksums.yaml +7 -0
  2. data/.github/workflows/rspec.yml +44 -0
  3. data/.github/workflows/rubocop.yml +28 -0
  4. data/.github/workflows/sourcehawk-scan.yml +20 -0
  5. data/.gitignore +14 -0
  6. data/.rspec +4 -0
  7. data/.rubocop.yml +26 -0
  8. data/CHANGELOG.md +4 -0
  9. data/CODE_OF_CONDUCT.md +75 -0
  10. data/CONTRIBUTING.md +54 -0
  11. data/Gemfile +10 -0
  12. data/INDIVIDUAL_CONTRIBUTOR_LICENSE.md +30 -0
  13. data/LICENSE +201 -0
  14. data/NOTICE.txt +9 -0
  15. data/README.md +54 -0
  16. data/attribution.txt +1 -0
  17. data/config.ru +15 -0
  18. data/exe/snmp_collector +55 -0
  19. data/lib/telemetry/snmp.rb +23 -0
  20. data/lib/telemetry/snmp/api.rb +55 -0
  21. data/lib/telemetry/snmp/auth.rb +54 -0
  22. data/lib/telemetry/snmp/auth/defaults.rb +41 -0
  23. data/lib/telemetry/snmp/client.rb +104 -0
  24. data/lib/telemetry/snmp/controllers/device_creds.rb +105 -0
  25. data/lib/telemetry/snmp/controllers/devices.rb +94 -0
  26. data/lib/telemetry/snmp/controllers/oid_groups.rb +71 -0
  27. data/lib/telemetry/snmp/controllers/oids.rb +80 -0
  28. data/lib/telemetry/snmp/controllers/users.rb +81 -0
  29. data/lib/telemetry/snmp/controllers/walks.rb +89 -0
  30. data/lib/telemetry/snmp/data.rb +69 -0
  31. data/lib/telemetry/snmp/data/default_opts.rb +73 -0
  32. data/lib/telemetry/snmp/data/migrations/001_device_creds.rb +19 -0
  33. data/lib/telemetry/snmp/data/migrations/002_create_devices_table.rb +31 -0
  34. data/lib/telemetry/snmp/data/migrations/003_create_oids_tables.rb +16 -0
  35. data/lib/telemetry/snmp/data/migrations/004_create_oid_groups.rb +15 -0
  36. data/lib/telemetry/snmp/data/migrations/005_create_oids_oid_groups.rb +17 -0
  37. data/lib/telemetry/snmp/data/migrations/006_device_to_oid_group.rb +15 -0
  38. data/lib/telemetry/snmp/data/migrations/007_create_users.rb +20 -0
  39. data/lib/telemetry/snmp/data/migrations/008_create_walks_table.rb +14 -0
  40. data/lib/telemetry/snmp/data/migrations/009_create_tag_name_column.rb +7 -0
  41. data/lib/telemetry/snmp/data/migrations/010_create_user_audit_table.rb +18 -0
  42. data/lib/telemetry/snmp/data/models/device.rb +11 -0
  43. data/lib/telemetry/snmp/data/models/device_cred.rb +11 -0
  44. data/lib/telemetry/snmp/data/models/oid.rb +10 -0
  45. data/lib/telemetry/snmp/data/models/oid_group.rb +10 -0
  46. data/lib/telemetry/snmp/data/models/oid_oid_groups.rb +10 -0
  47. data/lib/telemetry/snmp/data/models/oid_walk.rb +10 -0
  48. data/lib/telemetry/snmp/data/models/user.rb +10 -0
  49. data/lib/telemetry/snmp/data/models/user_audit_log.rb +19 -0
  50. data/lib/telemetry/snmp/mibs/AGENTX-MIB.txt +527 -0
  51. data/lib/telemetry/snmp/mibs/AIRPORT-BASESTATION-3-MIB.txt +461 -0
  52. data/lib/telemetry/snmp/mibs/BRIDGE-MIB.txt +1472 -0
  53. data/lib/telemetry/snmp/mibs/DISMAN-EVENT-MIB.txt +1882 -0
  54. data/lib/telemetry/snmp/mibs/DISMAN-SCHEDULE-MIB.txt +699 -0
  55. data/lib/telemetry/snmp/mibs/DISMAN-SCRIPT-MIB.txt +1764 -0
  56. data/lib/telemetry/snmp/mibs/EtherLike-MIB.txt +1862 -0
  57. data/lib/telemetry/snmp/mibs/HCNUM-TC.txt +118 -0
  58. data/lib/telemetry/snmp/mibs/HOST-RESOURCES-MIB.txt +1540 -0
  59. data/lib/telemetry/snmp/mibs/HOST-RESOURCES-TYPES.txt +389 -0
  60. data/lib/telemetry/snmp/mibs/IANA-ADDRESS-FAMILY-NUMBERS-MIB.txt +123 -0
  61. data/lib/telemetry/snmp/mibs/IANA-LANGUAGE-MIB.txt +123 -0
  62. data/lib/telemetry/snmp/mibs/IANA-RTPROTO-MIB.txt +91 -0
  63. data/lib/telemetry/snmp/mibs/IANAifType-MIB.txt +619 -0
  64. data/lib/telemetry/snmp/mibs/IF-INVERTED-STACK-MIB.txt +149 -0
  65. data/lib/telemetry/snmp/mibs/IF-MIB.txt +1814 -0
  66. data/lib/telemetry/snmp/mibs/INET-ADDRESS-MIB.txt +402 -0
  67. data/lib/telemetry/snmp/mibs/IP-FORWARD-MIB.txt +1277 -0
  68. data/lib/telemetry/snmp/mibs/IP-MIB.txt +4993 -0
  69. data/lib/telemetry/snmp/mibs/IPV6-FLOW-LABEL-MIB.txt +58 -0
  70. data/lib/telemetry/snmp/mibs/IPV6-ICMP-MIB.txt +529 -0
  71. data/lib/telemetry/snmp/mibs/IPV6-MIB.txt +1443 -0
  72. data/lib/telemetry/snmp/mibs/IPV6-TC.txt +67 -0
  73. data/lib/telemetry/snmp/mibs/IPV6-TCP-MIB.txt +211 -0
  74. data/lib/telemetry/snmp/mibs/IPV6-UDP-MIB.txt +141 -0
  75. data/lib/telemetry/snmp/mibs/NET-SNMP-AGENT-MIB.txt +554 -0
  76. data/lib/telemetry/snmp/mibs/NET-SNMP-EXAMPLES-MIB.txt +285 -0
  77. data/lib/telemetry/snmp/mibs/NET-SNMP-EXTEND-MIB.txt +325 -0
  78. data/lib/telemetry/snmp/mibs/NET-SNMP-MIB.txt +67 -0
  79. data/lib/telemetry/snmp/mibs/NET-SNMP-PASS-MIB.txt +124 -0
  80. data/lib/telemetry/snmp/mibs/NET-SNMP-TC.txt +128 -0
  81. data/lib/telemetry/snmp/mibs/NET-SNMP-VACM-MIB.txt +154 -0
  82. data/lib/telemetry/snmp/mibs/NOTIFICATION-LOG-MIB.txt +753 -0
  83. data/lib/telemetry/snmp/mibs/PAN-COMMON-MIB.md5 +1 -0
  84. data/lib/telemetry/snmp/mibs/PAN-COMMON-MIB.my +2293 -0
  85. data/lib/telemetry/snmp/mibs/PAN-ENTITY-EXT-MIB.md5 +1 -0
  86. data/lib/telemetry/snmp/mibs/PAN-ENTITY-EXT-MIB.my +293 -0
  87. data/lib/telemetry/snmp/mibs/PAN-GLOBAL-REG-MIB.md5 +1 -0
  88. data/lib/telemetry/snmp/mibs/PAN-GLOBAL-REG-MIB.my +84 -0
  89. data/lib/telemetry/snmp/mibs/PAN-GLOBAL-TC-MIB.md5 +1 -0
  90. data/lib/telemetry/snmp/mibs/PAN-GLOBAL-TC-MIB.my +68 -0
  91. data/lib/telemetry/snmp/mibs/PAN-LC-MIB.md5 +1 -0
  92. data/lib/telemetry/snmp/mibs/PAN-LC-MIB.my +204 -0
  93. data/lib/telemetry/snmp/mibs/PAN-PRODUCT-MIB.md5 +1 -0
  94. data/lib/telemetry/snmp/mibs/PAN-PRODUCT-MIB.my +305 -0
  95. data/lib/telemetry/snmp/mibs/PAN-TRAPS.md5 +1 -0
  96. data/lib/telemetry/snmp/mibs/PAN-TRAPS.my +7809 -0
  97. data/lib/telemetry/snmp/mibs/RFC-1215.txt +38 -0
  98. data/lib/telemetry/snmp/mibs/RFC1155-SMI.txt +119 -0
  99. data/lib/telemetry/snmp/mibs/RFC1213-MIB.txt +2613 -0
  100. data/lib/telemetry/snmp/mibs/RMON-MIB.txt +3980 -0
  101. data/lib/telemetry/snmp/mibs/SCTP-MIB.txt +1342 -0
  102. data/lib/telemetry/snmp/mibs/SMUX-MIB.txt +160 -0
  103. data/lib/telemetry/snmp/mibs/SNMP-COMMUNITY-MIB.txt +429 -0
  104. data/lib/telemetry/snmp/mibs/SNMP-FRAMEWORK-MIB.txt +526 -0
  105. data/lib/telemetry/snmp/mibs/SNMP-MPD-MIB.txt +145 -0
  106. data/lib/telemetry/snmp/mibs/SNMP-NOTIFICATION-MIB.txt +589 -0
  107. data/lib/telemetry/snmp/mibs/SNMP-PROXY-MIB.txt +294 -0
  108. data/lib/telemetry/snmp/mibs/SNMP-TARGET-MIB.txt +660 -0
  109. data/lib/telemetry/snmp/mibs/SNMP-USER-BASED-SM-MIB.txt +912 -0
  110. data/lib/telemetry/snmp/mibs/SNMP-USM-AES-MIB.txt +62 -0
  111. data/lib/telemetry/snmp/mibs/SNMP-USM-DH-OBJECTS-MIB.txt +532 -0
  112. data/lib/telemetry/snmp/mibs/SNMP-VIEW-BASED-ACM-MIB.txt +830 -0
  113. data/lib/telemetry/snmp/mibs/SNMPv2-CONF.txt +322 -0
  114. data/lib/telemetry/snmp/mibs/SNMPv2-MIB.txt +854 -0
  115. data/lib/telemetry/snmp/mibs/SNMPv2-SMI.txt +344 -0
  116. data/lib/telemetry/snmp/mibs/SNMPv2-TC.txt +772 -0
  117. data/lib/telemetry/snmp/mibs/SNMPv2-TM.txt +176 -0
  118. data/lib/telemetry/snmp/mibs/TCP-MIB.txt +785 -0
  119. data/lib/telemetry/snmp/mibs/TRANSPORT-ADDRESS-MIB.txt +421 -0
  120. data/lib/telemetry/snmp/mibs/TUNNEL-MIB.txt +738 -0
  121. data/lib/telemetry/snmp/mibs/UCD-DEMO-MIB.txt +74 -0
  122. data/lib/telemetry/snmp/mibs/UCD-DISKIO-MIB.txt +171 -0
  123. data/lib/telemetry/snmp/mibs/UCD-DLMOD-MIB.txt +124 -0
  124. data/lib/telemetry/snmp/mibs/UCD-IPFWACC-MIB.txt +327 -0
  125. data/lib/telemetry/snmp/mibs/UCD-SNMP-MIB.txt +1712 -0
  126. data/lib/telemetry/snmp/mibs/UDP-MIB.txt +549 -0
  127. data/lib/telemetry/snmp/publisher.rb +130 -0
  128. data/lib/telemetry/snmp/version.rb +7 -0
  129. data/sourcehawk.yml +4 -0
  130. data/telemetry-snmp.gemspec +48 -0
  131. metadata +456 -0
@@ -0,0 +1,123 @@
1
+ IANA-LANGUAGE-MIB DEFINITIONS ::= BEGIN
2
+
3
+ IMPORTS
4
+ MODULE-IDENTITY, OBJECT-IDENTITY, mib-2
5
+ FROM SNMPv2-SMI;
6
+
7
+ ianaLanguages MODULE-IDENTITY
8
+ LAST-UPDATED "200005100000Z" -- May 10, 2000
9
+ ORGANIZATION "IANA"
10
+ CONTACT-INFO
11
+ "Internet Assigned Numbers Authority (IANA)
12
+
13
+ Postal: ICANN
14
+ 4676 Admiralty Way, Suite 330
15
+ Marina del Rey, CA 90292
16
+
17
+ Tel: +1 310 823 9358 x20
18
+ E-Mail: iana&iana.org"
19
+ DESCRIPTION
20
+ "The MIB module registers object identifier values for
21
+ well-known programming and scripting languages. Every
22
+ language registration MUST describe the format used
23
+ when transferring scripts written in this language.
24
+
25
+ Any additions or changes to the contents of this MIB
26
+ module require Designated Expert Review as defined in
27
+ the Guidelines for Writing IANA Considerations Section
28
+ document. The Designated Expert will be selected by
29
+ the IESG Area Director of the OPS Area.
30
+
31
+ Note, this module does not have to register all possible
32
+ languages since languages are identified by object
33
+ identifier values. It is therefore possible to registered
34
+ languages in private OID trees. The references given below are not
35
+ normative with regard to the language version. Other
36
+ references might be better suited to describe some newer
37
+ versions of this language. The references are only
38
+ provided as `a pointer into the right direction'."
39
+
40
+ -- Revision log, in reverse chronological order
41
+
42
+ REVISION "200005100000Z" -- May 10, 2000
43
+ DESCRIPTION "Import mib-2 instead of experimental, so that
44
+ this module compiles"
45
+
46
+ REVISION "199909090900Z" -- September 9, 1999
47
+ DESCRIPTION "Initial version as published at time of
48
+ publication of RFC 2591."
49
+ ::= { mib-2 73 }
50
+
51
+ ianaLangJavaByteCode OBJECT-IDENTITY
52
+ STATUS current
53
+ DESCRIPTION
54
+ "Java byte code to be processed by a Java virtual machine.
55
+ A script written in Java byte code is transferred by using
56
+ the Java archive file format (JAR)."
57
+ REFERENCE
58
+ "The Java Virtual Machine Specification.
59
+ ISBN 0-201-63452-X"
60
+ ::= { ianaLanguages 1 }
61
+
62
+ ianaLangTcl OBJECT-IDENTITY
63
+ STATUS current
64
+ DESCRIPTION
65
+ "The Tool Command Language (Tcl). A script written in the
66
+ Tcl language is transferred in Tcl source code format."
67
+ REFERENCE
68
+ "Tcl and the Tk Toolkit.
69
+ ISBN 0-201-63337-X"
70
+ ::= { ianaLanguages 2 }
71
+
72
+ ianaLangPerl OBJECT-IDENTITY
73
+ STATUS current
74
+ DESCRIPTION
75
+ "The Perl language. A script written in the Perl language
76
+ is transferred in Perl source code format."
77
+ REFERENCE
78
+ "Programming Perl.
79
+ ISBN 1-56592-149-6"
80
+ ::= { ianaLanguages 3 }
81
+
82
+ ianaLangScheme OBJECT-IDENTITY
83
+ STATUS current
84
+ DESCRIPTION
85
+ "The Scheme language. A script written in the Scheme
86
+ language is transferred in Scheme source code format."
87
+ REFERENCE
88
+ "The Revised^4 Report on the Algorithmic Language Scheme.
89
+ MIT Press"
90
+ ::= { ianaLanguages 4 }
91
+
92
+ ianaLangSRSL OBJECT-IDENTITY
93
+ STATUS current
94
+ DESCRIPTION
95
+ "The SNMP Script Language defined by SNMP Research. A
96
+ script written in the SNMP Script Language is transferred
97
+ in the SNMP Script Language source code format."
98
+ ::= { ianaLanguages 5 }
99
+
100
+ ianaLangPSL OBJECT-IDENTITY
101
+ STATUS current
102
+ DESCRIPTION
103
+ "The Patrol Script Language defined by BMC Software. A script
104
+ written in the Patrol Script Language is transferred in the
105
+ Patrol Script Language source code format."
106
+ REFERENCE
107
+ "PATROL Script Language Reference Manual, Version 3.0,
108
+ November 30, 1995. BMC Software, Inc. 2101 City West Blvd.,
109
+ Houston, Texas 77042."
110
+ ::= { ianaLanguages 6 }
111
+
112
+ ianaLangSMSL OBJECT-IDENTITY
113
+ STATUS current
114
+ DESCRIPTION
115
+ "The Systems Management Scripting Language. A script written
116
+ in the SMSL language is transferred in the SMSL source code
117
+ format."
118
+ REFERENCE
119
+ "ISO/ITU Command Sequencer.
120
+ ISO 10164-21 or ITU X.753"
121
+ ::= { ianaLanguages 7 }
122
+
123
+ END
@@ -0,0 +1,91 @@
1
+ IANA-RTPROTO-MIB DEFINITIONS ::= BEGIN
2
+
3
+ IMPORTS
4
+ MODULE-IDENTITY, mib-2 FROM SNMPv2-SMI
5
+ TEXTUAL-CONVENTION FROM SNMPv2-TC;
6
+
7
+ ianaRtProtoMIB MODULE-IDENTITY
8
+ LAST-UPDATED "201107220000Z" -- July 22, 2011
9
+ ORGANIZATION "IANA"
10
+ CONTACT-INFO
11
+ " Internet Assigned Numbers Authority
12
+ Internet Corporation for Assigned Names and Numbers
13
+ 4676 Admiralty Way, Suite 330
14
+ Marina del Rey, CA 90292-6601
15
+
16
+ Phone: +1 310 823 9358
17
+ EMail: iana&iana.org"
18
+ DESCRIPTION
19
+ "This MIB module defines the IANAipRouteProtocol and
20
+ IANAipMRouteProtocol textual conventions for use in MIBs
21
+ which need to identify unicast or multicast routing
22
+ mechanisms.
23
+
24
+ Any additions or changes to the contents of this MIB module
25
+ require either publication of an RFC, or Designated Expert
26
+ Review as defined in RFC 2434, Guidelines for Writing an
27
+ IANA Considerations Section in RFCs. The Designated Expert
28
+ will be selected by the IESG Area Director(s) of the Routing
29
+ Area."
30
+
31
+ REVISION "201107220000Z" -- July 22, 2011
32
+ DESCRIPTION "Added rpl(18) ."
33
+
34
+ REVISION "200009260000Z" -- September 26, 2000
35
+ DESCRIPTION "Original version, published in coordination
36
+ with RFC 2932."
37
+ ::= { mib-2 84 }
38
+
39
+ IANAipRouteProtocol ::= TEXTUAL-CONVENTION
40
+ STATUS current
41
+ DESCRIPTION
42
+ "A mechanism for learning routes. Inclusion of values for
43
+ routing protocols is not intended to imply that those
44
+ protocols need be supported."
45
+ SYNTAX INTEGER {
46
+ other (1), -- not specified
47
+ local (2), -- local interface
48
+ netmgmt (3), -- static route
49
+ icmp (4), -- result of ICMP Redirect
50
+
51
+ -- the following are all dynamic
52
+ -- routing protocols
53
+
54
+ egp (5), -- Exterior Gateway Protocol
55
+ ggp (6), -- Gateway-Gateway Protocol
56
+ hello (7), -- FuzzBall HelloSpeak
57
+ rip (8), -- Berkeley RIP or RIP-II
58
+ isIs (9), -- Dual IS-IS
59
+ esIs (10), -- ISO 9542
60
+ ciscoIgrp (11), -- Cisco IGRP
61
+ bbnSpfIgp (12), -- BBN SPF IGP
62
+ ospf (13), -- Open Shortest Path First
63
+ bgp (14), -- Border Gateway Protocol
64
+ idpr (15), -- InterDomain Policy Routing
65
+ ciscoEigrp (16), -- Cisco EIGRP
66
+ dvmrp (17), -- DVMRP
67
+ rpl (18) -- RPL [RFC-ietf-roll-rpl-19]
68
+ }
69
+
70
+ IANAipMRouteProtocol ::= TEXTUAL-CONVENTION
71
+ STATUS current
72
+ DESCRIPTION
73
+ "The multicast routing protocol. Inclusion of values for
74
+ multicast routing protocols is not intended to imply that
75
+ those protocols need be supported."
76
+ SYNTAX INTEGER {
77
+ other(1), -- none of the following
78
+ local(2), -- e.g., manually configured
79
+ netmgmt(3), -- set via net.mgmt protocol
80
+ dvmrp(4),
81
+ mospf(5),
82
+ pimSparseDense(6), -- PIMv1, both DM and SM
83
+ cbt(7),
84
+ pimSparseMode(8), -- PIM-SM
85
+ pimDenseMode(9), -- PIM-DM
86
+ igmpOnly(10),
87
+ bgmp(11),
88
+ msdp(12)
89
+ }
90
+
91
+ END
@@ -0,0 +1,619 @@
1
+ IANAifType-MIB DEFINITIONS ::= BEGIN
2
+
3
+ IMPORTS
4
+ MODULE-IDENTITY, mib-2 FROM SNMPv2-SMI
5
+ TEXTUAL-CONVENTION FROM SNMPv2-TC;
6
+
7
+ ianaifType MODULE-IDENTITY
8
+ LAST-UPDATED "201110260000Z" -- October 26, 2011
9
+ ORGANIZATION "IANA"
10
+ CONTACT-INFO " Internet Assigned Numbers Authority
11
+
12
+ Postal: ICANN
13
+ 4676 Admiralty Way, Suite 330
14
+ Marina del Rey, CA 90292
15
+
16
+ Tel: +1 310 823 9358
17
+ E-Mail: iana&iana.org"
18
+ DESCRIPTION "This MIB module defines the IANAifType Textual
19
+ Convention, and thus the enumerated values of
20
+ the ifType object defined in MIB-II's ifTable."
21
+
22
+ REVISION "201110260000Z" -- October 26, 2011
23
+ DESCRIPTION "Registration of new IANAifType 262."
24
+
25
+ REVISION "201109070000Z" -- September 7, 2011
26
+ DESCRIPTION "Registration of new IANAifTypes 260 and 261."
27
+
28
+ REVISION "201107220000Z" -- July 22, 2011
29
+ DESCRIPTION "Registration of new IANAifType 259."
30
+
31
+ REVISION "201106030000Z" -- June 03, 2011
32
+ DESCRIPTION "Registration of new IANAifType 258."
33
+
34
+ REVISION "201009210000Z" -- September 21, 2010
35
+ DESCRIPTION "Registration of new IANAifTypes 256 and 257."
36
+
37
+ REVISION "201007210000Z" -- July 21, 2010
38
+ DESCRIPTION "Registration of new IANAifType 255."
39
+
40
+ REVISION "201002110000Z" -- February 11, 2010
41
+ DESCRIPTION "Registration of new IANAifType 254."
42
+
43
+ REVISION "201002080000Z" -- February 08, 2010
44
+ DESCRIPTION "Registration of new IANAifTypes 252 and 253."
45
+
46
+ REVISION "200905060000Z" -- May 06, 2009
47
+ DESCRIPTION "Registration of new IANAifType 251."
48
+
49
+ REVISION "200902060000Z" -- February 06, 2009
50
+ DESCRIPTION "Registration of new IANAtunnelType 15."
51
+
52
+ REVISION "200810090000Z" -- October 09, 2008
53
+ DESCRIPTION "Registration of new IANAifType 250."
54
+
55
+ REVISION "200808120000Z" -- August 12, 2008
56
+ DESCRIPTION "Registration of new IANAifType 249."
57
+
58
+ REVISION "200807220000Z" -- July 22, 2008
59
+ DESCRIPTION "Registration of new IANAifTypes 247 and 248."
60
+
61
+ REVISION "200806240000Z" -- June 24, 2008
62
+ DESCRIPTION "Registration of new IANAifType 246."
63
+
64
+ REVISION "200805290000Z" -- May 29, 2008
65
+ DESCRIPTION "Registration of new IANAifType 245."
66
+
67
+ REVISION "200709130000Z" -- September 13, 2007
68
+ DESCRIPTION "Registration of new IANAifTypes 243 and 244."
69
+
70
+ REVISION "200705290000Z" -- May 29, 2007
71
+ DESCRIPTION "Changed the description for IANAifType 228."
72
+
73
+ REVISION "200703080000Z" -- March 08, 2007
74
+ DESCRIPTION "Registration of new IANAifType 242."
75
+
76
+ REVISION "200701230000Z" -- January 23, 2007
77
+ DESCRIPTION "Registration of new IANAifTypes 239, 240, and 241."
78
+
79
+ REVISION "200610170000Z" -- October 17, 2006
80
+ DESCRIPTION "Deprecated/Obsoleted IANAifType 230. Registration of
81
+ IANAifType 238."
82
+
83
+ REVISION "200609250000Z" -- September 25, 2006
84
+ DESCRIPTION "Changed the description for IANA ifType
85
+ 184 and added new IANA ifType 237."
86
+
87
+ REVISION "200608170000Z" -- August 17, 2006
88
+ DESCRIPTION "Changed the descriptions for IANAifTypes
89
+ 20 and 21."
90
+
91
+ REVISION "200608110000Z" -- August 11, 2006
92
+ DESCRIPTION "Changed the descriptions for IANAifTypes
93
+ 7, 11, 62, 69, and 117."
94
+
95
+ REVISION "200607250000Z" -- July 25, 2006
96
+ DESCRIPTION "Registration of new IANA ifType 236."
97
+
98
+ REVISION "200606140000Z" -- June 14, 2006
99
+ DESCRIPTION "Registration of new IANA ifType 235."
100
+
101
+ REVISION "200603310000Z" -- March 31, 2006
102
+ DESCRIPTION "Registration of new IANA ifType 234."
103
+
104
+ REVISION "200603300000Z" -- March 30, 2006
105
+ DESCRIPTION "Registration of new IANA ifType 233."
106
+
107
+ REVISION "200512220000Z" -- December 22, 2005
108
+ DESCRIPTION "Registration of new IANA ifTypes 231 and 232."
109
+
110
+ REVISION "200510100000Z" -- October 10, 2005
111
+ DESCRIPTION "Registration of new IANA ifType 230."
112
+
113
+ REVISION "200509090000Z" -- September 09, 2005
114
+ DESCRIPTION "Registration of new IANA ifType 229."
115
+
116
+ REVISION "200505270000Z" -- May 27, 2005
117
+ DESCRIPTION "Registration of new IANA ifType 228."
118
+
119
+ REVISION "200503030000Z" -- March 3, 2005
120
+ DESCRIPTION "Added the IANAtunnelType TC and deprecated
121
+ IANAifType sixToFour (215) per RFC4087."
122
+
123
+ REVISION "200411220000Z" -- November 22, 2004
124
+ DESCRIPTION "Registration of new IANA ifType 227 per RFC4631."
125
+
126
+ REVISION "200406170000Z" -- June 17, 2004
127
+ DESCRIPTION "Registration of new IANA ifType 226."
128
+
129
+ REVISION "200405120000Z" -- May 12, 2004
130
+ DESCRIPTION "Added description for IANAifType 6, and
131
+ changed the descriptions for IANAifTypes
132
+ 180, 181, and 182."
133
+
134
+ REVISION "200405070000Z" -- May 7, 2004
135
+ DESCRIPTION "Registration of new IANAifType 225."
136
+
137
+ REVISION "200308250000Z" -- Aug 25, 2003
138
+ DESCRIPTION "Deprecated IANAifTypes 7 and 11. Obsoleted
139
+ IANAifTypes 62, 69, and 117. ethernetCsmacd (6)
140
+ should be used instead of these values"
141
+
142
+ REVISION "200308180000Z" -- Aug 18, 2003
143
+ DESCRIPTION "Registration of new IANAifType
144
+ 224."
145
+
146
+ REVISION "200308070000Z" -- Aug 7, 2003
147
+ DESCRIPTION "Registration of new IANAifTypes
148
+ 222 and 223."
149
+
150
+ REVISION "200303180000Z" -- Mar 18, 2003
151
+ DESCRIPTION "Registration of new IANAifType
152
+ 221."
153
+
154
+ REVISION "200301130000Z" -- Jan 13, 2003
155
+ DESCRIPTION "Registration of new IANAifType
156
+ 220."
157
+
158
+ REVISION "200210170000Z" -- Oct 17, 2002
159
+ DESCRIPTION "Registration of new IANAifType
160
+ 219."
161
+
162
+ REVISION "200207160000Z" -- Jul 16, 2002
163
+ DESCRIPTION "Registration of new IANAifTypes
164
+ 217 and 218."
165
+
166
+ REVISION "200207100000Z" -- Jul 10, 2002
167
+ DESCRIPTION "Registration of new IANAifTypes
168
+ 215 and 216."
169
+
170
+ REVISION "200206190000Z" -- Jun 19, 2002
171
+ DESCRIPTION "Registration of new IANAifType
172
+ 214."
173
+
174
+ REVISION "200201040000Z" -- Jan 4, 2002
175
+ DESCRIPTION "Registration of new IANAifTypes
176
+ 211, 212 and 213."
177
+
178
+ REVISION "200112200000Z" -- Dec 20, 2001
179
+ DESCRIPTION "Registration of new IANAifTypes
180
+ 209 and 210."
181
+
182
+ REVISION "200111150000Z" -- Nov 15, 2001
183
+ DESCRIPTION "Registration of new IANAifTypes
184
+ 207 and 208."
185
+
186
+ REVISION "200111060000Z" -- Nov 6, 2001
187
+ DESCRIPTION "Registration of new IANAifType
188
+ 206."
189
+
190
+ REVISION "200111020000Z" -- Nov 2, 2001
191
+ DESCRIPTION "Registration of new IANAifType
192
+ 205."
193
+
194
+ REVISION "200110160000Z" -- Oct 16, 2001
195
+ DESCRIPTION "Registration of new IANAifTypes
196
+ 199, 200, 201, 202, 203, and 204."
197
+
198
+ REVISION "200109190000Z" -- Sept 19, 2001
199
+ DESCRIPTION "Registration of new IANAifType
200
+ 198."
201
+
202
+ REVISION "200105110000Z" -- May 11, 2001
203
+ DESCRIPTION "Registration of new IANAifType
204
+ 197."
205
+
206
+ REVISION "200101120000Z" -- Jan 12, 2001
207
+ DESCRIPTION "Registration of new IANAifTypes
208
+ 195 and 196."
209
+
210
+ REVISION "200012190000Z" -- Dec 19, 2000
211
+ DESCRIPTION "Registration of new IANAifTypes
212
+ 193 and 194."
213
+
214
+ REVISION "200012070000Z" -- Dec 07, 2000
215
+ DESCRIPTION "Registration of new IANAifTypes
216
+ 191 and 192."
217
+
218
+ REVISION "200012040000Z" -- Dec 04, 2000
219
+ DESCRIPTION "Registration of new IANAifType
220
+ 190."
221
+
222
+ REVISION "200010170000Z" -- Oct 17, 2000
223
+ DESCRIPTION "Registration of new IANAifTypes
224
+ 188 and 189."
225
+
226
+ REVISION "200010020000Z" -- Oct 02, 2000
227
+ DESCRIPTION "Registration of new IANAifType 187."
228
+
229
+ REVISION "200009010000Z" -- Sept 01, 2000
230
+ DESCRIPTION "Registration of new IANAifTypes
231
+ 184, 185, and 186."
232
+
233
+ REVISION "200008240000Z" -- Aug 24, 2000
234
+ DESCRIPTION "Registration of new IANAifType 183."
235
+
236
+ REVISION "200008230000Z" -- Aug 23, 2000
237
+ DESCRIPTION "Registration of new IANAifTypes
238
+ 174-182."
239
+
240
+ REVISION "200008220000Z" -- Aug 22, 2000
241
+ DESCRIPTION "Registration of new IANAifTypes 170,
242
+ 171, 172 and 173."
243
+
244
+ REVISION "200004250000Z" -- Apr 25, 2000
245
+ DESCRIPTION "Registration of new IANAifTypes 168 and 169."
246
+
247
+ REVISION "200003060000Z" -- Mar 6, 2000
248
+ DESCRIPTION "Fixed a missing semi-colon in the IMPORT.
249
+ Also cleaned up the REVISION log a bit.
250
+ It is not complete, but from now on it will
251
+ be maintained and kept up to date with each
252
+ change to this MIB module."
253
+
254
+ REVISION "199910081430Z" -- Oct 08, 1999
255
+ DESCRIPTION "Include new name assignments up to cnr(85).
256
+ This is the first version available via the WWW
257
+ at: ftp://ftp.isi.edu/mib/ianaiftype.mib"
258
+
259
+ REVISION "199401310000Z" -- Jan 31, 1994
260
+ DESCRIPTION "Initial version of this MIB as published in
261
+ RFC 1573."
262
+ ::= { mib-2 30 }
263
+
264
+ IANAifType ::= TEXTUAL-CONVENTION
265
+ STATUS current
266
+ DESCRIPTION
267
+ "This data type is used as the syntax of the ifType
268
+ object in the (updated) definition of MIB-II's
269
+ ifTable.
270
+
271
+ The definition of this textual convention with the
272
+ addition of newly assigned values is published
273
+ periodically by the IANA, in either the Assigned
274
+ Numbers RFC, or some derivative of it specific to
275
+ Internet Network Management number assignments. (The
276
+ latest arrangements can be obtained by contacting the
277
+ IANA.)
278
+
279
+ Requests for new values should be made to IANA via
280
+ email (iana&iana.org).
281
+
282
+ The relationship between the assignment of ifType
283
+ values and of OIDs to particular media-specific MIBs
284
+ is solely the purview of IANA and is subject to change
285
+ without notice. Quite often, a media-specific MIB's
286
+ OID-subtree assignment within MIB-II's 'transmission'
287
+ subtree will be the same as its ifType value.
288
+ However, in some circumstances this will not be the
289
+ case, and implementors must not pre-assume any
290
+ specific relationship between ifType values and
291
+ transmission subtree OIDs."
292
+ SYNTAX INTEGER {
293
+ other(1), -- none of the following
294
+ regular1822(2),
295
+ hdh1822(3),
296
+ ddnX25(4),
297
+ rfc877x25(5),
298
+ ethernetCsmacd(6), -- for all ethernet-like interfaces,
299
+ -- regardless of speed, as per RFC3635
300
+ iso88023Csmacd(7), -- Deprecated via RFC3635
301
+ -- ethernetCsmacd (6) should be used instead
302
+ iso88024TokenBus(8),
303
+ iso88025TokenRing(9),
304
+ iso88026Man(10),
305
+ starLan(11), -- Deprecated via RFC3635
306
+ -- ethernetCsmacd (6) should be used instead
307
+ proteon10Mbit(12),
308
+ proteon80Mbit(13),
309
+ hyperchannel(14),
310
+ fddi(15),
311
+ lapb(16),
312
+ sdlc(17),
313
+ ds1(18), -- DS1-MIB
314
+ e1(19), -- Obsolete see DS1-MIB
315
+ basicISDN(20), -- no longer used
316
+ -- see also RFC2127
317
+ primaryISDN(21), -- no longer used
318
+ -- see also RFC2127
319
+ propPointToPointSerial(22), -- proprietary serial
320
+ ppp(23),
321
+ softwareLoopback(24),
322
+ eon(25), -- CLNP over IP
323
+ ethernet3Mbit(26),
324
+ nsip(27), -- XNS over IP
325
+ slip(28), -- generic SLIP
326
+ ultra(29), -- ULTRA technologies
327
+ ds3(30), -- DS3-MIB
328
+ sip(31), -- SMDS, coffee
329
+ frameRelay(32), -- DTE only.
330
+ rs232(33),
331
+ para(34), -- parallel-port
332
+ arcnet(35), -- arcnet
333
+ arcnetPlus(36), -- arcnet plus
334
+ atm(37), -- ATM cells
335
+ miox25(38),
336
+ sonet(39), -- SONET or SDH
337
+ x25ple(40),
338
+ iso88022llc(41),
339
+ localTalk(42),
340
+ smdsDxi(43),
341
+ frameRelayService(44), -- FRNETSERV-MIB
342
+ v35(45),
343
+ hssi(46),
344
+ hippi(47),
345
+ modem(48), -- Generic modem
346
+ aal5(49), -- AAL5 over ATM
347
+ sonetPath(50),
348
+ sonetVT(51),
349
+ smdsIcip(52), -- SMDS InterCarrier Interface
350
+ propVirtual(53), -- proprietary virtual/internal
351
+ propMultiplexor(54),-- proprietary multiplexing
352
+ ieee80212(55), -- 100BaseVG
353
+ fibreChannel(56), -- Fibre Channel
354
+ hippiInterface(57), -- HIPPI interfaces
355
+ frameRelayInterconnect(58), -- Obsolete, use either
356
+ -- frameRelay(32) or
357
+ -- frameRelayService(44).
358
+ aflane8023(59), -- ATM Emulated LAN for 802.3
359
+ aflane8025(60), -- ATM Emulated LAN for 802.5
360
+ cctEmul(61), -- ATM Emulated circuit
361
+ fastEther(62), -- Obsoleted via RFC3635
362
+ -- ethernetCsmacd (6) should be used instead
363
+ isdn(63), -- ISDN and X.25
364
+ v11(64), -- CCITT V.11/X.21
365
+ v36(65), -- CCITT V.36
366
+ g703at64k(66), -- CCITT G703 at 64Kbps
367
+ g703at2mb(67), -- Obsolete see DS1-MIB
368
+ qllc(68), -- SNA QLLC
369
+ fastEtherFX(69), -- Obsoleted via RFC3635
370
+ -- ethernetCsmacd (6) should be used instead
371
+ channel(70), -- channel
372
+ ieee80211(71), -- radio spread spectrum
373
+ ibm370parChan(72), -- IBM System 360/370 OEMI Channel
374
+ escon(73), -- IBM Enterprise Systems Connection
375
+ dlsw(74), -- Data Link Switching
376
+ isdns(75), -- ISDN S/T interface
377
+ isdnu(76), -- ISDN U interface
378
+ lapd(77), -- Link Access Protocol D
379
+ ipSwitch(78), -- IP Switching Objects
380
+ rsrb(79), -- Remote Source Route Bridging
381
+ atmLogical(80), -- ATM Logical Port
382
+ ds0(81), -- Digital Signal Level 0
383
+ ds0Bundle(82), -- group of ds0s on the same ds1
384
+ bsc(83), -- Bisynchronous Protocol
385
+ async(84), -- Asynchronous Protocol
386
+ cnr(85), -- Combat Net Radio
387
+ iso88025Dtr(86), -- ISO 802.5r DTR
388
+ eplrs(87), -- Ext Pos Loc Report Sys
389
+ arap(88), -- Appletalk Remote Access Protocol
390
+ propCnls(89), -- Proprietary Connectionless Protocol
391
+ hostPad(90), -- CCITT-ITU X.29 PAD Protocol
392
+ termPad(91), -- CCITT-ITU X.3 PAD Facility
393
+ frameRelayMPI(92), -- Multiproto Interconnect over FR
394
+ x213(93), -- CCITT-ITU X213
395
+ adsl(94), -- Asymmetric Digital Subscriber Loop
396
+ radsl(95), -- Rate-Adapt. Digital Subscriber Loop
397
+ sdsl(96), -- Symmetric Digital Subscriber Loop
398
+ vdsl(97), -- Very H-Speed Digital Subscrib. Loop
399
+ iso88025CRFPInt(98), -- ISO 802.5 CRFP
400
+ myrinet(99), -- Myricom Myrinet
401
+ voiceEM(100), -- voice recEive and transMit
402
+ voiceFXO(101), -- voice Foreign Exchange Office
403
+ voiceFXS(102), -- voice Foreign Exchange Station
404
+ voiceEncap(103), -- voice encapsulation
405
+ voiceOverIp(104), -- voice over IP encapsulation
406
+ atmDxi(105), -- ATM DXI
407
+ atmFuni(106), -- ATM FUNI
408
+ atmIma (107), -- ATM IMA
409
+ pppMultilinkBundle(108), -- PPP Multilink Bundle
410
+ ipOverCdlc (109), -- IBM ipOverCdlc
411
+ ipOverClaw (110), -- IBM Common Link Access to Workstn
412
+ stackToStack (111), -- IBM stackToStack
413
+ virtualIpAddress (112), -- IBM VIPA
414
+ mpc (113), -- IBM multi-protocol channel support
415
+ ipOverAtm (114), -- IBM ipOverAtm
416
+ iso88025Fiber (115), -- ISO 802.5j Fiber Token Ring
417
+ tdlc (116), -- IBM twinaxial data link control
418
+ gigabitEthernet (117), -- Obsoleted via RFC3635
419
+ -- ethernetCsmacd (6) should be used instead
420
+ hdlc (118), -- HDLC
421
+ lapf (119), -- LAP F
422
+ v37 (120), -- V.37
423
+ x25mlp (121), -- Multi-Link Protocol
424
+ x25huntGroup (122), -- X25 Hunt Group
425
+ transpHdlc (123), -- Transp HDLC
426
+ interleave (124), -- Interleave channel
427
+ fast (125), -- Fast channel
428
+ ip (126), -- IP (for APPN HPR in IP networks)
429
+ docsCableMaclayer (127), -- CATV Mac Layer
430
+ docsCableDownstream (128), -- CATV Downstream interface
431
+ docsCableUpstream (129), -- CATV Upstream interface
432
+ a12MppSwitch (130), -- Avalon Parallel Processor
433
+ tunnel (131), -- Encapsulation interface
434
+ coffee (132), -- coffee pot
435
+ ces (133), -- Circuit Emulation Service
436
+ atmSubInterface (134), -- ATM Sub Interface
437
+ l2vlan (135), -- Layer 2 Virtual LAN using 802.1Q
438
+ l3ipvlan (136), -- Layer 3 Virtual LAN using IP
439
+ l3ipxvlan (137), -- Layer 3 Virtual LAN using IPX
440
+ digitalPowerline (138), -- IP over Power Lines
441
+ mediaMailOverIp (139), -- Multimedia Mail over IP
442
+ dtm (140), -- Dynamic syncronous Transfer Mode
443
+ dcn (141), -- Data Communications Network
444
+ ipForward (142), -- IP Forwarding Interface
445
+ msdsl (143), -- Multi-rate Symmetric DSL
446
+ ieee1394 (144), -- IEEE1394 High Performance Serial Bus
447
+ if-gsn (145), -- HIPPI-6400
448
+ dvbRccMacLayer (146), -- DVB-RCC MAC Layer
449
+ dvbRccDownstream (147), -- DVB-RCC Downstream Channel
450
+ dvbRccUpstream (148), -- DVB-RCC Upstream Channel
451
+ atmVirtual (149), -- ATM Virtual Interface
452
+ mplsTunnel (150), -- MPLS Tunnel Virtual Interface
453
+ srp (151), -- Spatial Reuse Protocol
454
+ voiceOverAtm (152), -- Voice Over ATM
455
+ voiceOverFrameRelay (153), -- Voice Over Frame Relay
456
+ idsl (154), -- Digital Subscriber Loop over ISDN
457
+ compositeLink (155), -- Avici Composite Link Interface
458
+ ss7SigLink (156), -- SS7 Signaling Link
459
+ propWirelessP2P (157), -- Prop. P2P wireless interface
460
+ frForward (158), -- Frame Forward Interface
461
+ rfc1483 (159), -- Multiprotocol over ATM AAL5
462
+ usb (160), -- USB Interface
463
+ ieee8023adLag (161), -- IEEE 802.3ad Link Aggregate
464
+ bgppolicyaccounting (162), -- BGP Policy Accounting
465
+ frf16MfrBundle (163), -- FRF .16 Multilink Frame Relay
466
+ h323Gatekeeper (164), -- H323 Gatekeeper
467
+ h323Proxy (165), -- H323 Voice and Video Proxy
468
+ mpls (166), -- MPLS
469
+ mfSigLink (167), -- Multi-frequency signaling link
470
+ hdsl2 (168), -- High Bit-Rate DSL - 2nd generation
471
+ shdsl (169), -- Multirate HDSL2
472
+ ds1FDL (170), -- Facility Data Link 4Kbps on a DS1
473
+ pos (171), -- Packet over SONET/SDH Interface
474
+ dvbAsiIn (172), -- DVB-ASI Input
475
+ dvbAsiOut (173), -- DVB-ASI Output
476
+ plc (174), -- Power Line Communtications
477
+ nfas (175), -- Non Facility Associated Signaling
478
+ tr008 (176), -- TR008
479
+ gr303RDT (177), -- Remote Digital Terminal
480
+ gr303IDT (178), -- Integrated Digital Terminal
481
+ isup (179), -- ISUP
482
+ propDocsWirelessMaclayer (180), -- Cisco proprietary Maclayer
483
+ propDocsWirelessDownstream (181), -- Cisco proprietary Downstream
484
+ propDocsWirelessUpstream (182), -- Cisco proprietary Upstream
485
+ hiperlan2 (183), -- HIPERLAN Type 2 Radio Interface
486
+ propBWAp2Mp (184), -- PropBroadbandWirelessAccesspt2multipt
487
+ -- use of this iftype for IEEE 802.16 WMAN
488
+ -- interfaces as per IEEE Std 802.16f is
489
+ -- deprecated and ifType 237 should be used instead.
490
+ sonetOverheadChannel (185), -- SONET Overhead Channel
491
+ digitalWrapperOverheadChannel (186), -- Digital Wrapper
492
+ aal2 (187), -- ATM adaptation layer 2
493
+ radioMAC (188), -- MAC layer over radio links
494
+ atmRadio (189), -- ATM over radio links
495
+ imt (190), -- Inter Machine Trunks
496
+ mvl (191), -- Multiple Virtual Lines DSL
497
+ reachDSL (192), -- Long Reach DSL
498
+ frDlciEndPt (193), -- Frame Relay DLCI End Point
499
+ atmVciEndPt (194), -- ATM VCI End Point
500
+ opticalChannel (195), -- Optical Channel
501
+ opticalTransport (196), -- Optical Transport
502
+ propAtm (197), -- Proprietary ATM
503
+ voiceOverCable (198), -- Voice Over Cable Interface
504
+ infiniband (199), -- Infiniband
505
+ teLink (200), -- TE Link
506
+ q2931 (201), -- Q.2931
507
+ virtualTg (202), -- Virtual Trunk Group
508
+ sipTg (203), -- SIP Trunk Group
509
+ sipSig (204), -- SIP Signaling
510
+ docsCableUpstreamChannel (205), -- CATV Upstream Channel
511
+ econet (206), -- Acorn Econet
512
+ pon155 (207), -- FSAN 155Mb Symetrical PON interface
513
+ pon622 (208), -- FSAN622Mb Symetrical PON interface
514
+ bridge (209), -- Transparent bridge interface
515
+ linegroup (210), -- Interface common to multiple lines
516
+ voiceEMFGD (211), -- voice E&M Feature Group D
517
+ voiceFGDEANA (212), -- voice FGD Exchange Access North American
518
+ voiceDID (213), -- voice Direct Inward Dialing
519
+ mpegTransport (214), -- MPEG transport interface
520
+ sixToFour (215), -- 6to4 interface (DEPRECATED)
521
+ gtp (216), -- GTP (GPRS Tunneling Protocol)
522
+ pdnEtherLoop1 (217), -- Paradyne EtherLoop 1
523
+ pdnEtherLoop2 (218), -- Paradyne EtherLoop 2
524
+ opticalChannelGroup (219), -- Optical Channel Group
525
+ homepna (220), -- HomePNA ITU-T G.989
526
+ gfp (221), -- Generic Framing Procedure (GFP)
527
+ ciscoISLvlan (222), -- Layer 2 Virtual LAN using Cisco ISL
528
+ actelisMetaLOOP (223), -- Acteleis proprietary MetaLOOP High Speed Link
529
+ fcipLink (224), -- FCIP Link
530
+ rpr (225), -- Resilient Packet Ring Interface Type
531
+ qam (226), -- RF Qam Interface
532
+ lmp (227), -- Link Management Protocol
533
+ cblVectaStar (228), -- Cambridge Broadband Networks Limited VectaStar
534
+ docsCableMCmtsDownstream (229), -- CATV Modular CMTS Downstream Interface
535
+ adsl2 (230), -- Asymmetric Digital Subscriber Loop Version 2
536
+ -- (DEPRECATED/OBSOLETED - please use adsl2plus 238 instead)
537
+ macSecControlledIF (231), -- MACSecControlled
538
+ macSecUncontrolledIF (232), -- MACSecUncontrolled
539
+ aviciOpticalEther (233), -- Avici Optical Ethernet Aggregate
540
+ atmbond (234), -- atmbond
541
+ voiceFGDOS (235), -- voice FGD Operator Services
542
+ mocaVersion1 (236), -- MultiMedia over Coax Alliance (MoCA) Interface
543
+ -- as documented in information provided privately to IANA
544
+ ieee80216WMAN (237), -- IEEE 802.16 WMAN interface
545
+ adsl2plus (238), -- Asymmetric Digital Subscriber Loop Version 2,
546
+ -- Version 2 Plus and all variants
547
+ dvbRcsMacLayer (239), -- DVB-RCS MAC Layer
548
+ dvbTdm (240), -- DVB Satellite TDM
549
+ dvbRcsTdma (241), -- DVB-RCS TDMA
550
+ x86Laps (242), -- LAPS based on ITU-T X.86/Y.1323
551
+ wwanPP (243), -- 3GPP WWAN
552
+ wwanPP2 (244), -- 3GPP2 WWAN
553
+ voiceEBS (245), -- voice P-phone EBS physical interface
554
+ ifPwType (246), -- Pseudowire interface type
555
+ ilan (247), -- Internal LAN on a bridge per IEEE 802.1ap
556
+ pip (248), -- Provider Instance Port on a bridge per IEEE 802.1ah PBB
557
+ aluELP (249), -- Alcatel-Lucent Ethernet Link Protection
558
+ gpon (250), -- Gigabit-capable passive optical networks (G-PON) as per ITU-T G.948
559
+ vdsl2 (251), -- Very high speed digital subscriber line Version 2 (as per ITU-T Recommendation G.993.2)
560
+ capwapDot11Profile (252), -- WLAN Profile Interface
561
+ capwapDot11Bss (253), -- WLAN BSS Interface
562
+ capwapWtpVirtualRadio (254), -- WTP Virtual Radio Interface
563
+ bits (255), -- bitsport
564
+ docsCableUpstreamRfPort (256), -- DOCSIS CATV Upstream RF Port
565
+ cableDownstreamRfPort (257), -- CATV downstream RF port
566
+ vmwareVirtualNic (258), -- VMware Virtual Network Interface
567
+ ieee802154 (259), -- IEEE 802.15.4 WPAN interface
568
+ otnOdu (260), -- OTN Optical Data Unit
569
+ otnOtu (261), -- OTN Optical channel Transport Unit
570
+ ifVfiType (262) -- VPLS Forwarding Instance Interface Type
571
+ }
572
+
573
+ IANAtunnelType ::= TEXTUAL-CONVENTION
574
+ STATUS current
575
+ DESCRIPTION
576
+ "The encapsulation method used by a tunnel. The value
577
+ direct indicates that a packet is encapsulated
578
+ directly within a normal IP header, with no
579
+ intermediate header, and unicast to the remote tunnel
580
+ endpoint (e.g., an RFC 2003 IP-in-IP tunnel, or an RFC
581
+ 1933 IPv6-in-IPv4 tunnel). The value minimal indicates
582
+ that a Minimal Forwarding Header (RFC 2004) is
583
+ inserted between the outer header and the payload
584
+ packet. The value UDP indicates that the payload
585
+ packet is encapsulated within a normal UDP packet
586
+ (e.g., RFC 1234).
587
+
588
+ The values sixToFour, sixOverFour, and isatap
589
+ indicates that an IPv6 packet is encapsulated directly
590
+ within an IPv4 header, with no intermediate header,
591
+ and unicast to the destination determined by the 6to4,
592
+ 6over4, or ISATAP protocol.
593
+
594
+ The remaining protocol-specific values indicate that a
595
+ header of the protocol of that name is inserted
596
+ between the outer header and the payload header.
597
+
598
+ The assignment policy for IANAtunnelType values is
599
+ identical to the policy for assigning IANAifType
600
+ values."
601
+ SYNTAX INTEGER {
602
+ other(1), -- none of the following
603
+ direct(2), -- no intermediate header
604
+ gre(3), -- GRE encapsulation
605
+ minimal(4), -- Minimal encapsulation
606
+ l2tp(5), -- L2TP encapsulation
607
+ pptp(6), -- PPTP encapsulation
608
+ l2f(7), -- L2F encapsulation
609
+ udp(8), -- UDP encapsulation
610
+ atmp(9), -- ATMP encapsulation
611
+ msdp(10), -- MSDP encapsulation
612
+ sixToFour(11), -- 6to4 encapsulation
613
+ sixOverFour(12), -- 6over4 encapsulation
614
+ isatap(13), -- ISATAP encapsulation
615
+ teredo(14), -- Teredo encapsulation
616
+ ipHttps(15) -- IPHTTPS
617
+ }
618
+
619
+ END