diff --git a/docs/drvbhyve.html.in b/docs/drvbhyve.html.in index ca511eeccd..2e58cc50e2 100644 --- a/docs/drvbhyve.html.in +++ b/docs/drvbhyve.html.in @@ -389,6 +389,30 @@ it with the port attribute):

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

Since 6.8.0, it's possible to set framebuffer resolution +using the resolution sub-element:

+ +
+   <video>
+     <model type='gop' heads='1' primary='yes'>
+       <resolution x='800' y='600'/>
+     </model>
+   </video>
+
+ +

Since 6.8.0, VNC server can be configured to use +password based authentication:

+ +
+  <graphics type='vnc' port='5904' passwd='foobar'>
+    <listen type='address' address='127.0.0.1'/>
+  </graphics>
+
+ +

Note: VNC password authentication is known to be cryptographically weak. +Additionally, the password is passed as a command line argument in clear text. +Make sure you understand the risks associated with this feature before using it.

+

Clock configuration

Originally bhyve supported only localtime for RTC. Support for UTC time was introduced in @@ -432,6 +456,29 @@ supports Intel e1000 network adapter emulation. It's supported in libvirt ... +

Sound device

+ +

As of FreeBSD changeset r349355 +bhyve supports sound device emulation. It's supported in libvirt +since 6.7.0.

+ +
+...
+  <sound model='ich7'>
+    <audio id='1'/>
+  </sound>
+  <audio id='1' type='oss'>
+    <input dev='/dev/dsp0'/>
+    <output dev='/dev/dsp0'/>
+  </audio>
+...
+
+ +

Here, the sound element specifies the sound device as it's exposed +to the guest, with ich7 being the only supported model now, +and the audio element specifies how the guest device is mapped +to the host sound device.

+

Wiring guest memory

Since 4.4.0, it's possible to specify that guest memory should