--- 1/draft-ietf-netmod-ip-cfg-12.txt 2014-02-13 11:14:35.500578178 -0800 +++ 2/draft-ietf-netmod-ip-cfg-13.txt 2014-02-13 11:14:35.552579439 -0800 @@ -1,18 +1,18 @@ Network Working Group M. Bjorklund Internet-Draft Tail-f Systems -Intended status: Standards Track January 8, 2014 -Expires: July 12, 2014 +Intended status: Standards Track February 13, 2014 +Expires: August 17, 2014 A YANG Data Model for IP Management - draft-ietf-netmod-ip-cfg-12 + draft-ietf-netmod-ip-cfg-13 Abstract This document defines a YANG data model for management of IP implementations. The data model includes configuration data and state data. Status of this Memo This Internet-Draft is submitted in full conformance with the @@ -21,21 +21,21 @@ Internet-Drafts are working documents of the Internet Engineering Task Force (IETF). Note that other groups may also distribute working documents as Internet-Drafts. The list of current Internet- Drafts is at http://datatracker.ietf.org/drafts/current/. Internet-Drafts are draft documents valid for a maximum of six months and may be updated, replaced, or obsoleted by other documents at any time. It is inappropriate to use Internet-Drafts as reference material or to cite them other than as "work in progress." - This Internet-Draft will expire on July 12, 2014. + This Internet-Draft will expire on August 17, 2014. Copyright Notice Copyright (c) 2014 IETF Trust and the persons identified as the document authors. All rights reserved. This document is subject to BCP 78 and the IETF Trust's Legal Provisions Relating to IETF Documents (http://trustee.ietf.org/license-info) in effect on the date of publication of this document. Please review these documents @@ -258,53 +258,51 @@ +-----------------------------------+-------------------------------+ | YANG data node in | IP-MIB object | | /if:interfaces-state/if:interface | | +-----------------------------------+-------------------------------+ | ipv4 | ipv4InterfaceEnableStatus | | ipv4/address | ipAddressEntry | | ipv4/address/ip | ipAddressAddrType | | | ipAddressAddr | | ipv4/address/origin | ipAddressOrigin | | ipv4/neighbor | ipNetToPhysicalEntry | - | ipv4/neighbor/interface | ipNetToPhysicalIfIndex | | ipv4/neighbor/ip | ipNetToPhysicalNetAddressType | | | ipNetToPhysicalNetAddressAddr | | ipv4/neighbor/link-layer-address | ipNetToPhysicalPhysAddress | | ipv4/neighbor/origin | ipNetToPhysicalType | | ipv6 | ipv6InterfaceEnableStatus | | ipv6/forwarding | ipv6InterfaceForwarding | | ipv6/address | ipAddressEntry | | ipv6/address/ip | ipAddressAddrType | | | ipAddressAddr | | ipv6/address/origin | ipAddressOrigin | | ipv6/address/status | ipAddressStatus | | ipv6/neighbor | ipNetToPhysicalEntry | - | ipv6/neighbor/interface | ipNetToPhysicalIfIndex | | ipv6/neighbor/ip | ipNetToPhysicalNetAddressType | | | ipNetToPhysicalNetAddressAddr | | ipv6/neighbor/link-layer-address | ipNetToPhysicalPhysAddress | | ipv6/neighbor/origin | ipNetToPhysicalType | | ipv6/neighbor/state | ipNetToPhysicalState | +-----------------------------------+-------------------------------+ YANG interface state data nodes and related IP-MIB objects 4. IP management YANG Module This module imports typedefs from [RFC6991] and [I-D.ietf-netmod-interfaces-cfg], and references [RFC0791], [RFC0826], [RFC2460], [RFC4861], [RFC4862], and [RFC4941]. RFC Ed.: update the date below with the date of RFC publication and remove this note. - file "ietf-ip@2014-01-08.yang" + file "ietf-ip@2014-02-14.yang" module ietf-ip { namespace "urn:ietf:params:xml:ns:yang:ietf-ip"; prefix ip; import ietf-interfaces { prefix if; } import ietf-inet-types { @@ -314,22 +312,22 @@ prefix yang; } organization "IETF NETMOD (NETCONF Data Modeling Language) Working Group"; contact "WG Web: WG List: - WG Chair: David Kessens - + WG Chair: Thomas Nadeau + WG Chair: Juergen Schoenwaelder Editor: Martin Bjorklund "; description "This module contains a collection of YANG definitions for configuring IP implementations. @@ -345,21 +343,21 @@ (http://trustee.ietf.org/license-info). This version of this YANG module is part of RFC XXXX; see the RFC itself for full legal notices."; // RFC Ed.: replace XXXX with actual RFC number and remove this // note. // RFC Ed.: update the date below with the date of RFC publication // and remove this note. - revision 2014-01-08 { + revision 2014-02-13 { description "Initial revision."; reference "RFC XXXX: A YANG Data Model for IP Management"; } /* * Features */ @@ -455,28 +453,32 @@ "Enables IPv4 unless the 'enabled' leaf (which defaults to 'true') is set to 'false'"; description "Parameters for the IPv4 address family."; leaf enabled { type boolean; default true; description "Controls if IPv4 is enabled or disabled on this - interface."; + interface. When IPv4 is enabled, this interface is + connected to an IPv4 stack, and the interface can send + and receive IPv4 packets."; } leaf forwarding { type boolean; default false; description - "Controls if IPv4 packet forwarding is enabled or disabled - on this interface."; + "Controls IPv4 packet forwarding of datagrams received by, + but not addressed to, this interface. IPv4 routers forward + datagrams. IPv4 hosts do not (except those source-routed + via the host)"; } leaf mtu { type uint16 { range "68..max"; } units octets; description "The size, in octets, of the largest IPv4 packet that the interface will send and receive. @@ -549,28 +551,32 @@ "Enables IPv6 unless the 'enabled' leaf (which defaults to 'true') is set to 'false'"; description "Parameters for the IPv6 address family."; leaf enabled { type boolean; default true; description "Controls if IPv6 is enabled or disabled on this - interface."; + interface. When IPv6 is enabled, this interface is + connected to an IPv6 stack, and the interface can send + and receive IPv6 packets."; } leaf forwarding { type boolean; default false; description - "Controls if IPv6 packet forwarding is enabled or disabled - on this interface."; + "Controls IPv6 packet forwarding of datagrams received by, + but not addressed to, this interface. IPv6 routers forward + datagrams. IPv6 hosts do not (except those source-routed + via the host)"; reference "RFC 4861: Neighbor Discovery for IP version 6 (IPv6) Section 6.2.1, IsRouter"; } leaf mtu { type uint32 { range "1280..max"; } units octets; description