To create an ADP password mapping file

Purpose

Perform this procedure to create a file that facilitates the entry of 7705 SAR-Hm serial number and password information for the devices in a cellular domain.

The XML file that you create is imported during cellular domain configuration. The file maps the chassis serial number of each device in the cellular domain to the unique administrator password of the device.

Steps
 

Use a plain-text editor to create a file that contains the following XML header:

<?xml version="1.0" encoding="UTF-8"?>

<ADPSerialNumbers>


For each device that has a unique password associated with the chassis serial number, add a line below the header in the following format:

 <node serialNumber="serial_number" password="password"/>

where

serial_number is the chassis serial number

password is the unique administrator password


When you are finished adding entries, add the following XML footer to the end of the file:

</ADPSerialNumbers>

The file reads as follows:

<?xml version="1.0" encoding="UTF-8"?>

<ADPSerialNumbers>

 <node serialNumber="SN_1" password="password_1"/>

 <node serialNumber="SN_2" password="password_2"/>

 .

 .

 .

 <node serialNumber="SN_n" password="password_n"/>

</ADPSerialNumbers>

where

SN_1 to SN_n are the chassis serial numbers

password_1 to password_n are the administrator passwords


Save and close the file using a .xml filename extension.


Transfer the XML file to the client GUI station that is to be used for the cellular domain configuration.

End of steps