diff --git a/docs/drvbhyve.html.in b/docs/drvbhyve.html.in index 9b7872ba06946d446507b423ea3966c951ef5573..da6f1e0b2114e6e309aa5399afdd703feb6a61e0 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 a214b33164396ac3d045e1326a77aeb6cffe8352..b756a970f2e996919a28e470b27af9caa01ce114 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. + +