Changes between Initial Version and Version 2 of Ticket #16045
- Timestamp:
- Oct 7, 2016 5:31:25 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #16045
- Property Host type other → Linux
-
Ticket #16045 – Description
initial v2 1 1 Hi everyone, 2 Thanks for VirtualBox, it's a great product.2 Thanks for !VirtualBox, it's a great product. 3 3 4 I use VirtualBox as my hypervisor for virtual OpenStack deployments.4 I use !VirtualBox as my hypervisor for virtual OpenStack deployments. 5 5 I have been using it since the early 5.0 times to deploy multi-nodes OpenStack deployments. These deployments typically include 4 to 12 nodes as VBox machines, using multiple e1000 interfaces (4 per vbox machine, 3 of them being host-only network interfaces). 6 6 … … 9 9 - Large RHEL6.x hypervisor (128Gb or 192Gb RAM). These typically are kept up-to-date with the RedHat kernels. 10 10 - One large undercloud VBox VM (16Gb, pagefusion off, nestedpaging on, vtxvpid on, largepages on, paravirt KVM). It has 4 NICs: 11 - - nic0: hostonly to vboxnet012 - - nic1: hostonly to vboxnet113 - - nic2: hostonly to vboxnet214 - -nic3: Bridged to external network (Main Hypervisor interface)11 - nic0: hostonly to `vboxnet0` 12 - nic1: hostonly to `vboxnet1` 13 - nic2: hostonly to `vboxnet2` 14 - nic3: Bridged to external network (Main Hypervisor interface) 15 15 16 16 - 8 to 16 overcloud VBox VM's with the same settings as the above but using a slightly different NIC configuration: 17 - - nic0: hostonly to vboxnet018 - - nic1: hostonly to vboxnet119 - - nic2: hostonly to vboxnet1(to make a BOND with nic1)20 - - nic3: hostonly to vboxnet217 - nic0: hostonly to `vboxnet0` 18 - nic1: hostonly to `vboxnet1` 19 - nic2: hostonly to `vboxnet1` (to make a BOND with nic1) 20 - nic3: hostonly to `vboxnet2` 21 21 22 On nic1/nic2 (connected to vboxnet1), I use a mixture of 802.1Q Tagged VLAN's (this is specific to OpenStack).22 On nic1/nic2 (connected to `vboxnet1`), I use a mixture of 802.1Q Tagged VLAN's (this is specific to OpenStack). 23 23 24 24 As I am testing some OpenStack corner cases, I am deleting/re-creating this setup on a very frequent basis (sometimes 4 times per day). 25 25 26 26 Description of problem: 27 On latest RHEL6.8 kernels (2.6.32-642.6.1), the vboxnet[0-2]network stop 'working' after just a few minutes when deploying the nodes.27 On latest RHEL6.8 kernels (2.6.32-642.6.1), the `vboxnet[0-2]` network stop 'working' after just a few minutes when deploying the nodes. 28 28 No traffic can be seen by tcpdump'ing the adapters on either the Hypervisor or the nodes. 29 29 On the hypervisor (RHEL6.8 host), I attempt to capture network traffic like this: 30 {{{ 30 31 # tcpdump -nevi vboxnet1 32 }}} 31 33 or 34 {{{ 32 35 # tcpdump -nevi vboxnet2 33 36 }}} 34 37 On the undercloud node, I attempt to capture traffic like this: 38 {{{ 35 39 # tcpdump -nevi eth1 (connected to vboxnet1) 40 }}} 36 41 or 42 {{{ 37 43 # tcpdump -nevi eth2 (connected to vboxnet2) 38 44 }}} 39 45 At the begining of a deployment (PXE'ing the overcloud nodes), things start working properly but stop after just a few minutes. 40 46 41 47 Things were working properly with: 42 VBox 5.0.26 + Kernel 2.6.32-642.3.1.el6.x86_6443 VBox 5.0.26 + Kernel 2.6.32-642.4.2.el6.x86_6444 VBox 5.1.6 + Kernel 2.6.32-642.4.2.el6.x86_6448 - VBox 5.0.26 + Kernel 2.6.32-642.3.1.el6.x86_64 49 - VBox 5.0.26 + Kernel 2.6.32-642.4.2.el6.x86_64 50 - VBox 5.1.6 + Kernel 2.6.32-642.4.2.el6.x86_64 45 51 46 I am also taking great care in making sure that the vbox kernel modules are freshly compiled on the running kernel by cleaning out the /lib/modules and forcing a rebuild (using DKMS on VBox 5.0 and using vboxconfigon VBox 5.1)52 I am also taking great care in making sure that the vbox kernel modules are freshly compiled on the running kernel by cleaning out the /lib/modules and forcing a rebuild (using DKMS on VBox 5.0 and using `vboxconfig` on VBox 5.1) 47 53 48 54 Things stop working after just a few minutes with: 49 VBox 5.1.6 + Kernel 2.6.32-642.6.1.el6.x86_64 (the latest RHEL6.8 kernel).55 - VBox 5.1.6 + Kernel 2.6.32-642.6.1.el6.x86_64 (the latest RHEL6.8 kernel). 50 56 51 57 I am currently trying to isolate the issue and see if I can provide more data. 58 52 59 Is there a way to put an hostonly network in debug mode? 60 53 61 Thanks,