summaryrefslogtreecommitdiffstats
path: root/yang/frr-test-module.yang
blob: d85b12ea06ee36adfeae3c56ae6b571407107c4d (plain)
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
module frr-test-module {
  yang-version 1.1;
  namespace "urn:frr-test-module";
  prefix frr-test-module;

  import ietf-inet-types {
    prefix inet;
  }
  import ietf-yang-types {
    prefix yang;
  }
  import frr-interface {
    prefix frr-interface;
  }

  revision 2018-11-26 {
    description
      "Initial revision.";
  }

  container frr-test-module {
    config false;
    container vrfs {
      list vrf {
        key "name";

        leaf name {
          type string;
        }
        container interfaces {
          leaf-list interface {
            type string;
          }
        }
        container routes {
          list route {
            leaf prefix {
              type inet:ipv4-prefix;
            }
            leaf next-hop {
              type inet:ipv4-address;
            }
            leaf interface {
              type string;
            }
            leaf metric {
              type uint8;
            }
            leaf active {
              type empty;
            }
          }
        }
      }
    }
  }
}