Extremely slow NAT within a VMWare ESXi host using Linux VMsfaking NAT with a VMware distributed switch across multiple hostsHow to route public static IP to a virtual machine on a vmware ESXi host?Create separate Network for testing purposeESXi network setup for isolated internal virtual machinesCreating a bridged network in ESXi VSphere using VSphere clientLinux Routing with two NICs (LAN vs Internet) with NAT and bridging for VMsESXi network setup for VMs which connect to the Internet through PfSenseHow to make a linux VM working as a routerVMware ESXi VM bridgecommon Network on 2 dedicated ESXi serversCan only access the gateway at the end of my ssh ethernet tunnel why?

Do scales need to be in alphabetical order?

Why was the shrinking from 8″ made only to 5.25″ and not smaller (4″ or less)?

Can we compute the area of a quadrilateral with one right angle when we only know the lengths of any three sides?

Why didn't Boeing produce its own regional jet?

Why is consensus so controversial in Britain?

What's the in-universe reasoning behind sorcerers needing material components?

One verb to replace 'be a member of' a club

Detention in 1997

How do I gain back my faith in my PhD degree?

If human space travel is limited by the G force vulnerability, is there a way to counter G forces?

Why doesn't using multiple commands with a || or && conditional work?

Why do bosons tend to occupy the same state?

Mathematica command that allows it to read my intentions

Which is the best way to check return result?

Should I tell management that I intend to leave due to bad software development practices?

How can I determine if the org that I'm currently connected to is a scratch org?

How dangerous is XSS?

Is there a hemisphere-neutral way of specifying a season?

How did the Super Star Destroyer Executor get destroyed exactly?

Personal Teleportation: From Rags to Riches

Solving a recurrence relation (poker chips)

Can my sorcerer use a spellbook only to collect spells and scribe scrolls, not cast?

Is it possible to create a QR code using text?

What does “the session was packed” mean in this context?



Extremely slow NAT within a VMWare ESXi host using Linux VMs


faking NAT with a VMware distributed switch across multiple hostsHow to route public static IP to a virtual machine on a vmware ESXi host?Create separate Network for testing purposeESXi network setup for isolated internal virtual machinesCreating a bridged network in ESXi VSphere using VSphere clientLinux Routing with two NICs (LAN vs Internet) with NAT and bridging for VMsESXi network setup for VMs which connect to the Internet through PfSenseHow to make a linux VM working as a routerVMware ESXi VM bridgecommon Network on 2 dedicated ESXi serversCan only access the gateway at the end of my ssh ethernet tunnel why?













2















I have a VMWare ESXi host attached to a fast network.
The host runs two virtual machines:



  1. Gateway

  2. Client

The gateway has two network interfaces, one that's bridged to the external network (vSwitch0), and one that's bridged to the server's internal network (vSwitch1). It has firehol installed and it's doing NAT and port forwards for the internal client machine.



The client machine has an internal IP and connects via the gateway to the internet. Everything works well, but transfer speeds from the client to the internet is very slow, less than 30kB/s. Tranfers both to and from the gateway to the internet is fast (100Mbit), and so is traffic from the internet to the client. I've tried doing a network dump to see where the problem could be, but didn't find anything. Everything just looks like the line is slow.



Also, the transfer speed between the two VMs is almost a full gigabit. So that's not the problem either. Both machines are running Debian Lenny with no special modifications. I'm using open-vm-tools for VMXNET paravirtualized networking.










share|improve this question


























    2















    I have a VMWare ESXi host attached to a fast network.
    The host runs two virtual machines:



    1. Gateway

    2. Client

    The gateway has two network interfaces, one that's bridged to the external network (vSwitch0), and one that's bridged to the server's internal network (vSwitch1). It has firehol installed and it's doing NAT and port forwards for the internal client machine.



    The client machine has an internal IP and connects via the gateway to the internet. Everything works well, but transfer speeds from the client to the internet is very slow, less than 30kB/s. Tranfers both to and from the gateway to the internet is fast (100Mbit), and so is traffic from the internet to the client. I've tried doing a network dump to see where the problem could be, but didn't find anything. Everything just looks like the line is slow.



    Also, the transfer speed between the two VMs is almost a full gigabit. So that's not the problem either. Both machines are running Debian Lenny with no special modifications. I'm using open-vm-tools for VMXNET paravirtualized networking.










    share|improve this question
























      2












      2








      2








      I have a VMWare ESXi host attached to a fast network.
      The host runs two virtual machines:



      1. Gateway

      2. Client

      The gateway has two network interfaces, one that's bridged to the external network (vSwitch0), and one that's bridged to the server's internal network (vSwitch1). It has firehol installed and it's doing NAT and port forwards for the internal client machine.



      The client machine has an internal IP and connects via the gateway to the internet. Everything works well, but transfer speeds from the client to the internet is very slow, less than 30kB/s. Tranfers both to and from the gateway to the internet is fast (100Mbit), and so is traffic from the internet to the client. I've tried doing a network dump to see where the problem could be, but didn't find anything. Everything just looks like the line is slow.



      Also, the transfer speed between the two VMs is almost a full gigabit. So that's not the problem either. Both machines are running Debian Lenny with no special modifications. I'm using open-vm-tools for VMXNET paravirtualized networking.










      share|improve this question














      I have a VMWare ESXi host attached to a fast network.
      The host runs two virtual machines:



      1. Gateway

      2. Client

      The gateway has two network interfaces, one that's bridged to the external network (vSwitch0), and one that's bridged to the server's internal network (vSwitch1). It has firehol installed and it's doing NAT and port forwards for the internal client machine.



      The client machine has an internal IP and connects via the gateway to the internet. Everything works well, but transfer speeds from the client to the internet is very slow, less than 30kB/s. Tranfers both to and from the gateway to the internet is fast (100Mbit), and so is traffic from the internet to the client. I've tried doing a network dump to see where the problem could be, but didn't find anything. Everything just looks like the line is slow.



      Also, the transfer speed between the two VMs is almost a full gigabit. So that's not the problem either. Both machines are running Debian Lenny with no special modifications. I'm using open-vm-tools for VMXNET paravirtualized networking.







      linux debian router nat vmware-esxi






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 2 '10 at 23:23









      tstmtstm

      2881413




      2881413




















          2 Answers
          2






          active

          oldest

          votes


















          4














          I found the solution to this problem.



          For a completely internal network (that's not attached to any physical network interface) you need to disable TCP Segmentation Offloading from inside the OS.



          It's a simple command:



          ethtool -K <interface> tso off


          After this command my transfer speeds went from 30kb/s to full 100Mbit.






          share|improve this answer























          • Wow, thanks. I spent most of the afternoon trying to isolate my slow network issues. Once I finally figured out a physically backed vSwitch did not have this problem, I quickly found your answer. Awesome!

            – darron
            Jan 6 '11 at 0:05


















          0














          Did you try using another type of virtual network card?
          The E1000 emulation seems to work pretty good for me, maybe it's driver based?






          share|improve this answer























          • Yes, I have tried both with e1000 and VMXNET

            – tstm
            Mar 2 '10 at 23:33











          • I tried installing Ubuntu Karmic as a testing client. I found out interesting things. When using "Flexible" as the network interface, the speeds are good in both directions. But with both e1000 and VMXNET3 it's extremely slow.

            – tstm
            Mar 3 '10 at 23:04











          Your Answer








          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "2"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f118536%2fextremely-slow-nat-within-a-vmware-esxi-host-using-linux-vms%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          2 Answers
          2






          active

          oldest

          votes








          2 Answers
          2






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          4














          I found the solution to this problem.



          For a completely internal network (that's not attached to any physical network interface) you need to disable TCP Segmentation Offloading from inside the OS.



          It's a simple command:



          ethtool -K <interface> tso off


          After this command my transfer speeds went from 30kb/s to full 100Mbit.






          share|improve this answer























          • Wow, thanks. I spent most of the afternoon trying to isolate my slow network issues. Once I finally figured out a physically backed vSwitch did not have this problem, I quickly found your answer. Awesome!

            – darron
            Jan 6 '11 at 0:05















          4














          I found the solution to this problem.



          For a completely internal network (that's not attached to any physical network interface) you need to disable TCP Segmentation Offloading from inside the OS.



          It's a simple command:



          ethtool -K <interface> tso off


          After this command my transfer speeds went from 30kb/s to full 100Mbit.






          share|improve this answer























          • Wow, thanks. I spent most of the afternoon trying to isolate my slow network issues. Once I finally figured out a physically backed vSwitch did not have this problem, I quickly found your answer. Awesome!

            – darron
            Jan 6 '11 at 0:05













          4












          4








          4







          I found the solution to this problem.



          For a completely internal network (that's not attached to any physical network interface) you need to disable TCP Segmentation Offloading from inside the OS.



          It's a simple command:



          ethtool -K <interface> tso off


          After this command my transfer speeds went from 30kb/s to full 100Mbit.






          share|improve this answer













          I found the solution to this problem.



          For a completely internal network (that's not attached to any physical network interface) you need to disable TCP Segmentation Offloading from inside the OS.



          It's a simple command:



          ethtool -K <interface> tso off


          After this command my transfer speeds went from 30kb/s to full 100Mbit.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Mar 4 '10 at 0:20









          tstmtstm

          2881413




          2881413












          • Wow, thanks. I spent most of the afternoon trying to isolate my slow network issues. Once I finally figured out a physically backed vSwitch did not have this problem, I quickly found your answer. Awesome!

            – darron
            Jan 6 '11 at 0:05

















          • Wow, thanks. I spent most of the afternoon trying to isolate my slow network issues. Once I finally figured out a physically backed vSwitch did not have this problem, I quickly found your answer. Awesome!

            – darron
            Jan 6 '11 at 0:05
















          Wow, thanks. I spent most of the afternoon trying to isolate my slow network issues. Once I finally figured out a physically backed vSwitch did not have this problem, I quickly found your answer. Awesome!

          – darron
          Jan 6 '11 at 0:05





          Wow, thanks. I spent most of the afternoon trying to isolate my slow network issues. Once I finally figured out a physically backed vSwitch did not have this problem, I quickly found your answer. Awesome!

          – darron
          Jan 6 '11 at 0:05













          0














          Did you try using another type of virtual network card?
          The E1000 emulation seems to work pretty good for me, maybe it's driver based?






          share|improve this answer























          • Yes, I have tried both with e1000 and VMXNET

            – tstm
            Mar 2 '10 at 23:33











          • I tried installing Ubuntu Karmic as a testing client. I found out interesting things. When using "Flexible" as the network interface, the speeds are good in both directions. But with both e1000 and VMXNET3 it's extremely slow.

            – tstm
            Mar 3 '10 at 23:04















          0














          Did you try using another type of virtual network card?
          The E1000 emulation seems to work pretty good for me, maybe it's driver based?






          share|improve this answer























          • Yes, I have tried both with e1000 and VMXNET

            – tstm
            Mar 2 '10 at 23:33











          • I tried installing Ubuntu Karmic as a testing client. I found out interesting things. When using "Flexible" as the network interface, the speeds are good in both directions. But with both e1000 and VMXNET3 it's extremely slow.

            – tstm
            Mar 3 '10 at 23:04













          0












          0








          0







          Did you try using another type of virtual network card?
          The E1000 emulation seems to work pretty good for me, maybe it's driver based?






          share|improve this answer













          Did you try using another type of virtual network card?
          The E1000 emulation seems to work pretty good for me, maybe it's driver based?







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Mar 2 '10 at 23:29









          Alexandre NizouxAlexandre Nizoux

          373313




          373313












          • Yes, I have tried both with e1000 and VMXNET

            – tstm
            Mar 2 '10 at 23:33











          • I tried installing Ubuntu Karmic as a testing client. I found out interesting things. When using "Flexible" as the network interface, the speeds are good in both directions. But with both e1000 and VMXNET3 it's extremely slow.

            – tstm
            Mar 3 '10 at 23:04

















          • Yes, I have tried both with e1000 and VMXNET

            – tstm
            Mar 2 '10 at 23:33











          • I tried installing Ubuntu Karmic as a testing client. I found out interesting things. When using "Flexible" as the network interface, the speeds are good in both directions. But with both e1000 and VMXNET3 it's extremely slow.

            – tstm
            Mar 3 '10 at 23:04
















          Yes, I have tried both with e1000 and VMXNET

          – tstm
          Mar 2 '10 at 23:33





          Yes, I have tried both with e1000 and VMXNET

          – tstm
          Mar 2 '10 at 23:33













          I tried installing Ubuntu Karmic as a testing client. I found out interesting things. When using "Flexible" as the network interface, the speeds are good in both directions. But with both e1000 and VMXNET3 it's extremely slow.

          – tstm
          Mar 3 '10 at 23:04





          I tried installing Ubuntu Karmic as a testing client. I found out interesting things. When using "Flexible" as the network interface, the speeds are good in both directions. But with both e1000 and VMXNET3 it's extremely slow.

          – tstm
          Mar 3 '10 at 23:04

















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Server Fault!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f118536%2fextremely-slow-nat-within-a-vmware-esxi-host-using-linux-vms%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          RemoteApp sporadic failureWindows 2008 RemoteAPP client disconnects within a matter of minutesWhat is the minimum version of RDP supported by Server 2012 RDS?How to configure a Remoteapp server to increase stabilityMicrosoft RemoteApp Active SessionRDWeb TS connection broken for some users post RemoteApp certificate changeRemote Desktop Licensing, RemoteAPPRDS 2012 R2 some users are not able to logon after changed date and time on Connection BrokersWhat happens during Remote Desktop logon, and is there any logging?After installing RDS on WinServer 2016 I still can only connect with two users?RD Connection via RDGW to Session host is not connecting

          How to write a 12-bar blues melodyI-IV-V blues progressionHow to play the bridges in a standard blues progressionHow does Gdim7 fit in C# minor?question on a certain chord progressionMusicology of Melody12 bar blues, spread rhythm: alternative to 6th chord to avoid finger stretchChord progressions/ Root key/ MelodiesHow to put chords (POP-EDM) under a given lead vocal melody (starting from a good knowledge in music theory)Are there “rules” for improvising with the minor pentatonic scale over 12-bar shuffle?Confusion about blues scale and chords

          Esgonzo ibérico Índice Descrición Distribución Hábitat Ameazas Notas Véxase tamén "Acerca dos nomes dos anfibios e réptiles galegos""Chalcides bedriagai"Chalcides bedriagai en Carrascal, L. M. Salvador, A. (Eds). Enciclopedia virtual de los vertebrados españoles. Museo Nacional de Ciencias Naturales, Madrid. España.Fotos