-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathnetgate-route.yang
80 lines (58 loc) · 1.32 KB
/
netgate-route.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
module netgate-route {
yang-version 1.1;
namespace "urn:netgate:xml:yang:netgate-route";
prefix "ngrt";
organization "Netgate";
contact "Web: <http://www.netgate.com>";
description
"Container for routing related YANG models.
Consider carefully when modifying this file. It serves primarily
as a point for the actual models for the routing to attach to
via an augment statement.
Copyright 2017-2020 Rubicon Communications, LLC. All rights reserved.";
revision 2023-02-15 {
description
"TNSR Release 23.02.";
}
revision 2022-10-15 {
description
"TNSR Release 22.10.";
}
revision 2022-02-15 {
description
"TNSR Release 22.02.";
}
revision 2020-06-15 {
description
"TNSR Release 20.06.";
}
revision 2020-02-15 {
description
"TNSR Release 20.02.";
}
revision 2019-02-15 {
description
"TNSR Release 19.02.";
}
revision 2018-12-10 {
description
"Initial revision.";
}
container route-config {
description
"Root container for routing models";
container dynamic {
}
container static {
}
}
container route-state {
config "false";
description
"Root container for routing models";
container dynamic {
}
container static {
}
}
}