Hi,

We have a question about the following statement in the edit-config RPC section:

"If the <edit-config> operation contains multiple sub-operations
that apply to the same conceptual node in the underlying data
model, then the result of the operation is undefined (i.e.,
outside the scope of the NETCONF protocol)."

How do we need to read this?  Does this mean that if there is an edit-config in 
which, say, 10 interfaces are created these 10 interfaces need to be grouped in 
the same "section" of the edit-config as this:
<edit-config>
  ...
  <interfaces>
    <interface>
      <name>one</name>
      ...
    </interface>
   <interface>
      <name>two</name>
      ...
    </interface>
  </interfaces>
  ...
</edit-config>

And not like this:
<edit-config>
  ...
  <interfaces>
    <interface>
      <name>one</name>
      ...
    </interface>
  </interfaces>
  ...
  <interfaces>
    <interface>
      <name>two</name>
    </interface>
  </interfaces>
  ...
</edit-config>

Regards, Bart
_______________________________________________
netmod mailing list
netmod@ietf.org
https://www.ietf.org/mailman/listinfo/netmod

Reply via email to