Netgate Discussion Forum
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Search
    • Register
    • Login

    [How-To] Using VMXNET2/3 NICs in pfSense 2.0

    Scheduled Pinned Locked Moved Virtualization
    29 Posts 13 Posters 60.0k Views
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • C
      Comexans
      last edited by

      @pfSense.User.1138:

      I've just updated from 2.0 Release to 2.0.1 Release and found the vendor supplied VMware Tools failed to start on boot after the upgrade.
      But fortunately its a quick and easy fix.

      On the console open the shell ( press 8 )
      Then type:

      vmware-config-tools.pl
      

      When vmware-config-tools.pl is done running type:

      exit
      

      To leave the shell again.

      VMware Tools status for the pfSense VM in your vSphere Client should now be "Running".
      As an extra check, try reboot the VM to verify that VMware Tools is running when pfSense is back up.

      Hi,

      I started a fresh install from the pfSense 2.0.1 amd64 liveCD on an ESX 5.1 host
      The VM was initially configured with 2 E1000 NICs the second NIC is connected to a 802.1Q trunk vswitch (VLAN ID 4095).
      I have been able to set the first NIC as the WAN interface (no VLAN) and the 5 VLANs on the second NIC as LAN and OPT1 to OPT4 interfaces.
      The routing and firewalls seems to work correctly.

      After reading this posts, I decided to benefit of vmxnet3 NICs as they are supposed to improve network throughput. I wanted also to be able to manage te VM with VMTools.

      So I have installed the "native" VM Tools, by following this thread and also  this tutorial :
      http://www.howtoforge.com/how-to-install-vmware-tools-on-pfsense-freebsd
      but I had to specify othe locations for PACKAGESITE variable (in order to dowload perl5 and compat6x-amd64 packages):```
      setenv PACKAGESITE "ftp://ftp.freebsd.org/pub/FreeBSD/ports/amd64/packages-8-stable/Latest/"

      I had also to patch 2 following files according to http://redmine.pfsense.org/issues/2010 (to support VLAN tagging on vmxnet3):
      
      *   /etc/inc/interfaces.inc
      
      *   /etc/inc/globals.inc
      
      I switched the 2 existing NICs to VMXNET 3, and resetup the interfaces and VLANs. It works !
      But I still get an issue : vSphere Client reports that the VMTools are not installed (and not running) and I can't start it using vmware-config-tools.pl script :
      

      vmware-config-tools.pl
      Initializing...

      Making sure services for VMware Tools are stopped.

      Stopping VMware Tools services in the virtual machine:
        Guest operating system daemon:                                      done
        Guest memory manager:                                              done

      The vmblock enables dragging or copying files between host and guest in a
      Fusion or Workstation virtual environment.  Do you wish to enable this feature?
      [no]

      No X install found.

      Starting VMware Tools services in the virtual machine:
        Switching to guest configuration:                                  done
        Guest memory manager:                                              done
        Guest operating system daemon:                                    failed
      Unable to start services for VMware Tools

      Execution aborted.

      
      Is anybody can help me to make this running ?
      1 Reply Last reply Reply Quote 0
      • J
        jacob81286
        last edited by

        To fix your Error "guest operating system daemon:  failed" while installing the vmware tools for esxi 5.1 issue the following commands

        
        ln -s /usr/local/lib/compat/libm.so.4 /usr/local/lib
        ln -s /usr/local/lib/compat/libc.so.6 /usr/local/lib
        ln -s /usr/local/lib/compat/libthr.so.2 /usr/local/lib
        ln -s /usr/local/lib/compat/libkvm.so.3 /usr/local/lib
        
        
        1 Reply Last reply Reply Quote 0
        • A
          asterix
          last edited by

          Hi,
          I am trying to get my VM working on VMXNET3 but pfSense won't detect the NICs. VMXNET2 NICs are identified and I can use them but I want to switch to VMXNET3.

          I am running a AMD64 2.0.1 pfSense version on a VM with 8GB RAM.

          The guide in this thread works but for VMXNET2 only. Are there an special 64-bit drivers for VMXNET3?

          1 Reply Last reply Reply Quote 0
          • johnpozJ
            johnpoz LAYER 8 Global Moderator
            last edited by

            so you installed the native tools from vmware?  This would have the drivers - Mine sees the nics, but I am running 32bit of pfsense.

            vmx3f0: flags=8802 <broadcast,simplex,multicast>metric 0 mtu 1500
                    options=403bb <rxcsum,txcsum,vlan_mtu,vlan_hwtagging,jumbo_mtu,vlan_hwcsum,tso4,tso6,vlan_hwtso>ether 00:0c:29:1e:18:90
                    media: Ethernet 10Gbase-T
                    status: active
            vmx3f1: flags=8802 <broadcast,simplex,multicast>metric 0 mtu 1500
                    options=403bb <rxcsum,txcsum,vlan_mtu,vlan_hwtagging,jumbo_mtu,vlan_hwcsum,tso4,tso6,vlan_hwtso>ether 00:0c:29:1e:18:9a
                    media: Ethernet 10Gbase-T

            I just don't currently have them enabled because I don't see any point to using them and had issues with vpn outbound from client inbound when they were being used.</rxcsum,txcsum,vlan_mtu,vlan_hwtagging,jumbo_mtu,vlan_hwcsum,tso4,tso6,vlan_hwtso></broadcast,simplex,multicast></rxcsum,txcsum,vlan_mtu,vlan_hwtagging,jumbo_mtu,vlan_hwcsum,tso4,tso6,vlan_hwtso></broadcast,simplex,multicast>

            An intelligent man is sometimes forced to be drunk to spend time with his fools
            If you get confused: Listen to the Music Play
            Please don't Chat/PM me for help, unless mod related
            SG-4860 24.11 | Lab VMs 2.8, 24.11

            1 Reply Last reply Reply Quote 0
            • C
              casper4242
              last edited by

              You'll have to patch some wrong assumptions in pfsense code about how interfaces are named.
              Unfortunately, vmxnet3 creates somewhat odd named interface names with a number in them, and
              the 2.0.1 code assumes that as soon as an interface name contains a number, that's the start of the
              interface number, as in "re3" being the 3rd unit of the "re" driver. Check this whole thread,
              the required fixes are already described here.

              This is fixed in 2.1.

              About the issue of the missing libraries: instead of symlinking, you can also put the following statement
              into /usr/local/etc/rc.d/vmware-tools.sh at the beginning (but of course after the #!/bin/sh line):

              /sbin/ldconfig -m /usr/local/lib/compat

              Cheers,
              Markus

              1 Reply Last reply Reply Quote 0
              • johnpozJ
                johnpoz LAYER 8 Global Moderator
                last edited by

                yeah I am running 2.1.. so explains why I don't have any issues with them.

                An intelligent man is sometimes forced to be drunk to spend time with his fools
                If you get confused: Listen to the Music Play
                Please don't Chat/PM me for help, unless mod related
                SG-4860 24.11 | Lab VMs 2.8, 24.11

                1 Reply Last reply Reply Quote 0
                • A
                  asterix
                  last edited by

                  ok I had missed the amd64 part.
                  New problem now. I see the new vmxnet3 NICs and I assign them the IP addresses just like the earlier NICs. Even the WAN gets the internet IP. But I cannot access or even ping the pfSense IP address after that. They become totally unresponsive. Don't see this issue with vmxnet2

                  1 Reply Last reply Reply Quote 0
                  • johnpozJ
                    johnpoz LAYER 8 Global Moderator
                    last edited by

                    And is the nic using vmx3 connected in your esxi settings?

                    An intelligent man is sometimes forced to be drunk to spend time with his fools
                    If you get confused: Listen to the Music Play
                    Please don't Chat/PM me for help, unless mod related
                    SG-4860 24.11 | Lab VMs 2.8, 24.11

                    1 Reply Last reply Reply Quote 0
                    • A
                      asterix
                      last edited by

                      Not sure what you mean by connected in esxi settings.

                      Just like changing to vmxnet2 I shut down the vm, edit settings, remove old NICs and add new vmxnet3. Reboot the vm, assign IP address to the interfaces. Thats it.

                      1 Reply Last reply Reply Quote 0
                      • johnpozJ
                        johnpoz LAYER 8 Global Moderator
                        last edited by

                        In your settings for your nic - there is a connected checkbox, and connect on power on checkbox.

                        An intelligent man is sometimes forced to be drunk to spend time with his fools
                        If you get confused: Listen to the Music Play
                        Please don't Chat/PM me for help, unless mod related
                        SG-4860 24.11 | Lab VMs 2.8, 24.11

                        1 Reply Last reply Reply Quote 0
                        • A
                          asterix
                          last edited by

                          Of course all NICs are connected. How would I see the NICs during boot if they weren't connected.

                          1 Reply Last reply Reply Quote 0
                          • First post
                            Last post
                          Copyright 2025 Rubicon Communications LLC (Netgate). All rights reserved.