diff --git a/docs/drvbhyve.html.in b/docs/drvbhyve.html.in index 9b7872ba06..da6f1e0b21 100644 --- a/docs/drvbhyve.html.in +++ b/docs/drvbhyve.html.in @@ -276,6 +276,21 @@ you'll need to explicitly specify 'localtime' in this case:

<clock offset='localtime'/> ... </domain> + + +

e1000 NIC

+ +

As of r302504 bhyve +supports Intel e1000 network adapter emulation. It's supported in libvirt +since 3.1.0 and could be used as follows:

+ +
+...
+    <interface type='bridge'>
+      <source bridge='virbr0'/>
+      <model type='e1000'/>
+    </interface>
+...
 
diff --git a/docs/news.xml b/docs/news.xml index a214b33164..b756a970f2 100644 --- a/docs/news.xml +++ b/docs/news.xml @@ -44,6 +44,15 @@ openvswitch calls in the libvirtd configuration file. + + + bhyve: add e1000 NIC support + + + Add support for e1000 NIC. Previously, the only available option + was virtio-net. + +