From 5388607f3d1b777f143e3d9fc1de524b40d07aed Mon Sep 17 00:00:00 2001 From: Cole Robinson Date: Sun, 26 Jul 2009 17:54:13 -0400 Subject: [PATCH] Commit newly generated docs, after changes from commit 2348cf. --- docs/formatdomain.html | 33 ++++++++++++++++++++++++++++++++- 1 file changed, 32 insertions(+), 1 deletion(-) 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>
-- 
2.47.2