From: Daniel P. Berrangé
-xen:/// (local access, direct) -xen+unix:/// (local access, via daemon) -xen://example.com/ (remote access, TLS/x509) -xen+tcp://example.com/ (remote access, SASl/Kerberos) -xen+ssh://root@example.com/ (remote access, SSH tunnelled) +xen:///system (local access, direct) +xen+unix:///system (local access, via daemon) +xen://example.com/system (remote access, TLS/x509) +xen+tcp://example.com/system (remote access, SASl/Kerberos) +xen+ssh://root@example.com/system (remote access, SSH tunnelled)
$ virsh -c xen:/// domxml-from-native xen-xm rhel5.cfg
+ $ virsh -c xen:///system domxml-from-native xen-xm rhel5.cfg
<domain type='xen'>
<name>rhel5pv</name>
<uuid>8f07fe28-753f-2729-d76d-bdbd892f949a</uuid>
@@ -122,7 +122,7 @@ xen+ssh://root@example.com/ (remote access, SSH tunnelled)
format.
- $ virsh -c xen:/// domxml-to-native xen-xm rhel5pv.xml
+ $ virsh -c xen:///system domxml-to-native xen-xm rhel5pv.xml
name = "rhel5pv"
uuid = "8f07fe28-753f-2729-d76d-bdbd892f949a"
maxmem = 2500
diff --git a/docs/remote.html.in b/docs/remote.html.in
index 8c22778f53..de09975039 100644
--- a/docs/remote.html.in
+++ b/docs/remote.html.in
@@ -130,14 +130,14 @@ to distinguish this from a local URI.
Some examples:
xen+ssh://rjones@towada/xen+ssh://rjones@towada/systemtowada using ssh transport and ssh
username rjones.
xen://towada/xen://towada/systemtowada using TLS.
xen://towada/?no_verify=1xen://towada/system?no_verify=1towada using TLS. Do not verify
the server's certificate.
--connect=URI option:
virt-install --connect=test:///default [other options]
This section describes a feature which is new in libvirt > @@ -115,7 +115,7 @@ virt-install --connect=test:///default [other options]
To access a Xen hypervisor running on the local machine
-use the URI xen:///.
+use the URI xen:///system.
xen:///
+ xen:///system
xen://oirase/
+ xen://oirase/system
oirase
using TLS. xen:///
+ xen:///system
xen+ssh://oirase/
+ xen+ssh://oirase/system
oirase
by going over an ssh connection. xen:/// URI.
+for future proofing it should choose a full xen:///system URI.
"xen"
@@ -259,7 +259,7 @@ for future proofing it should choose a full xen:///
Another legacy URI is to specify name as the string
"xen". This will continue to refer to the Xen
-hypervisor. However you should prefer a full xen:/// URI in all future code.
+hypervisor. However you should prefer a full xen:///system URI in all future code.