From: Roman Bogorodskiy Date: Sun, 30 Jul 2017 10:01:03 +0000 (+0400) Subject: docs: bhyve: document autoport support X-Git-Tag: v3.7.0-rc1~199 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=404d3632b974dfec4fb60471be7d8c2ab52c983a;p=thirdparty%2Flibvirt.git docs: bhyve: document autoport support - Update the driver page with the information about using autport for VNC ports - Add a news entry Signed-off-by: Roman Bogorodskiy Reviewed-by: Michal Privoznik --- diff --git a/docs/drvbhyve.html.in b/docs/drvbhyve.html.in index 1777abe2e6..63260afae7 100644 --- a/docs/drvbhyve.html.in +++ b/docs/drvbhyve.html.in @@ -381,6 +381,14 @@ will be used. Please refer to the manual page and the bhyve wiki for more details on using the vgaconf option.

+

Since 3.7.0, it's possible to use autoport +to let libvirt allocate VNC port automatically (instead of explicitly specifying +it with the port attribute):

+ +
+    <graphics type='vnc' autoport='yes'>
+
+

Clock configuration

Originally bhyve supported only localtime for RTC. Support for UTC time was introduced in diff --git a/docs/news.xml b/docs/news.xml index 380f25a770..26bd9bd6f6 100644 --- a/docs/news.xml +++ b/docs/news.xml @@ -35,6 +35,16 @@

+ + + bhyve: Support autoport for VNC ports + + + It's no longer necessary to explicitly specify VNC port for the bhyve + guests. With the autoport feature it will be allocated automatically. + Please refer to the bhyve driver documentation for examples. + +