Release Information

Introduction

Getting Started

Delphix Engine System Administration

Virtual Database Management with the Delphix Engine

Data Backup and Recovery

Delphix Modernization Engine

Delphix Masking

Virtualizing Unstructured Files in the Delphix Engine

Virtualizing Oracle E-Business Suite in the Delphix Engine

JetStream

Mission Control

Delphix Express User Guide

Reference


Documentation for Previous Versions of the Delphix Engine

Delphix Server 3.0 Documentation
Delphix Server 3.1 Documentation
Delphix Engine 3.2 Documentation
Delphix Engine 4.0 Documentation
Delphix Engine 4.1 Documentation
Delphix Engine 4.2 Documentation
Delphix Engine 4.3 Documentation

Skip to end of metadata
Go to start of metadata

This topic is an example of using arrays to configure a target host to support multiple IP addresses. The addresses property is an array of strings.

Procedure

  1. Select the host to update

    delphix> host
    delphix host> select example
    delphix host "example"> update
  2. Set the address:

    delphix host "example" update *> set addresses=192.168.1.1,192.168.1.2
  3. Get the current addresses, both as a string and as an array object.

    delphix host "example" update *> get addresses
        192.168.1.1,192.168.1.2 (*)
    delphix host "example" update *> get addresses[0]
        192.168.1.1 (*)
    delphix host "example" update *> edit addresses
    delphix host "example" update addresses *> get
        0:
            192.168.1.1 (*)
        1:
            192.168.1.2 (*)
  4. Commit the result:

    delphix host "example" update addresses *> commit
    delphix host "example">