summaryrefslogtreecommitdiffstats
path: root/v3po/api/src/main/yang/v3po.yang
blob: 785e4814652fbc3443e905f7b480e4cd964f011f (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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
module v3po {
  yang-version 1;
  namespace "urn:opendaylight:params:xml:ns:yang:v3po";
  prefix "v3po";

  revision "2015-01-05" {
    description "Initial revision of v3po model";
  }

  import iana-if-type {
    prefix "ianaift";
  }
  import ietf-interfaces {
    prefix "if";
  }
  import ietf-yang-types {
    prefix "yang";
  }
  import ietf-inet-types {
    prefix "inet";
  }
  import ietf-ip {
    prefix "ip";
  }
  import yang-ext {
    prefix "ext";
  }

  typedef bridge-domain-ref {
    type leafref {
      path "/vpp/bridge-domains/bridge-domain/name";
    }
    description
      "This type is used by to reference a bridge domain table";
  }

  typedef bridged-virtual-interface-ref {
    type leafref {
      path "/if:interfaces/if:interface/l2/bridged-virtual-interface";
    }
    description
      "This type is used by to reference a bridged virtual interface";
  }

  identity vxlan-tunnel {
    base if:interface-type;
  }

  augment /if:interfaces/if:interface {
    ext:augment-identifier "vpp-interface-augmentation";
    container ethernet {
      when "../if:type = 'ianaift:ethernetCsmacd'";
      leaf mtu {
        type uint16 {
          range "64..9216";
        }
        units "octets";
        default 9216;
        description
        "The size, in octets, of the largest packet that the
         hardware interface will send and receive.";
      }
    }
    container routing {
      leaf vrf-id {
        type uint32;
        default 0;
      }
    }
    container vxlan {
      when "../if:type = 'v3po:vxlan-tunnel'";

      leaf src {
        /* mandatory true; */
        type inet:ipv4-address;
      }
      leaf dst {
        /* mandatory true; */
        type inet:ipv4-address;
      }
      leaf vni {
        /* mandatory true; */
        type uint32;
      }
      leaf encap-vrf-id {
        type uint32;
      }
    }
    container l2 {
      description 
      "Parameters for configuring Layer2 features on interfaces.";
      must "(not (../if:ipv4[if:enabled = 'true']/if:address/if:ip) and " +
      "not (../if:ipv6[if:enabled = 'true']/if:address/if:ip))";

      choice interconnection {
        case xconnect-based {
          leaf xconnect-outgoing-interface {
            /* Don't allow selection of this interface */
            must "../../if:name != current()";
            type if:interface-ref;
            description
              "L2 xconnect mode";
          }
        }
        case bridge-based {
          leaf bridge-domain {
            type bridge-domain-ref;
            description
              "Interfaces in a bridge-domain forward packets to other
               interfaces in the same bridge-domain based on
               destination mac address.";
          }
          leaf split-horizon-group {
            when "../bridge-domain";
            type uint8 {
              range "0..255";
            }
            default 0;
            description
              "Interface's split-horizon group. Interfaces in the same
               bridge-domain and split-horizon group can not forward
               packets between each other. ";
          }
          leaf bridged-virtual-interface {
            when "../bridge-domain";
            type boolean;
            default false;
            description
              "Interface forward packets in the bridge-domain
               associated with the BVI.";
          }
        }
      }
    }
  }

  container vpp {
    description
    "VPP config data";

    container bridge-domains {
      list bridge-domain {
        key "name";
        max-elements 1024;

        leaf name {
          type string;
        }
        leaf flood {
          type boolean;
          default true;
          description
          "Enable/disable L2 flooding.";
        }
        leaf forward {
          type boolean;
          default true;
          description
          "Enable/disable L2 forwarding.";
        }
        leaf learn {
          type boolean;
          default true;
          description
          "Enable/disable L2 learning.";
        }
        leaf unknown-unicast-flood {
          type boolean;
          default true;
        }
        leaf arp-termination {
          type boolean;
          default false;
        }
        list l2-fib {
          key "phys-address";
          
          leaf phys-address {
            type yang:phys-address;
          }
          leaf action {
            type enumeration {
              enum "forward";
              enum "filter";
            }
            mandatory true;
          }
          leaf outgoing-interface {
            type if:interface-ref;
          }
        }
      }
    }
  }

  augment /if:interfaces-state/if:interface {
    ext:augment-identifier "vpp-interface-state-augmentation";

    leaf description {
      type string;
    }
    container ethernet {
      when "../if:type = 'ianaift:ethernetCsmacd'";
      leaf mtu {
        type uint16;
      }
      leaf manufacturer-description {
        type string;
      }
      leaf duplex {
        type enumeration {
          enum "half";
          enum "full";
        }
      }
    }
    container vxlan {
      when "../if:type = 'v3po:vxlan-tunnel'";

      leaf src {
        type inet:ipv4-address;
      }
      leaf dst {
        type inet:ipv4-address;
      }
      leaf vni {
        type uint32;
      }
      leaf encap-vrf-id {
        type uint32;
      }
    }
    container l2 {
      choice interconnection {
        case xconnect-based {
          leaf xconnect-outgoing-interface {
            type if:interface-ref;
          }
        }
        case bridge-based {
          leaf bridge-domain {
            type bridge-domain-ref;
          }
          leaf split-horizon-group {
            type uint8;
          }
          leaf bridged-virtual-interface {
            type boolean;
          }
        }
      }
    }
  }

  augment /if:interfaces-state/if:interface/if:statistics {
    ext:augment-identifier "vpp-interface-statistics-augmentation";
    leaf in-errors-no-buf {
      type yang:counter64;
    }
    leaf in-errors-miss {
      type yang:counter64;
    }
    leaf out-discards-fifo-full {
      type yang:counter64;
    }
  }

  container vpp-state {
    config false;

    description
      "VPP operational data";

    container bridge-domains {
      list bridge-domain {
        
        key "name";
        leaf name {
          type string;
        }
        leaf flood {
          type boolean;
        }
        leaf unknown-unicast-flood {
          type boolean;
        }
        leaf arp-termination {
          type boolean;
        }
        leaf forward {
          type boolean;
        }
        leaf learn {
          type boolean;
        }
        list interface {
          key "name";

          leaf name {
            type if:interface-state-ref;
          }

          leaf split-horizon-group {
            type uint8;
          }

          leaf bridged-virtual-interface {
            type boolean;
          }
        }
        list l2-fib {
          key "phys-address";

          leaf phys-address {
            type yang:phys-address;
          }
          leaf static-config {
            type boolean;
          }
          leaf outgoing-interface {
            when "../v3po:action = 'forward'";
            type if:interface-state-ref;
          }
          leaf action {
            type enumeration {
              enum "forward";
              enum "filter";
            }
            mandatory true;
          }
          leaf bridged-virtual-interface {
            when "../v3po:action = 'forward'";
            type boolean;
          }
        }
        description 
          "bridge-domain operational data";
      }
    }
    
    container version {
      leaf name {
        type string;
      }
      leaf build-directory {
        type string;
      }
      leaf build-date {
        type string;
      }
      leaf branch {
        type string;
      }
      description
      "vlib version info";
    }
  }
    
  rpc vpp-poll-oper-data {
    output {
      leaf status {
        type uint32;
      }
    }
  }
}