Displaying 11 results from an estimated 11 matches for "i82559er".
2009 Jun 21
0
[PATCHv6 12/12] qemu/net: flag to control the number of vectors a nic has
...should have; this option currently only affects virtio cards; set
+ at var{v} = 0 to disable MSI-X. If no @option{-net} option is specified, a single
+NIC is created. Qemu can emulate several different models of network card.
Valid values for @var{type} are
- at code{i82551}, @code{i82557b}, @code{i82559er},
+ at code{virtio}, @code{i82551}, @code{i82557b}, @code{i82559er},
@code{ne2k_pci}, @code{ne2k_isa}, @code{pcnet}, @code{rtl8139},
@code{e1000}, @code{smc91c111}, @code{lance} and @code{mcf_fec}.
Not all devices are supported on all targets. Use -net nic,model=?
--
1.6.2.2
2009 Jun 21
0
[PATCHv6 12/12] qemu/net: flag to control the number of vectors a nic has
...should have; this option currently only affects virtio cards; set
+ at var{v} = 0 to disable MSI-X. If no @option{-net} option is specified, a single
+NIC is created. Qemu can emulate several different models of network card.
Valid values for @var{type} are
- at code{i82551}, @code{i82557b}, @code{i82559er},
+ at code{virtio}, @code{i82551}, @code{i82557b}, @code{i82559er},
@code{ne2k_pci}, @code{ne2k_isa}, @code{pcnet}, @code{rtl8139},
@code{e1000}, @code{smc91c111}, @code{lance} and @code{mcf_fec}.
Not all devices are supported on all targets. Use -net nic,model=?
--
1.6.2.2
2010 Aug 06
0
How to force the use of virtio as the guest network driver
...io\*) but when I try to force it by setting
<model type="virtio"/> in the XML configuration, it seems to make no
difference.
I see that as per http://libvirt.org/formatdomain.html , "qemu -net
nic,model=? /dev/null" returns the following: "ne2k_isa i82551 i82557b
i82559er ne2k_pci pcnet rtl8139", but I have no qemu-kvm binary. Not
sure if that's a telling symptom or not.
Host kernel is 2.6.26-2-openvz-amd64, KVM version is 72+dfsg-5~lenny5,
libvirt version is 0.4.6-10, all of which look good enough to use virtio
according to http://wiki.libvirt.org/pa...
2012 Aug 24
2
SNMP monitoring
...s (even on lo ...). Which is no surprise if
the threshold is zero.
I found a hint on some Debian forum that this behaviour is caused by the
virtio driver. So I was wondering, is it recommended or are there advantages
to configuring one of the emulated drivers instead (ne2k_pci,i82551,i82557b,
i82559er,rtl8139,e1000,pcnet)? Or can I "fake it" somehow in the vm's snmpd
config?
2012 May 12
0
bug report for network device i82599er: eepro100_write4: Assertion `!"feature is missing in this emulation: " "unknown longword write"' failed.
...en-4.1-testing.hg-build/tools/ioemu-dir/hw/eepro100.c:1320: eepro100_write4: Assertion `!"feature is missing in this emulation: " "unknown longword write"'' failed.
The domain crashes.
I suspect this occurs because I am trying to build the domain with a
vif where model=i82559er. Changing the model to e1000 does build
the domain.
I would prefer to have the ability to use 10Gbps because my physical
nic is also a 10Gbps nic:
02:00.0 Ethernet controller: Intel Corporation 82599EB 10-Gigabit SFI/SFP+ Network Connection (rev 01)
For further contact please be aware I am not...
2012 Jun 12
0
Meaning of "vlan=" and "name=" in Linux KVM
...n currently only affects virtio
cards; set v = 0 to disable MSI-X. If no
-net option is specified, a single NIC is created. Qemu
can emulate several different models of
network card. Valid values for type are "virtio",
"i82551", "i82557b", "i82559er", "ne2k_pci",
"ne2k_isa", "pcnet", "rtl8139", "e1000", "smc91c111",
"lance" and "mcf_fec". Not all devices are
supported on all targets.
-net tap[,vlan=n][,name=name][,fd=h][,ifname=name]
[...
2012 Jun 14
0
kvm CLI :: meaning of "vlan=" and "name=" options in -net nic and -net tap
...ion currently only affects virtio
cards; set v = 0 to disable MSI-X. If no
? ? ? ? ? -net option is specified, a single NIC is created. ?Qemu
can emulate several different models of
? ? ? ? ? network card. ?Valid values for type are "virtio",
"i82551", "i82557b", "i82559er", "ne2k_pci",
? ? ? ? ? "ne2k_isa", "pcnet", "rtl8139", "e1000", "smc91c111",
"lance" and "mcf_fec". ?Not all devices are
? ? ? ? ? supported on all targets.
-net tap[,vlan=n][,name=name][,fd=h][,ifname=name]
[,s...
2010 Sep 21
1
[PATCH] Introduce ability to select any kind of nic model, not just default or virtio.
...x 51425bc..18218a3 100644
--- a/src/app/models/nic.rb
+++ b/src/app/models/nic.rb
@@ -53,6 +53,8 @@ class Nic < ActiveRecord::Base
validates_numericality_of :bandwidth,
:greater_than_or_equal_to => 0
+ NIC_MODELS = ["ne2k_pci","i82551","i82557b","i82559er","rtl8139","e1000","pcnet","virtio"]
+
# Returns whether the nic has networking defined.
def networking?
(network != nil)
diff --git a/src/app/views/vm/_form.rhtml b/src/app/views/vm/_form.rhtml
index 1ab6dda..465733d 100644
--- a/src/app/view...
2007 Dec 21
0
[Virtio-for-kvm] [PATCH 2/7] userspace virtio
...ot;pcnet") == 0) {
pci_pcnet_init(bus, nd, devfn);
+ } else if (strcmp(nd->model, "virtio") == 0) {
+ virtio_net_init(bus, nd, devfn);
} else if (strcmp(nd->model, "?") == 0) {
fprintf(stderr, "qemu: Supported PCI NICs: i82551 i82557b i82559er"
- " ne2k_pci pcnet rtl8139\n");
+ " ne2k_pci pcnet rtl8139 virtio\n");
exit (1);
} else {
fprintf(stderr, "qemu: Unsupported NIC: %s\n", nd->model);
diff --git a/qemu/hw/virtio-net.c b/qemu/h...
2007 Dec 21
0
[Virtio-for-kvm] [PATCH 2/7] userspace virtio
...ot;pcnet") == 0) {
pci_pcnet_init(bus, nd, devfn);
+ } else if (strcmp(nd->model, "virtio") == 0) {
+ virtio_net_init(bus, nd, devfn);
} else if (strcmp(nd->model, "?") == 0) {
fprintf(stderr, "qemu: Supported PCI NICs: i82551 i82557b i82559er"
- " ne2k_pci pcnet rtl8139\n");
+ " ne2k_pci pcnet rtl8139 virtio\n");
exit (1);
} else {
fprintf(stderr, "qemu: Unsupported NIC: %s\n", nd->model);
diff --git a/qemu/hw/virtio-net.c b/qemu/h...
2012 Jan 24
2
[PATCH 26/28] pci: convert to QEMU Object Model
...= PCI_VENDOR_ID_INTEL,
- .pci.subsystem_id = 0x0040,
+ .subsystem_vendor_id = PCI_VENDOR_ID_INTEL,
+ .subsystem_id = 0x0040,
#endif
.stats_size = 80,
.has_extended_tcb_support = true,
.power_management = true,
},{
- .pci.qdev.name = "i82559er",
- .pci.qdev.desc = "Intel i82559ER Ethernet",
+ .qdev.name = "i82559er",
+ .qdev.desc = "Intel i82559ER Ethernet",
.device = i82559ER,
- .pci.device_id = PCI_DEVICE_ID_INTEL_82551IT,
- .pci.revision = 0x09,
+ .d...