-
Notifications
You must be signed in to change notification settings - Fork 0
/
ietf-roll-rpl-statistics.yang
53 lines (43 loc) · 1.39 KB
/
ietf-roll-rpl-statistics.yang
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
module ietf-roll-rpl-statistics {
yang-version 1.1;
namespace
"urn:ietf:params:xml:ns:yang:ietf-roll-rpl-statistics";
prefix "rpl";
import ietf-inet-types {
prefix inet;
description "This import statement is only present to access
the ietf-inet-types extension defined in RFC 6021.";
reference "RFC 6021: Common YANG Data Types;";
}
organization
"IETF ROLL Working Group";
contact
"WG Web: <http://tools.ietf.org/wg/roll/>
WG List: <mailto:[email protected]>
Author: Michael Richardson
<mailto:[email protected]>";
description
"This module defines a YANG module for reporting statistics
from a ROLL routing node.
The key words 'MUST', 'MUST NOT', 'REQUIRED', 'SHALL', 'SHALL NOT',
'SHOULD', 'SHOULD NOT', 'RECOMMENDED', 'MAY', and 'OPTIONAL' in
the module text are to be interpreted as described in RFC 2119.";
revision "YYYY-MM-DD" {
description
"Initial version";
reference
"RFC XXXX: RPL management statistics in COMI format";
}
// Grouping defined for future usage
grouping roll-rpl-statistic {
description
"Grouping to allow reuse/extensions in future work.";
container rpl-statistics {
description "A routing node has a parent and a bunch of children";
leaf parent-node {
type inet:ipv6-address;
description "The current parent node";
}
}
}
}