search for: i82557b

Displaying 10 results from an estimated 10 matches for "i82557b".

2009 Jun 21
0
[PATCHv6 12/12] qemu/net: flag to control the number of vectors a nic has
...+that the card 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
...+that the card 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
...me \*virtio\*) 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.libv...
2012 Aug 24
2
SNMP monitoring
...thresholds (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 Jun 12
0
Meaning of "vlan=" and "name=" in Linux KVM
...ould have; this option 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][...
2012 Jun 14
0
kvm CLI :: meaning of "vlan=" and "name=" options in -net nic and -net tap
...should have; this option 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][,f...
2010 Sep 21
1
[PATCH] Introduce ability to select any kind of nic model, not just default or virtio.
...p/models/nic.rb index 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 1006...
2007 Dec 21
0
[Virtio-for-kvm] [PATCH 2/7] userspace virtio
...del, "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...
2007 Dec 21
0
[Virtio-for-kvm] [PATCH 2/7] userspace virtio
...del, "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...
2012 Jan 24
2
[PATCH 26/28] pci: convert to QEMU Object Model
...quot;Intel i82557A Ethernet", .device = i82557A, - .pci.device_id = PCI_DEVICE_ID_INTEL_82557, - .pci.revision = 0x01, + .device_id = PCI_DEVICE_ID_INTEL_82557, + .revision = 0x01, .power_management = false, },{ - .pci.qdev.name = "i82557b", - .pci.qdev.desc = "Intel i82557B Ethernet", + .qdev.name = "i82557b", + .qdev.desc = "Intel i82557B Ethernet", .device = i82557B, - .pci.device_id = PCI_DEVICE_ID_INTEL_82557, - .pci.revision = 0x02, + .device_...