Bharat saraswal | 1b0a39a | 2016-12-16 16:29:02 +0530 | [diff] [blame] | 1 | module check { |
| 2 | yang-version 1; |
| 3 | namespace "urn:ietf:params:xml:ns:yang:ietf-network4:check:namespace"; |
| 4 | prefix nd; |
| 5 | |
| 6 | organization |
| 7 | "IETF I2RS (Interface to the Routing System) Working Group"; |
| 8 | |
| 9 | contact |
| 10 | "WG Web: <http://tools.ietf.org/wg/i2rs/> |
| 11 | WG List: <mailto:i2rs@ietf.org> |
| 12 | |
| 13 | WG Chair: Susan Hares |
| 14 | <mailto:shares@ndzh.com> |
| 15 | |
| 16 | WG Chair: Jeffrey Haas |
| 17 | <mailto:jhaas@pfrc.org> |
| 18 | |
| 19 | Editor: Alexander Clemm |
| 20 | <mailto:alex@cisco.com> |
| 21 | |
| 22 | Editor: Jan Medved |
| 23 | <mailto:jmedved@cisco.com> |
| 24 | |
| 25 | Editor: Robert Varga |
| 26 | <mailto:rovarga@cisco.com> |
| 27 | |
| 28 | Editor: Tony Tkacik |
| 29 | <mailto:ttkacik@cisco.com> |
| 30 | |
| 31 | Editor: Nitin Bahadur |
| 32 | <mailto:nitin_bahadur@yahoo.com> |
| 33 | |
| 34 | Editor: Hariharan Ananthakrishnan |
| 35 | <mailto:hari@packetdesign.com>"; |
| 36 | |
| 37 | description |
| 38 | "This module defines a common base model for a collection |
| 39 | of nodes in a network. Node definitions are further used |
| 40 | in network topologies and inventories. |
| 41 | |
| 42 | Copyright (c) 2015 IETF Trust and the persons identified as |
| 43 | authors of the code. All rights reserved. |
| 44 | |
| 45 | Redistribution and use in source and binary forms, with or |
| 46 | without modification, is permitted pursuant to, and subject |
| 47 | to the license terms contained in, the Simplified BSD License |
| 48 | set forth in Section 4.c of the IETF Trust's Legal Provisions |
| 49 | Relating to IETF Documents |
| 50 | (http://trustee.ietf.org/license-info). |
| 51 | |
| 52 | This version of this YANG module is part of |
| 53 | draft-ietf-i2rs-yang-network-topo-02; |
| 54 | see the RFC itself for full legal notices. |
| 55 | |
| 56 | NOTE TO RFC EDITOR: Please replace above reference to |
| 57 | draft-ietf-i2rs-yang-network-topo-02 with RFC |
| 58 | number when published (i.e. RFC xxxx)."; |
| 59 | |
| 60 | revision 2015-12-08 { |
| 61 | description |
| 62 | "Initial revision. |
| 63 | NOTE TO RFC EDITOR: Please replace the following reference |
| 64 | to draft-ietf-i2rs-yang-network-topo-02 with |
| 65 | RFC number when published (i.e. RFC xxxx)."; |
| 66 | reference |
| 67 | "draft-ietf-i2rs-yang-network-topo-02"; |
| 68 | } |
| 69 | |
| 70 | container networks { |
| 71 | leaf id { |
| 72 | type int32; |
| 73 | } |
| 74 | container network { |
| 75 | leaf ip-address { |
| 76 | type int32; |
| 77 | } |
| 78 | } |
| 79 | } |
| 80 | } |