From a69f3c9b63d03f196dd61c4309aa7e6e7638e8e0 Mon Sep 17 00:00:00 2001 From: Roman Bogorodskiy Date: Sun, 12 Feb 2017 20:42:31 +0400 Subject: [PATCH] docs: document bhyve e1000 support * Add bhyve e1000 support entry to release notes * Update the bhyve driver page with usage sample --- docs/drvbhyve.html.in | 15 +++++++++++++++ docs/news.xml | 9 +++++++++ 2 files changed, 24 insertions(+) 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. + +