From: Roman Bogorodskiy Date: Sun, 12 Feb 2017 16:42:31 +0000 (+0400) Subject: docs: document bhyve e1000 support X-Git-Tag: CVE-2017-2635~117 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a69f3c9b63d03f196dd61c4309aa7e6e7638e8e0;p=thirdparty%2Flibvirt.git docs: document bhyve e1000 support * Add bhyve e1000 support entry to release notes * Update the bhyve driver page with usage sample --- 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. + +