(Supporting ADX v03.1.00) Owner's manual
Table Of Contents
- Contents
- Preface
- Introduction to the Brocade Virtual ADX Web Interface
- Navigating the Web Interface
- Navigating the Dashboard
- Configuration Overview
- System Settings
- Network Settings
- Traffic Settings
- GSLB Settings
- Security Settings
- Monitoring Overview
- Viewing System Information
- Viewing Network Status
- Viewing Traffic Statistics
- Viewing Security Statistics
- Maintenance Overview
- Managing Software Images
- Restarting the System
- License Management
- Packet Capture
- Accessing the CLI
- Retrieving System Information for Technical Support
- Troubleshooting
- Config Template XML Schema
- Managing Config Templates through the CLI
Brocade Virtual ADX Graphical User Interface Guide 261
53-1003242-01
Overview
B
Example 2
In this example, the iteration of IP addresses is done differently through “autoIncrement” with the
following variables:
The following repeater is for the real server creation:
<variables>
<variable>
<variableName>RS_COUNT</variableName>
<dataType>integerNonZero</dataType>
<defaultValue>4</defaultValue>
</variable>
<variable>
<variableName>RS_PREFIX</variableName>
<dataType>string</dataType>
<defaultValue>rs</defaultValue>
<!-- used with a string, autoIncrement will append suffix
numbers to each item in a repeater -->
<autoIncrement>true</autoIncrement>
</variable>
<variable>
<variableName>RS_FIRST_IP</variableName>
<dataType>ipAddress</dataType>
<defaultValue>20.1.1.100</defaultValue>
<!-- used with an ipAddress, autoIncrement will increment the
ip address for each item in a repeater -->
<!-- validation logic will throw an error if there aren't
enough ip addresses in the subnet to do this -->
<autoIncrement>true</autoIncrement>
</variable>
<variable>
<variableName>RS_FIRST_SERVER_ID</variableName>
<dataType>integerNonZero</dataType>
<defaultValue>1024</defaultValue>
<!-- used with an integer or integerNonZero, autoIncrement will
increment the number for each item in a repeater -->
<autoIncrement>true</autoIncrement>
</variable>
</variables>
<reals>
<repeater count="RS_COUNT">
<real>
<name variable="RS_PREFIX"/>
<ip variable="RS_FIRST_IP"/>
<realPorts>
<realPort>
<port>http</port>
<serverId variable="RS_FIRST_SERVER_ID"/>
</realPort>
</realPorts>
</real>
</repeater>
</reals>