mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-03-15 14:50:21 +03:00
Commit newly generated docs, after changes from commit 2348cf.
This commit is contained in:
parent
115c02e871
commit
5388607f3d
@ -899,12 +899,43 @@ qemu-kvm -net nic,model=? /dev/null
|
||||
</h5>
|
||||
<p>
|
||||
The character device acts as a TCP client connecting to a
|
||||
remote server, or as a server waiting for a client connection.
|
||||
remote server.
|
||||
</p>
|
||||
<pre>
|
||||
...
|
||||
<serial type="tcp">
|
||||
<source mode="connect" host="0.0.0.0" service="2445"/>
|
||||
<protocol type="raw"/>
|
||||
<target port="1"/>
|
||||
</serial>
|
||||
...</pre>
|
||||
<p>
|
||||
Or as a TCP server waiting for a client connection.
|
||||
</p>
|
||||
<pre>
|
||||
...
|
||||
<serial type="tcp">
|
||||
<source mode="bind" host="127.0.0.1" service="2445"/>
|
||||
<protocol type="raw"/>
|
||||
<target port="1"/>
|
||||
</serial>
|
||||
...</pre>
|
||||
<p>
|
||||
Alternatively you can use telnet instead of raw TCP.
|
||||
</p>
|
||||
<p>
|
||||
|
||||
</p>
|
||||
<pre>
|
||||
...
|
||||
<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>
|
||||
|
Loading…
x
Reference in New Issue
Block a user