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

Mapping for Hierarchy Levels and Container Statements

The <configuration> tag element is the top-level XML container tag element for configuration statements. It corresponds to the [edit] hierarchy level in CLI configuration mode. Most statements at the next few levels of the configuration hierarchy are container statements. The XML container tag element that corresponds to a container statement almost always has the same name as the statement.

The following example shows the XML tag elements for a statement at the top level of the configuration hierarchy. Note that a closing brace in a CLI configuration statement corresponds to a closing XML tag.

CLI Configuration Statements

SRC XML Tags

 

system login {
  ...child statements...
}

<configuration>
  <system>
    <login>
      <!-- tags for child statements -->
    </login>
  </system>
</configuration>


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