blob: 63db76139f31abcd3c87471018b632420f0133bf [file] [log] [blame]
janani b3a3e3262016-10-19 00:23:28 +05301 module ietf-topology {
2 yang-version 1;
3 namespace "urn:ietf:params:xml:ns:yang:ietf-topology";
4 prefix tp;
5 list interface {
6 key "name";
7 leaf name {
8 type string;
9 }
10 leaf admin-status {
11 type uint8;
12 }
13 list address {
14 key "ip";
15 leaf ip {
16 type int8;
17 }
18 }
19 }
20 }
21