From: Cole Robinson Date: Sun, 26 Jul 2009 21:54:13 +0000 (-0400) Subject: Commit newly generated docs, after changes from commit 2348cf. X-Git-Tag: v0.7.0~87 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5388607f3d1b777f143e3d9fc1de524b40d07aed;p=thirdparty%2Flibvirt.git Commit newly generated docs, after changes from commit 2348cf. --- diff --git a/docs/formatdomain.html b/docs/formatdomain.html index 0b21c6bd25..5415200342 100644 --- a/docs/formatdomain.html +++ b/docs/formatdomain.html @@ -899,12 +899,43 @@ qemu-kvm -net nic,model=? /dev/null

The character device acts as a TCP client connecting to a - remote server, or as a server waiting for a client connection. + remote server.

       ...
       <serial type="tcp">
         <source mode="connect" host="0.0.0.0" service="2445"/>
+        <protocol type="raw"/>
+        <target port="1"/>
+      </serial>
+      ...
+

+ Or as a TCP server waiting for a client connection. +

+
+      ...
+      <serial type="tcp">
+        <source mode="bind" host="127.0.0.1" service="2445"/>
+        <protocol type="raw"/>
+        <target port="1"/>
+      </serial>
+      ...
+

+ Alternatively you can use telnet instead of raw TCP. +

+

+ +

+
+      ...
+      <serial type="tcp">
+        <source mode="connect" host="0.0.0.0" service="2445"/>
+        <protocol type="telnet"/>
+        <target port="1"/>
+      </serial>
+      ...
+      <serial type="tcp">
+        <source mode="bind" host="127.0.0.1" service="2445"/>
         <protocol type="telnet"/>
         <target port="1"/>
       </serial>