blob: 5388b03933d78bcda3ca49e87b8eaab397e6e8d8 [file] [log] [blame]
Sean Condonfae8e662016-12-15 10:25:13 +00001module ietf-inet-types {
2
3 namespace "urn:ietf:params:xml:ns:yang:ietf-inet-types";
4 prefix "inet";
5
6 organization
7 "IETF NETMOD (NETCONF Data Modeling Language) Working Group";
8
9 contact
10 "WG Web: <http://tools.ietf.org/wg/netmod/>
11 WG List: <mailto:netmod@ietf.org>
12
13 WG Chair: David Kessens
14 <mailto:david.kessens@nsn.com>
15
16 WG Chair: Juergen Schoenwaelder
17 <mailto:j.schoenwaelder@jacobs-university.de>
18
19 Editor: Juergen Schoenwaelder
20 <mailto:j.schoenwaelder@jacobs-university.de>";
21
22 description
23 "This module contains a collection of generally useful derived
24 YANG data types for Internet addresses and related things.
25
26 Copyright (c) 2013 IETF Trust and the persons identified as
27 authors of the code. All rights reserved.
28
29 Redistribution and use in source and binary forms, with or
30 without modification, is permitted pursuant to, and subject
31 to the license terms contained in, the Simplified BSD License
32 set forth in Section 4.c of the IETF Trust's Legal Provisions
33 Relating to IETF Documents
34 (http://trustee.ietf.org/license-info).
35
36 This version of this YANG module is part of RFC 6991; see
37 the RFC itself for full legal notices.";
38
39 revision 2013-07-15 {
40 description
41 "This revision adds the following new data types:
42 - ip-address-no-zone
43 - ipv4-address-no-zone
44 - ipv6-address-no-zone";
45 reference
46 "RFC 6991: Common YANG Data Types";
47 }
48
49 revision 2010-09-24 {
50 description
51 "Initial revision.";
52 reference
53 "RFC 6021: Common YANG Data Types";
54 }
55
56 /*** collection of types related to protocol fields ***/
57
58 typedef ip-version {
59 type enumeration {
60 enum unknown {
61 value "0";
62 description
63 "An unknown or unspecified version of the Internet
64 protocol.";
65 }
66 enum ipv4 {
67 value "1";
68 description
69 "The IPv4 protocol as defined in RFC 791.";
70 }
71 enum ipv6 {
72 value "2";
73 description
74 "The IPv6 protocol as defined in RFC 2460.";
75 }
76 }
77 description
78 "This value represents the version of the IP protocol.
79
80 In the value set and its semantics, this type is equivalent
81 to the InetVersion textual convention of the SMIv2.";
82 reference
83 "RFC 791: Internet Protocol
84 RFC 2460: Internet Protocol, Version 6 (IPv6) Specification
85 RFC 4001: Textual Conventions for Internet Network Addresses";
86 }
87
88 typedef dscp {
89 type uint8 {
90 range "0..63";
91 }
92 description
93 "The dscp type represents a Differentiated Services Code Point
94 that may be used for marking packets in a traffic stream.
95 In the value set and its semantics, this type is equivalent
96 to the Dscp textual convention of the SMIv2.";
97 reference
98 "RFC 3289: Management Information Base for the Differentiated
99 Services Architecture
100 RFC 2474: Definition of the Differentiated Services Field
101 (DS Field) in the IPv4 and IPv6 Headers
102 RFC 2780: IANA Allocation Guidelines For Values In
103 the Internet Protocol and Related Headers";
104 }
105
106 typedef ipv6-flow-label {
107 type uint32 {
108 range "0..1048575";
109 }
110 description
111 "The ipv6-flow-label type represents the flow identifier or Flow
112 Label in an IPv6 packet header that may be used to
113 discriminate traffic flows.
114
115 In the value set and its semantics, this type is equivalent
116 to the IPv6FlowLabel textual convention of the SMIv2.";
117 reference
118 "RFC 3595: Textual Conventions for IPv6 Flow Label
119 RFC 2460: Internet Protocol, Version 6 (IPv6) Specification";
120 }
121
122 typedef port-number {
123 type uint16 {
124 range "0..65535";
125 }
126 description
127 "The port-number type represents a 16-bit port number of an
128 Internet transport-layer protocol such as UDP, TCP, DCCP, or
129 SCTP. Port numbers are assigned by IANA. A current list of
130 all assignments is available from <http://www.iana.org/>.
131
132 Note that the port number value zero is reserved by IANA. In
133 situations where the value zero does not make sense, it can
134 be excluded by subtyping the port-number type.
135 In the value set and its semantics, this type is equivalent
136 to the InetPortNumber textual convention of the SMIv2.";
137 reference
138 "RFC 768: User Datagram Protocol
139 RFC 793: Transmission Control Protocol
140 RFC 4960: Stream Control Transmission Protocol
141 RFC 4340: Datagram Congestion Control Protocol (DCCP)
142 RFC 4001: Textual Conventions for Internet Network Addresses";
143 }
144
145 /*** collection of types related to autonomous systems ***/
146
147 typedef as-number {
148 type uint32;
149 description
150 "The as-number type represents autonomous system numbers
151 which identify an Autonomous System (AS). An AS is a set
152 of routers under a single technical administration, using
153 an interior gateway protocol and common metrics to route
154 packets within the AS, and using an exterior gateway
155 protocol to route packets to other ASes. IANA maintains
156 the AS number space and has delegated large parts to the
157 regional registries.
158
159 Autonomous system numbers were originally limited to 16
160 bits. BGP extensions have enlarged the autonomous system
161 number space to 32 bits. This type therefore uses an uint32
162 base type without a range restriction in order to support
163 a larger autonomous system number space.
164
165 In the value set and its semantics, this type is equivalent
166 to the InetAutonomousSystemNumber textual convention of
167 the SMIv2.";
168 reference
169 "RFC 1930: Guidelines for creation, selection, and registration
170 of an Autonomous System (AS)
171 RFC 4271: A Border Gateway Protocol 4 (BGP-4)
172 RFC 4001: Textual Conventions for Internet Network Addresses
173 RFC 6793: BGP Support for Four-Octet Autonomous System (AS)
174 Number Space";
175 }
176
177 /*** collection of types related to IP addresses and hostnames ***/
178
179 typedef ip-address {
180 type union {
181 type inet:ipv4-address;
182 type inet:ipv6-address;
183 }
184 description
185 "The ip-address type represents an IP address and is IP
186 version neutral. The format of the textual representation
187 implies the IP version. This type supports scoped addresses
188 by allowing zone identifiers in the address format.";
189 reference
190 "RFC 4007: IPv6 Scoped Address Architecture";
191 }
192
193 typedef ipv4-address {
194 type string {
195 pattern
196 '(([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\.){3}'
197 + '([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])'
198 + '(%[\p{N}\p{L}]+)?';
199 }
200 description
201 "The ipv4-address type represents an IPv4 address in
202 dotted-quad notation. The IPv4 address may include a zone
203 index, separated by a % sign.
204
205 The zone index is used to disambiguate identical address
206 values. For link-local addresses, the zone index will
207 typically be the interface index number or the name of an
208 interface. If the zone index is not present, the default
209 zone of the device will be used.
210
211 The canonical format for the zone index is the numerical
212 format";
213 }
214
215 typedef ipv6-address {
216 type string {
217 pattern '((:|[0-9a-fA-F]{0,4}):)([0-9a-fA-F]{0,4}:){0,5}'
218 + '((([0-9a-fA-F]{0,4}:)?(:|[0-9a-fA-F]{0,4}))|'
219 + '(((25[0-5]|2[0-4][0-9]|[01]?[0-9]?[0-9])\.){3}'
220 + '(25[0-5]|2[0-4][0-9]|[01]?[0-9]?[0-9])))'
221 + '(%[\p{N}\p{L}]+)?';
222 pattern '(([^:]+:){6}(([^:]+:[^:]+)|(.*\..*)))|'
223 + '((([^:]+:)*[^:]+)?::(([^:]+:)*[^:]+)?)'
224 + '(%.+)?';
225 }
226 description
227 "The ipv6-address type represents an IPv6 address in full,
228 mixed, shortened, and shortened-mixed notation. The IPv6
229 address may include a zone index, separated by a % sign.
230
231 The zone index is used to disambiguate identical address
232 values. For link-local addresses, the zone index will
233 typically be the interface index number or the name of an
234 interface. If the zone index is not present, the default
235 zone of the device will be used.
236
237
238
239 The canonical format of IPv6 addresses uses the textual
240 representation defined in Section 4 of RFC 5952. The
241 canonical format for the zone index is the numerical
242 format as described in Section 11.2 of RFC 4007.";
243 reference
244 "RFC 4291: IP Version 6 Addressing Architecture
245 RFC 4007: IPv6 Scoped Address Architecture
246 RFC 5952: A Recommendation for IPv6 Address Text
247 Representation";
248 }
249
250 typedef ip-address-no-zone {
251 type union {
252 type inet:ipv4-address-no-zone;
253 type inet:ipv6-address-no-zone;
254 }
255 description
256 "The ip-address-no-zone type represents an IP address and is
257 IP version neutral. The format of the textual representation
258 implies the IP version. This type does not support scoped
259 addresses since it does not allow zone identifiers in the
260 address format.";
261 reference
262 "RFC 4007: IPv6 Scoped Address Architecture";
263 }
264
265 typedef ipv4-address-no-zone {
266 type inet:ipv4-address {
267 pattern '[0-9\.]*';
268 }
269 description
270 "An IPv4 address without a zone index. This type, derived from
271 ipv4-address, may be used in situations where the zone is
272 known from the context and hence no zone index is needed.";
273 }
274
275 typedef ipv6-address-no-zone {
276 type inet:ipv6-address {
277 pattern '[0-9a-fA-F:\.]*';
278 }
279 description
280 "An IPv6 address without a zone index. This type, derived from
281 ipv6-address, may be used in situations where the zone is
282 known from the context and hence no zone index is needed.";
283 reference
284 "RFC 4291: IP Version 6 Addressing Architecture
285 RFC 4007: IPv6 Scoped Address Architecture
286 RFC 5952: A Recommendation for IPv6 Address Text
287 Representation";
288 }
289
290 typedef ip-prefix {
291 type union {
292 type inet:ipv4-prefix;
293 type inet:ipv6-prefix;
294 }
295 description
296 "The ip-prefix type represents an IP prefix and is IP
297 version neutral. The format of the textual representations
298 implies the IP version.";
299 }
300
301 typedef ipv4-prefix {
302 type string {
303 pattern
304 '(([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\.){3}'
305 + '([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])'
306 + '/(([0-9])|([1-2][0-9])|(3[0-2]))';
307 }
308 description
309 "The ipv4-prefix type represents an IPv4 address prefix.
310 The prefix length is given by the number following the
311 slash character and must be less than or equal to 32.
312
313 A prefix length value of n corresponds to an IP address
314 mask that has n contiguous 1-bits from the most
315 significant bit (MSB) and all other bits set to 0.
316
317 The canonical format of an IPv4 prefix has all bits of
318 the IPv4 address set to zero that are not part of the
319 IPv4 prefix.";
320 }
321
322 typedef ipv6-prefix {
323 type string {
324 pattern '((:|[0-9a-fA-F]{0,4}):)([0-9a-fA-F]{0,4}:){0,5}'
325 + '((([0-9a-fA-F]{0,4}:)?(:|[0-9a-fA-F]{0,4}))|'
326 + '(((25[0-5]|2[0-4][0-9]|[01]?[0-9]?[0-9])\.){3}'
327 + '(25[0-5]|2[0-4][0-9]|[01]?[0-9]?[0-9])))'
328 + '(/(([0-9])|([0-9]{2})|(1[0-1][0-9])|(12[0-8])))';
329 pattern '(([^:]+:){6}(([^:]+:[^:]+)|(.*\..*)))|'
330 + '((([^:]+:)*[^:]+)?::(([^:]+:)*[^:]+)?)'
331 + '(/.+)';
332 }
333
334
335 description
336 "The ipv6-prefix type represents an IPv6 address prefix.
337 The prefix length is given by the number following the
338 slash character and must be less than or equal to 128.
339
340 A prefix length value of n corresponds to an IP address
341 mask that has n contiguous 1-bits from the most
342 significant bit (MSB) and all other bits set to 0.
343
344 The IPv6 address should have all bits that do not belong
345 to the prefix set to zero.
346
347 The canonical format of an IPv6 prefix has all bits of
348 the IPv6 address set to zero that are not part of the
349 IPv6 prefix. Furthermore, the IPv6 address is represented
350 as defined in Section 4 of RFC 5952.";
351 reference
352 "RFC 5952: A Recommendation for IPv6 Address Text
353 Representation";
354 }
355
356 /*** collection of domain name and URI types ***/
357
358 typedef domain-name {
359 type string {
360 pattern
361 '((([a-zA-Z0-9_]([a-zA-Z0-9\-_]){0,61})?[a-zA-Z0-9]\.)*'
362 + '([a-zA-Z0-9_]([a-zA-Z0-9\-_]){0,61})?[a-zA-Z0-9]\.?)'
363 + '|\.';
364 length "1..253";
365 }
366 description
367 "The domain-name type represents a DNS domain name. The
368 name SHOULD be fully qualified whenever possible.
369
370 Internet domain names are only loosely specified. Section
371 3.5 of RFC 1034 recommends a syntax (modified in Section
372 2.1 of RFC 1123). The pattern above is intended to allow
373 for current practice in domain name use, and some possible
374 future expansion. It is designed to hold various types of
375 domain names, including names used for A or AAAA records
376 (host names) and other records, such as SRV records. Note
377 that Internet host names have a stricter syntax (described
378 in RFC 952) than the DNS recommendations in RFCs 1034 and
379 1123, and that systems that want to store host names in
380 schema nodes using the domain-name type are recommended to
381 adhere to this stricter standard to ensure interoperability.
382
383 The encoding of DNS names in the DNS protocol is limited
384 to 255 characters. Since the encoding consists of labels
385 prefixed by a length bytes and there is a trailing NULL
386 byte, only 253 characters can appear in the textual dotted
387 notation.
388
389 The description clause of schema nodes using the domain-name
390 type MUST describe when and how these names are resolved to
391 IP addresses. Note that the resolution of a domain-name value
392 may require to query multiple DNS records (e.g., A for IPv4
393 and AAAA for IPv6). The order of the resolution process and
394 which DNS record takes precedence can either be defined
395 explicitly or may depend on the configuration of the
396 resolver.
397
398 Domain-name values use the US-ASCII encoding. Their canonical
399 format uses lowercase US-ASCII characters. Internationalized
400 domain names MUST be A-labels as per RFC 5890.";
401 reference
402 "RFC 952: DoD Internet Host Table Specification
403 RFC 1034: Domain Names - Concepts and Facilities
404 RFC 1123: Requirements for Internet Hosts -- Application
405 and Support
406 RFC 2782: A DNS RR for specifying the location of services
407 (DNS SRV)
408 RFC 5890: Internationalized Domain Names in Applications
409 (IDNA): Definitions and Document Framework";
410 }
411
412 typedef host {
413 type union {
414 type inet:ip-address;
415 type inet:domain-name;
416 }
417 description
418 "The host type represents either an IP address or a DNS
419 domain name.";
420 }
421
422 typedef uri {
423 type string;
424 description
425 "The uri type represents a Uniform Resource Identifier
426 (URI) as defined by STD 66.
427
428 Objects using the uri type MUST be in US-ASCII encoding,
429 and MUST be normalized as described by RFC 3986 Sections
430 6.2.1, 6.2.2.1, and 6.2.2.2. All unnecessary
431 percent-encoding is removed, and all case-insensitive
432 characters are set to lowercase except for hexadecimal
433 digits, which are normalized to uppercase as described in
434 Section 6.2.2.1.
435
436 The purpose of this normalization is to help provide
437 unique URIs. Note that this normalization is not
438 sufficient to provide uniqueness. Two URIs that are
439 textually distinct after this normalization may still be
440 equivalent.
441
442 Objects using the uri type may restrict the schemes that
443 they permit. For example, 'data:' and 'urn:' schemes
444 might not be appropriate.
445
446 A zero-length URI is not a valid URI. This can be used to
447 express 'URI absent' where required.
448
449 In the value set and its semantics, this type is equivalent
450 to the Uri SMIv2 textual convention defined in RFC 5017.";
451 reference
452 "RFC 3986: Uniform Resource Identifier (URI): Generic Syntax
453 RFC 3305: Report from the Joint W3C/IETF URI Planning Interest
454 Group: Uniform Resource Identifiers (URIs), URLs,
455 and Uniform Resource Names (URNs): Clarifications
456 and Recommendations
457 RFC 5017: MIB Textual Conventions for Uniform Resource
458 Identifiers (URIs)";
459 }
460
461}