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