VinodKumarS-Huawei | 7b1733c | 2016-10-25 13:44:26 +0530 | [diff] [blame] | 1 | |
2 | module yms-ip-topology { | ||||
3 | yang-version 1; | ||||
4 | namespace urn:ip:topo; | ||||
5 | prefix ip-topo; | ||||
6 | import yms-topology { | ||||
7 | prefix topo; | ||||
8 | revision-date "2014-01-01"; | ||||
9 | } | ||||
10 | revision 2014-01-01 { | ||||
11 | description "desc"; | ||||
12 | reference "ref"; | ||||
13 | } | ||||
14 | |||||
15 | augment /topo:node{ | ||||
16 | leaf router-id { | ||||
17 | type string; | ||||
18 | } | ||||
19 | leaf router-ip { | ||||
20 | type string; | ||||
21 | } | ||||
22 | } | ||||
23 | |||||
24 | augment /topo:node/topo:termination-points/topo:termination-point { | ||||
25 | leaf ip-address { | ||||
26 | type string; | ||||
27 | } | ||||
28 | } | ||||
29 | } |