(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

260 Brocade Virtual ADX Graphical User Interface Guide
53-1003242-01
Overview
B
Example 1
This example has several different uses of variables inside a repeater.
The variables with the default values are defined as follows:
The following repeater is for the real server creation:
The results of the variables and repeater are the real servers in the following table.
Real Server name IP Address Server ID
rs1 10.100.0.2 1201
rs2 10.100.0.22 1202
rs3 10.100.0.23 1203
<variables>
<variable>
<variableName>RS_NAMES</variableName>
<dataType>stringList</dataType>
<defaultValue>rs1, rs2, rs3</defaultValue>
</variable>
<variable>
<variableName>RS_IPS</variableName>
<dataType>ipAddressList</dataType>
<defaultValue>10.100.0.2, 10.100.0.22, 10.100.0.23</defaultValue>
</variable>
<variable>
<variableName>SERVER_ID</variableName>
<dataType>integerNonZero</dataType>
<defaultValue>1201</defaultValue>
<autoIncrement>true</autoIncrement>
</variable>
</variables>
<repeater count="RS_NAMES">
<real>
<name variable="RS_NAMES"/>
<ip variable="RS_IPS"/>
<realPorts>
<realPort>
<port>ssl</port>
<serverId variable="SERVER_ID"/>
</realPort>
</realPorts>
</real>
</repeater>