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

Configuration Change Requests

Configuration change requests are requests to change the candidate configuration, or to commit those changes to put them into active use on the C-series Controller . The NETCONF API defines the <edit-config> and <copy-config> tag elements for changes to the configuration. The SRC XML API defines a tag element for every CLI configuration statement described in the SRC software documentation set.

The following example shows how to create a new user account called admin at the [edit system login] hierarchy level in the candidate configuration:


<rpc>
    <edit-config>
        <target>
            <candidate/>
        </target>
        <config>
            <configuration>
                <system>
                    <login>
                        <user>
                            <user-name>admin</user-name>
                            <full-name>Administrator</full-name>
                            <class>super-user</class>
                        </user>
                    </login>
                </system>
            </configuration>
        </config>
    </edit-config>
</rpc>
]]>]]>

For more information, see Changing Configuration Information. For a summary of SRC XML configuration tag elements, see the SRC XML API Configuration Reference .


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