From b893e7612fafa59e7ea82a6205ccf8bd1fe338d0 Mon Sep 17 00:00:00 2001 From: Eric Blake Date: Thu, 27 Sep 2012 16:19:37 -0600 Subject: [PATCH] docs: rudimentary phyp documentation Based on a report that phyp is undocumented: https://www.redhat.com/archives/libvirt-users/2012-July/msg00013.html * docs/drvphyp.html.in (phyp): New file. * docs/drivers.html.in: List it. --- docs/drivers.html.in | 1 + docs/drvphyp.html.in | 48 ++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 49 insertions(+) create mode 100644 docs/drvphyp.html.in diff --git a/docs/drivers.html.in b/docs/drivers.html.in index 24387d0388..307d286e13 100644 --- a/docs/drivers.html.in +++ b/docs/drivers.html.in @@ -29,6 +29,7 @@
  • VMware Workstation/Player
  • Xen
  • Microsoft Hyper-V
  • +
  • IBM PowerVM (phyp)
  • Storage drivers

    diff --git a/docs/drvphyp.html.in b/docs/drvphyp.html.in new file mode 100644 index 0000000000..0bd20dd489 --- /dev/null +++ b/docs/drvphyp.html.in @@ -0,0 +1,48 @@ + +

    IBM PowerVM hypervisor driver (phyp)

    + +

    + The IBM PowerVM driver can manage both HMC and IVM PowerVM + guests. VIOS connections are tunneled through HMC. +

    + + +

    Project Links

    + + + +

    Connections to the PowerVM driver

    +

    + Some example remote connection URIs for the driver are: +

    +
    +phyp://user@hmc/system (HMC connection)
    +phyp://user@ivm/system (IVM connection)
    +
    +

    + Note: In contrast to other drivers, the + PowerVM (or phyp) driver is a client-side-only driver, + internally using ssh to connect to the specified hmc or ivm + server. Therefore, the remote transport + mechanism provided by the remote driver and libvirtd will + not work, and you cannot use URIs like + phyp+ssh://example.com. +

    + + +

    URI Format

    +

    + URIs have this general form ([...] marks an + optional part, {...|...} marks a mandatory choice). +

    +
    +phyp://[username@]{hmc|ivm}/managed_system
    +
    +

    + + -- GitLab