[Contents] [Prev] [Next] [Index] [Report an Error]

Setting the Default Mode for Incorporating New Configuration Data

By default, the NETCONF server merges new configuration data into the candidate configuration, according to the following rules:

Merge mode applies to all elements in the new configuration that do not have the operation attribute in their opening container tag to specify a different mode. (For information about the operation attribute, see Changing Individual Configuration Elements.)

Merge mode is the default mode for incorporating new configuration data (it is used when a client application does not specify a different mode). To explicitly specify merge mode, the application can include the <default-operation> tag element with the value merge in the <edit-config> tag element:


<rpc>
    <edit-config>
      <default-operation>merge</default-operation>
        <!- - other child tag elements of the <edit-config> tag element - ->
    </edit-config>
</rpc>
]]>]]>

The client application can specify one of two alternative default modes for incorporating new configuration data:


[Contents] [Prev] [Next] [Index] [Report an Error]