Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Update for PDF export

Anchor
TOC
TOC
Include Page
KBCOMMON:KB-CSSstyle
KBCOMMON:KB-CSSstyle

...

Include Page
KBCOMMON:DOC-GoToToc
KBCOMMON:DOC-GoToToc

Configuration parameters

The KZPBA PCI SCSI adapter emulation has the following configuration parameters:

scsi_id

Parameterscsi_id
TypeNumeric
Value

Specifies SCSI ID of KZPBA PCI SCSI Adapter in a range 0..7

By default the "scsi_id" configuration parameter is set to 7.

Example:

set PKA scsi_id=6


host, port

Parameterhost, port
TypeText string
Value

These parameters are used in SCSI cluster configurations.

  • Specifies remote end-point (remote host name and, optionally, TCP/IP port on remote host) of SCSI connection between this KZPBA PCI SCSI adapter and remote KZPBA PCI SCSI adapter on some host.
  • Specifies local end-point (TCP/IP port on local host) of SCSI connection between this KZPBA PCI SCSI adapter and remote KZPBA PCI SCSI adapter on some host.

By default the "host" and "port" configuration options are not specified.

Syntax:

port[connection-number]=<local port> host[connection-number]="<host-name{:tcpip-port-no}>"

where: connection-number = remote_scsi_id * 100 + lun_id

Example - 2 members cluster on the same Charon server - Node 1:

set PKA scsi_id=6
set PKA port[700]=11067 host[700]="localhost:11076"

Example - 2 members cluster on the same Charon server - Node 2:

set PKA scsi_id=7
set PKA port[600]=11076 host[600]="localhost:11067"


Div
classpagebreak


container

Parameter

container[N]

N is "XXYY" number, where XX = SCSI ID (0..15) and YY = LUN (00..07)

TypeText string
Value

Possible values of the parameter are strings in one of the following forms:

  • Physical disk
    •  "\\.\PhysicalDrive<X>", where X is 0, 1, … 
      (warning) Be careful not to destroy all the information from the disk dedicated to CHARON VM by mistake. 
      These disks must not be formatted by the host OS. 
      Example:

      set PKA container[0]="\\.\PhysicalDrive1"

      .

  • Physical disk by its WWID 

    • "\\.\PhysicalDrive(DevID=XXX-...-XXXX)"

      (warning) Be careful not to destroy all the information from the disk dedicated to CHARON VM by mistake.

      These disks must not be formatted by the host OS.

      DevID addresses the target physical disk by its WWID (hexadecimal 128-bit identifier assigned to the disk drive by its manufacturer/originator).

      Example:


      Div
      classsmall

      set PKA container[100]="\\.\PhysicalDrive(DevID=6008-05F3-0005-2950-BF8E-0B86-A0C7-0001)"


      .The WWID values can be obtained from "Host Device Check" utility ("All drives" section)


      Note

      If the "Host Device Check" utility does not display any WWID, this means the target disk does not have one. Use the "\\.\PhysicalDrive<N>" mapping in this case.


  • iSCSI disks
    • "\\.\PhysicalDrive(iScsiTarget = <iSCSI target>, LUN = <LUN number>)"

      iScsiTarget addresses the disk by its iSCSI target name.

      LUN specifies LUN on connected iSCSI disk.

      Example:


      Div
      classsmall

      set PKA container[200]="\\.\PhysicalDrive(iScsiTarget=iqn.2008-04:iscsi.charon-target-test1, LUN= 1)"


      .

  • Tape device
    • "\\.\Tape<X>", where X is 0, 1, …
      Example:

      set PKA container[600]="\\.\Tape0"


  • Tape changer
    • "\\.\Changer<X>", where X is 0, 1, …


  •  Floppy drive

    • "\\.\A:"

    • "\\.\B:"

      Example:

      set PKA container[300]="\\.\A:"

      .

  • CDROM device

    • "\\.\CdRom<X>", where X is 0, 1, … 

      Example:

      set PKA container[400]="\\.\CdRom0"

      .

  • ISO file for reading distribution CD-ROM image
    • [<drive>":\"<path-name>"\"]<file-name>[".iso”]  
      Mapping may also include the full path (recommended), for example: "C:\My disks\vms_distribution.iso"  

      Example:

      set PKA container[600]="C:\My disks\vms_distribution.iso"

      .

  • File representing a physical disk of the HP Alpha system (disk image)
    • [<drive>":\"<path-name>"\"]<file-name>[".vdisk"] 
      These files can be created from scratch with "MkDisk" utility. Data and OS disks backups are transferred from the original system via tapes or network and restored into these container files.   
      Mapping may also include the full path (recommended), for example: "C:\My disks\my_boot_disk.vdisk"   
      Example: 

      set PKA container[401]="tru64-v51-system.vdisk"


      Warning

      Using compressed folders to store virtual disks and tapes is not supported

      .

  • File representing the tape (tape image)

    • [<drive>":\"<path-name>"\"]<file-name>".vtape" 
      The container-file to which an emulated tape drive is mapped is created automatically when the emulator starts, and when the device is accessed from within the guest operating system.

      We recommend specifying the full path to the container-file, for example: "C:\MyTapes\backup.vtape"

      Example:

      set PKA container[500]="E:\Tapes\backup.vtape"


      Warning

      If the "CHARON Guest Utilities for OpenVMS" (CHARONCP) package is used, the syntax is different. Please read the corresponding chapter.


      Warning

      Using compressed folders to store virtual disks and tapes is not supported

      .

      How the Emulator Maps Guest-OS Operations to the Virtual Tape Drive

      Guest-OS OperationEmulator Action
      Open device for writing

      Create a container file if necessary; open for writing and lock the container file

      Open device for readingCreate a container file if none exists. open for reading and lock container file
      Unload (eject) tape from driveClose a container file if open and unlock it - this allows copy/move/delete operations on CHARON host


      Info

      The container file associated with a virtual tape drive can be compared to the tape cartridge used in a physical tape drive. Both store the data written to the tape device by the guest OS.

      The size of virtual tape container files is limited only by space available in the emulator host file system.

      (warning) Prerequisite to the examples below: a virtual tape device has been configured in the CHARON configuration file and it is not in use by the guest OS.

      To perform backup:

      1. The tape device may be issued the "unload" command and the container-file moved/deleted to insure proper status 
      2. Initialize the tape device using standard guest OS procedure.
      3. Perform backup.
      4. Issue "unload" command to the tape device in the guest OS.
      5. On the emulator host, move the *.vtape container file containing backup data for storage or further backup.

      To restore from a backup:

      1. The tape device may be issued the "unload" command to insure proper status.
      2. On the emulator host, move or copy a *.vtape container file containing backup data onto the filename specified in the CHARON configuration file.
      3. Perform restore.
      4. Issue the "unload" command to the tape device in the guest OS.
      5. Delete or move the container file in preparation for the next vtape operation.

      Note

      CHARON does not support muti-volume backup for tape images. If some mutli-volume set (in form of tape images) has to be restored it is recommended to configure several tape drives in CHARON VM configuration file, assign each tape image to each tape drive and use them in the following way (OpenVMS example):

      $ BACKUP MKA100:BACKUP.BCK,MKA200,MKA300,MKA4000/SAVE_SET DKA0:...



      .

  • Other type of drive, for example magneto-optical drive
    • "\\.\<N>:" 
      Example:

      set PKA container[300]="\\.\Z:"

      .

(info) This parameter is initially not set, thus creating NO storage elements on the controller..



media_type

Parameter

media_type[N]

N is "XXYY" number, where XX = SCSI ID (0..15) and YY = LUN (00..07)

TypeText string
Value

Instructs CHARON VM to use the supplied value as the PRODUCT field in the SCSI INQUIRY data returned to a software running on virtual HP Alpha system in response to SCSI INQUIRY command.

If not specified, CHARON VM attempts to guess the SCSI INQUIRY data based on virtual SCSI device type and underlying container (which is specified in the corresponding container configuration parameter).

Initially is not specified.

Example:

set PKA media_type[0]="HSZ70"


removable

Parameter

removable[N]

N is "XXYY" number, where XX = SCSI ID (0..15) and YY - LUN (00..07)

TypeBoolean
Value

When set to "true", the removable configuration parameter instructs CHARON VM to report the corresponding virtual SCSI device as removable.

Note to set this parameter to "true" if this disk storage element is:

  • Mapped to a host removable device
  • Mapped to a disk/tape image located on a host removable device
  • Mapped to a disk/tape image that has to be renamed/moved/deleted right after dismounting it in the guest OS

By default the removable configuration parameter is set to "false".

Example:

set PKA removable[400]=true

(info) Note that virtual SCSI tapes and CD-ROM devices are always reported as removable regardless of the "removable" configuration parameter.


...