Recommended Posts

so lets compare build -- I am using

VMware ESXi 5.0.0 build-623860 from VM, are you running the same or you using the HP builds?

BTW - question for you, do you have or do you know how to enable the other hardware listings in the health section.. I have tried installing the cim providers from HP.. But has not added anything.. Would like to see fan and hdd, etc.

post-14624-0-50733000-1335464310.jpg

yeah I agree the physical nic should not be used in a vm to vm copy, or iperf test.

I show 1.55Gbps with iperf between vms - since the nic is only 1Gb, my test kind of shows that the physical nic is not involved at all in this copy.

Now that you bring up that is only memory -- maybe his issue is some bad memory? 300mbps seems pretty bad!

so lets compare build -- I am using

VMware ESXi 5.0.0 build-623860 from VM, are you running the same or you using the HP builds?

I'm using the Vanilla ESXi 5.0.0 build-469512. Didn't even realise patches would be out, I just assumed the build I downloaded would be up-to-date.

Am Updating Via the following method:


cd /scratch/downloads
wget http://hostupdate.vmware.com/software/VUM/OFFLINE/release-328-20120312-212851/update-from-esxi5.0-5.0_update01.zip
wget http://hostupdate.vmware.com/software/VUM/OFFLINE/release-331-20120408-206167/ESXi500-201204001.zip
vim-cmd hostsvc/maintenance_mode_enter
esxcli software vib install -d /scratch/downloads/update-from-esxi5.0-5.0_update01.zip
esxcli software vib install -d /scratch/downloads/ESXi500-201204001.zip
vim-cmd hostsvc/maintenance_mode_exit
reboot
rm /scratch/downloads/update-from-esxi5.0-5.0_update01.zip
rm /scratch/downloads/ESXi500-201204001.zip
[/CODE]

BTW - question for you, do you have or do you know how to enable the other hardware listings in the health section.. I have tried installing the cim providers from HP.. But has not added anything.. Would like to see fan and hdd, etc.

I get no health information display either. I too would like to be able to at very least monitor the HDD's SMART capabilities.

From what I understand if you are copying files between VM's it doesn't even touch the wire i.e the NIC it uses shared memory? Thats why you would get impressive speeds VM to VM Am I right..

Thats the general consensus, so why is mine going so slow... hmm? hopefully upgrading to the new build will help.

one thing to keep in mind on the u1, it seems to break the autostart feature. Work around is to just create add some commands in the rc file -- not sure if you autostart any of your vms -- but if you do, you will wonder why after you update it no longer works.

one thing to keep in mind on the u1, it seems to break the autostart feature. Work around is to just create add some commands in the rc file -- not sure if you autostart any of your vms -- but if you do, you will wonder why after you update it no longer works.

Got those commands handy?

I auto-start my pfSense and Server 2008 Domain Controller VMs. The rest I don't really need. But without pfSense I cannot remote in, and without the Domain Controller, DNS doesn't work.

one thing to keep in mind on the u1, it seems to break the autostart feature. Work around is to just create add some commands in the rc file -- not sure if you autostart any of your vms -- but if you do, you will wonder why after you update it no longer works.

Ah, I noticed that. Nice that it's not just me.

Problem I had on an HP MicroServer N36 was my network throughput on a Unix machine as an ESXi host was terrible (5MB/s up & 15MB/s down) compared to when I put just a base Unix system on (90MB/s up and 110MB/s down). I now run a Unix based server with VirtualBox VM's for my needs, it never needs a restart. So far I am loving it. Same config, 8GB ram, 120GB hdd for OS's and 4 1.5TB drives in raid Z1 for data.

SK[' timestamp=1335508472' post='594828125]

Ah, I noticed that. Nice that it's not just me.

I'll let you know if I have the same issue this afternoon after the upgrade. I'm planning the upgrade at 2:30PM today, as thats when most of my household is offline.

Problem I had on an HP MicroServer N36 was my network throughput on a Unix machine as an ESXi host was terrible (5MB/s up & 15MB/s down) compared to when I put just a base Unix system on (90MB/s up and 110MB/s down). I now run a Unix based server with VirtualBox VM's for my needs, it never needs a restart. So far I am loving it. Same config, 8GB ram, 120GB hdd for OS's and 4 1.5TB drives in raid Z1 for data.

I'd go this route, but as the server has a WAN connection I'd rather go for something a little more closed source.

I guess something we never asked is; do all your VMs have vmware-tools installed on them, and are using hardware configuration version 8?

All Version 8, All with VMWare-Tools installed except for pfSense, that's running Vanilla.

Got those commands handy?

* Use a SSH-client like PuTTy to connect to your host.

* Once logged into the host, run the command "vim-cmd vmsvc/getallvms" to find all VMs on your host and theire IDs (first column). Note the IDs for the VMs you would like to autostart. Or if you would like to start everyone, theres no need to remember the ID.

* Now edit /etc/rc.local with the editor "vi" using this command "vi /etc/rc.local"

* To enter insert-mode in "vi" press "i"-key.

* Somewhere in that file (I put mine above the if-statement) write this if you want every VM to autostart:

* * for i in $(vim-cmd vmsvc/getallvms|cut -f1 -d" "|grep -v Vmid); do vim-cmd vmsvc/power.on $i; sleep 10; done

* And if you only would like to start a few of the VMs on the host, this will be enough:

* * vim-cmd vmsvc/power.on ID_OF_VM

* * sleep NUMBER_OF_SECONDS (10 in my case)

* * vim-cmd vmsvc/power.on ID_OF_VM2

* * etc...

* When you are done editing, press ESC-key to exit "insert"-mode and then write ":wq" to write and quit.

* Reboot your host and the VMs should autostart once again.

so here for example is mine

-----

~ # cat /etc/rc.local

#!/bin/sh

export PATH=/sbin:/bin

log() {

echo "${1}"

/bin/busybox logger init "${1}"

}

# execute all service retgistered in ${rcdir} ($1 or /etc/rc.local.d)

vim-cmd vmsvc/power.on 5

sleep 60

vim-cmd vmsvc/power.on 3

sleep 60

vim-cmd vmsvc/power.on 8

if [ -d "${1:-/etc/rc.local.d}" ] ; then

<snippped>

----

nope -- no nano, I even looked around on how to add it. I could not find a way.

Small price to pay in functionality for an awesome product! (bar the issues I'm having, which I believe will go once I upgrade).

To further note, I've even moved VM SwapFiles to a separate Data Store to attempt to further improve speeds.

You should be able to add nano no problem! Download the source code to nano, configure it for statically linked, and move the resultant binary to ESX in /bin and you should be able to use it.

(Just compiled, I'll upload it later)

All,

Unfortunately after the upgrade I'm still facing the same performance issues, both between VMs and out to other clients on the network. Tried with a dumb switch today also, no difference.

It's 100% an ESXi switch issue.

Can you guys run through how you setup your VSwitches?

looking forward to the nano binary - that would be sweet!

As to vswitch setup, there isn't much too it.. You have not done any advanced option changes have you?

One thing I would double check.. You mentioned you changed your MTU to 9000 at one point. From your last screen of your vswitch you show 1500. Did you remember to change the MTU/Jumbo Frame setting on the nic in your vms?

have you done any changes to the nic settings in the vms?

Mine are default settings, the only thing I do on my vms related to network settings is I do disable ipv6 if not going to be using it. I turn off the llmnr (link-layer topology discovery mapper/responder) crap

IPv6 is fully disabled, not just uncheck the binding - on the vm

reg add hklm\system\currentcontrolset\services\tcpip6\parameters /v DisabledComponents /t REG_DWORD /d 255

This for one makes my ipconfig /all much easier to read ;)

Other than that I don't recall doing anything else. So we are on the same hardware, same os even for vms -- WTF your vswitch only showing 300mbps with iperf while mine shows 1.55Gbps?? You are showing a 10gbps connection on the vm nic now that you changed to vmxnet3 right?

At a loss here to what could be so different in our setups? Same freaking hardware N40L, esxi 5 u1 from vmware. Are you running your esxi off a usb disk or anything? Mine is installed to the 250GB drive that came with the N40L

Have made any changes to the bios settings of the N40L? What bios version do you have - mine is dated 7/29/11 I believe - I know its 7/11 something.

"I still need to test the thick/thin disc theory yet though." - this might have some issues with your file copies to and from vms, but should have nothing to do with the speed he is seeing on his vswitch - have you run an Iperf test between vms, and to box outside your host. Do you also see bad performance? Cpressland was seeing like 355Mbps, I show like 800 between vm and box outside. And 1.55Gbps between vms connected to the same vswitch. Iperf would remove any disk bottlenecks from the test.

Have you taken sniff using one of your vms -- is it possible that your vswitch is swamped with other traffic, maybe a broadcast storm or something going on? Turn on all the networking items -- do you see anything weird.. Mine is pretty much zero -- not doing anything currently.

post-14624-0-81550800-1335540080_thumb.j

Have you done any tweaking of the power management setting? Mine is set to balanced.

Under your security profile - what services do you have running/stopped?

post-14624-0-17908000-1335540711.jpg

So mediafire requires an account now... unimpressed. *continues to look for an alternative host*

Alright done, http://www63.zippysh...76335/file.html

Damnit, segmentation fault when running on ESXi...

Damn. Tried a full static compile of ncurses AND nano and it still won't work :( shame

Edited by n_K

As to vswitch setup, there isn't much too it.. You have not done any advanced option changes have you?

No Advanced settings at all, the only thing I changed from the defaults is the number of ports, which I brought down from 100+ to 24.

have you done any changes to the nic settings in the vms?

Nope, other than setting static IPs.

Are you running your esxi off a usb disk or anything?

Running off of an 8GB Kingston SSD mounted in the CD Bay area and connected directly to the sata connection on the mobo. While not the fastest SSD, it's a crap ton faster than a standard HDD.

Have made any changes to the bios settings of the N40L? What bios version do you have - mine is dated 7/29/11 I believe - I know its 7/11 something.

BIOS is stock - no upgrades done due to requiring to install Windows to update.

Have you done any tweaking of the power management setting? Mine is set to balanced.

Mine is set to 'High Power'

Under your security profile - what services do you have running/stopped?

All off, except:

tbtd

SSH

Direct Console UI

So - Budman has been VPNed into my Network for the last few days and we've been trying to figure this out. We've covered BIOS updates, swapping NICs around, updating VMWare Tools, disabling DNS on Windows Server 2008 R2 due to it flooding the network with UDP Packets. We've tried everything. Any further ideas Neowin?!

Would you please post this in the WMWare forums. I would really appreciate this to be brought to thier attention and it may get resolved quicker! Thank you!!!

I would also be interested in a solution for this. I dumped ESXi because of the poor network performance. I've gone with a straight Solaris solution, I would however love to use ESXi, hell I'd even pay for it if I was guaranteed that it would give me the full performance of my network. But without this, ESXi is not right for me.

This topic is now closed to further replies.
  • Posts

    • It's hard not to when they are shoehorning Ai into EVERYTHING. Some are active users by choice, I bet a lot of them are because it's shoved in their face the entire time.
    • Thunderbird 152.0 by Razvan Serea Thunderbird is a free, open-source, cross-platform application for managing email and news feeds. It is a local (rather than a web-based) email application that is powerful yet easy-to-use. Thunderbird is clean and elegant by default, but easily customizable to match your workflow and visual preferences. It is loaded with unique and powerful features. Thunderbird is developed, tested, translated and supported by the folks at Mozilla Corporation and by a group of dedicated volunteers. Thunderbird gives you control and ownership over your email. There are lots of add-ons available for Thunderbird that enable you to extend and customize your email experience. Thunderbird gives you IMAP/POP support, a built-in RSS reader, support for HTML mail, powerful quick search, saved search folders, advanced message filtering, message grouping, labels, return receipts, smart address book LDAP address completion, import tools, and the ability to manage multiple e-mail and newsgroup accounts. Thunderbird 152.0 changelog: SecurityDevices enabled in enterprise policies One-click account setup for Thundermail accounts What’s Changed Use 'Add' instead of 'New' for account, calendar, address book creation buttons GMail OAuth updated to use PKCE Mail server hostname also checked when detecting address books and calendars Updated about:rights to replace local with hosted url 'Hide completed tasks' now also hides cancelled tasks What’s Fixed New mail alerts appeared on wrong monitor in three-monitor setup Spam messages triggered new mail notifications before being moved to Spam folder Filtered IMAP or NNTP subscriptions were lost after closing Subscribe dialog 'Download Headers' dialog for newsgroups failed to open Messages nested deeper than 255 levels disappeared from threading view Performing Delete followed by Undo on thread parent message could corrupt view Single messages still appeared collapsible after thread members were deleted Updated threads remained misordered until folder refresh or resort Non-threaded subject sorting separated 'RE:' replies from original messages BCC recipients were included in signed email headers Filter search on Body missed draft messages containing German umlauts Thunderbird could crash during local message search Blocked file warning showed without 'Unblock File' button in compose window Forwarding/Redirecting Exchange messages failed with NS_ERROR_OUT_OF_MEMORY Compose window closed early and send progress dialog hung after NNTP failure Compose window stayed open after sending when mailnews.sendInBackground set Microsoft OAuth2 failed when HTTPS localhost redirect was not intercepted Pasting contact photos stopped working when photo button had focus Filter dialog lacked focus ring and had poorly distinguishable buttons Subfolder kept stale accessibility unread count after unread messages were deleted 'Edit as New Message' and inline 'Forward' not possible with PGP-signed messages Various MIME improvements EWS messages could go missing from folder view IMAP "Show only subscribed folders" could not be changed without restart Unable to delete more than 1000 messages at a time on Microsoft 365 EWS folders in Trash were moved to Trash again instead of being hard deleted IMAP notifications repeated for emails read on another device after sleep wake POP3 deadlocked when server went silent without closing socket Calendar acceptance no longer distinguished between single occurrence and series Transparent popups on macOS made calendar event editing difficult Duplicate attendees were added to invitations instead of being filtered out Task percentage complete was not preserved separately from status in tooltips Visual and UX improvements Security fixes Download: Thunderbird 152.0 for Windows (EN/US) | 32-bit | ~70.0 MB (Open Source) Download: Thunderbird 152.0 for Mac OS (EN/US) | 145.0 MB Download: Thunderbird 152.0 in other languages View: Thunderbird Website | Screenshot | Release Notes Get alerted to all of our Software updates on Twitter at @NeowinSoftware
    • Nearly half of American adults now use AI, but concerns are also growing by Hamid Ganji Since the launch of ChatGPT in 2022, the way people research, get their news, and perform routine tasks has changed dramatically. Now, almost everything around us has a touch of AI, and companies are trying to embed it into nearly every product and service they offer. With that in mind, new research shows how Americans are actually adopting this change and using AI in their everyday lives. According to new research conducted by the Pew Research Center, 49% of American adults now use AI chatbots like ChatGPT or Gemini. This marks a significant increase over last year, when only 33% of American adults reported using AI. Additionally, four in ten U.S. adults (42%) said they use AI tools to research information, while 38% said they use these tools to handle tasks at work. Entertainment, image and video editing, and getting medical advice are among the other ways Americans are using AI. Moreover, ChatGPT dominates the U.S. AI market, with 44% of respondents saying they use OpenAI's chatbot. Gemini follows at 24%, while Copilot and Meta AI account for 17% and 14%, respectively. Respondents also said that AI chatbots generally have a positive impact on their productivity and how informed they are. But when it comes to AI’s impact on society, Americans remain largely skeptical. About 40% of American adults believe AI will be more harmful than beneficial to society over the next 20 years. Additionally, 31% expect AI to have a negative effect on them personally. Another 31% of respondents say AI could be equally positive and negative. As for data security, pessimism remains high: 71% of respondents say AI will make their personal information less secure, while only 3% believe it will make their data more secure. American adults also largely lack confidence in both the government and AI companies when it comes to regulating and developing AI. About 67% of Americans have little to no confidence in the U.S. government’s ability to regulate AI effectively. Six in ten adults are also not confident that U.S. companies will develop and use these tools responsibly.
    • MultiOS-USB 0.11.1 by Razvan Serea MultiOS-USB is a versatile, open-source utility designed to create multiboot USB drives capable of hosting multiple operating systems on a single portable device. The project simplifies the process of building a bootable USB by automating the configuration of various boot loaders and file systems, enabling users to install and run diverse operating systems, including Windows, Linux distributions, and diagnostic tools, directly from one drive. It supports ISO booting and persistence, which allows changes made during live sessions to be retained, making it ideal for testing, troubleshooting, or system recovery. Features: BIOS and UEFI support Secure Boot support (boot, manage uefi keys) Load UEFI drivers Launch .efi executables and other boot loaders Boot Linux from .iso images Boot WinPE from bootable .wim images Boot Windows 10/11 installer from ISO (currently, SB must be disabled during installation) Boot Linux installer from network (experimental) Boot locally installed systems: Linux, Windows Automatically update configuration files Without background services exFAT file system support Automatic detection of compatible ISO images (GRUB loopback) Support for systems without loopback support Allows customisation of ISO boot menu (for example: custom kernel options) Support for USB, SSD, nvme, mmcblk, loop, nbd and virtual disks Support for x86, x86_64 A list of tested ISO images can be found here MultiOS-USB 0.11.1 changelog: 68122b7: Fixed-release AUR package #63 fba0283: Update shim to 16.1 8c2ae95: Update grub to v2.14-1 ea15c1d: Update Memtest86+ to v8.10 162f4e6: Add secureblue (#71) b2da8ae: Add AerynOS (#74) ac6640e: Bump config.version 34e9ca6: Add Bluefin (#72) 7a10edd: Add Aurora (#66) cab701b: Update wimboot to v2.9.0-1 90da7f7: Fix Windows error: 0x80070001 - 0x4002F (#52) 2dea73d: Add Microsoft certificates 01f479e: Remove old efi_uga module Download: MultiOS-USB 0.11.1 | 5.3 MB (Open Source) View: MultiOS-USB Website | Screenshot Get alerted to all of our Software updates on Twitter at @NeowinSoftware
  • Recent Achievements

    • One Month Later
      Vincian earned a badge
      One Month Later
    • First Post
      Jocimo earned a badge
      First Post
    • Week One Done
      suprememobiles48 earned a badge
      Week One Done
    • One Month Later
      Windows Guy earned a badge
      One Month Later
    • One Month Later
      Prasann earned a badge
      One Month Later
  • Popular Contributors

    1. 1
      +primortal
      509
    2. 2
      +Edouard
      172
    3. 3
      PsYcHoKiLLa
      90
    4. 4
      Steven P.
      76
    5. 5
      neufuse
      69
  • Tell a friend

    Love Neowin? Tell a friend!