Re: [netmod] Last Call: draft-ietf-netmod-snmp-cfg-03 (20131220)

Martin Bjorklund <mbj@tail-f.com> Tue, 07 January 2014 07:13 UTC

Return-Path: <mbj@tail-f.com>
X-Original-To: netmod@ietfa.amsl.com
Delivered-To: netmod@ietfa.amsl.com
Received: from localhost (ietfa.amsl.com [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id B38341AE45D for <netmod@ietfa.amsl.com>; Mon, 6 Jan 2014 23:13:15 -0800 (PST)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.438
X-Spam-Level:
X-Spam-Status: No, score=-2.438 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, RP_MATCHES_RCVD=-0.538] autolearn=ham
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 1E_k6GXlgB3H for <netmod@ietfa.amsl.com>; Mon, 6 Jan 2014 23:13:13 -0800 (PST)
Received: from mail.tail-f.com (mail.tail-f.com [109.74.15.94]) by ietfa.amsl.com (Postfix) with ESMTP id B15E41ADFBD for <netmod@ietf.org>; Mon, 6 Jan 2014 23:13:13 -0800 (PST)
Received: from localhost (138.162.241.83.in-addr.dgcsystems.net [83.241.162.138]) by mail.tail-f.com (Postfix) with ESMTPSA id 099A5240C147; Tue, 7 Jan 2014 08:13:04 +0100 (CET)
Date: Tue, 07 Jan 2014 08:13:03 +0100
Message-Id: <20140107.081303.1920544947906844357.mbj@tail-f.com>
To: randy_presuhn@mindspring.com
From: Martin Bjorklund <mbj@tail-f.com>
In-Reply-To: <008901cf0b35$3bb7b0a0$6b01a8c0@oemcomputer>
References: <7905973.1389031903240.JavaMail.root@elwamui-hybrid.atl.sa.earthlink.net> <20140106.225350.450926514.mbj@tail-f.com> <008901cf0b35$3bb7b0a0$6b01a8c0@oemcomputer>
X-Mailer: Mew version 6.5rc2 on Emacs 23.4 / Mule 6.0 (HANACHIRUSATO)
Mime-Version: 1.0
Content-Type: Text/Plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
Cc: netmod@ietf.org
Subject: Re: [netmod] Last Call: draft-ietf-netmod-snmp-cfg-03 (20131220)
X-BeenThere: netmod@ietf.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: NETMOD WG list <netmod.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/netmod>, <mailto:netmod-request@ietf.org?subject=unsubscribe>
List-Archive: <http://www.ietf.org/mail-archive/web/netmod/>
List-Post: <mailto:netmod@ietf.org>
List-Help: <mailto:netmod-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/netmod>, <mailto:netmod-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 07 Jan 2014 07:13:15 -0000

"Randy Presuhn" <randy_presuhn@mindspring.com> wrote:
> Hi -
> 
> > From: "Martin Bjorklund" <mbj@tail-f.com>
> > To: <randy_presuhn@mindspring.com>
> > Cc: <netmod@ietf.org>
> > Sent: Monday, January 06, 2014 1:53 PM
> > Subject: Re: [netmod] Last Call: draft-ietf-netmod-snmp-cfg-03 (20131220)
> ...
> > What do you mean by a "group which does not exist"?  
> > 
> > Maybe you can provide an example (MIB) configuration that is not
> > possible to express in the YANG model?  (assuming also that we remove
> > the min-elements constraint from the "member" list).
> 
> Sure.  An instance of  vacmGroupName with value "TBD",
> when no entry exists in vacmAccessTable with such a value.
> Note that this is explicitly permitted by the definitions of
> vacmGroupName.

This is expressable, see below.

> > > If VACM has been configured with one or more users referring
> > > to groups that don't happen to exist at the moment, a fairly
> > > reasonable thing to do, the Yang/Netconf interface cannot
> > > represent that configuration.
> > 
> > If you mean an entry in vacmSecurityToGroupTable with a vacmGroupName
> > that does not exist in vacmAccessTable, this is possible to express
> > with the YANG model.
> 
> Cool.  I couldn't see how the Yang model would allow it, since the
> list "member" 
> is contained by the list "group".  Could you explain how one could create
> a "member" without creating the containing "group"?

That's not what I wrote.  Let's be concrete.

  vacmGroupName.3.3.b.o.b = TBD
  vacmGroupName.3.5.a.l.i.c.e = TBD

can be represented as

  <group>
    <name>TBD</name>
    <member>
      <security-name>alice</security-name>
      <security-model>usm</security-model>
    </member>
    <member>
      <security-name>bob</security-name>
      <security-model>usm</security-model>
    </member>
  </group>


/martin