8.2.2.5. Identification

8.2.2.5.1. Name

The name of the chassis, as it appears at various places in the user interface. The name is also used to distinguish the various chassis contained within a testbed and in files containing the configuration for an entire test case.

Corresponding low-level API class: C_NAME

# Name
await tester.name.set(chassis_name="name")

resp = await tester.name.get()
resp.chassis_name

8.2.2.5.2. Password

The password of the chassis, which must be provided when logging on to the chassis.

Corresponding low-level API class: C_PASSWORD

# Password
await tester.password.set(password="xena")

resp = await tester.password.get()
resp.password

8.2.2.5.3. Description

The description of the chassis.

Corresponding low-level API class: C_COMMENT

# Description
await tester.comment.set(comment="description")

resp = await tester.comment.get()
resp.comment

8.2.2.5.4. Model

Gets the specific model of this Xena chassis.

Corresponding low-level API class: C_MODEL

# Model
resp = await tester.model.get()
resp.model

8.2.2.5.5. Serial Number

Gets the unique serial number of this particular Xena chassis.

Corresponding low-level API class: C_SERIALNO

# Serial Number
resp = await tester.serial_no.get()
resp.serial_number

8.2.2.5.6. Firmware Version

Gets the major version numbers for the chassis firmware and the Xena PCI driver installed on the chassis.

Corresponding low-level API class: C_VERSIONNO

# Firmware Version
resp = await tester.version_no.get()
resp.chassis_major_version
resp.pci_driver_version

resp = await tester.version_no_minor.get()
resp.chassis_minor_version
resp.reserved_1
resp.reserved_2

8.2.2.5.7. Build String

Identify the hostname of the PC that builds the xenaserver. It uniquely identifies the build of a xenaserver.

Corresponding low-level API class: C_BUILDSTRING

# Build String
resp = await tester.build_string.get()
resp.build_string

8.2.2.5.8. Version String

Returns the currently running chassis software version. Obsoletes C_VERSIONNO and C_VERSIONNO_MINOR

Corresponding low-level API class: C_VERSIONSTR

# Firmware Version
resp = await tester.version_str.get()
resp.version_str

8.2.2.5.9. Model Name

Get the Xena chassis model name.

Corresponding low-level API class: C_MODEL_NAME

# Model Name
resp = await tester.model_name.get()
resp.name

8.2.2.5.10. Model Number

Get the Xena chassis model number.

Corresponding low-level API class: C_MODEL_NUMBER

# Model Name
resp = await tester.model_number.get()
resp.number