Configuring secondary network adapters through VMware on Windows is not yet supported

331 views
Skip to first unread message

andr...@gmail.com

unread,
Nov 16, 2017, 1:04:59 AM11/16/17
to Vagrant
When I do `vagrant up`, I'm getting this:

==> default: Configuring network adapters within the VM...
==> default: Configuring secondary network adapters through VMware
==> default: on Windows is not yet supported. You will need to manually
==> default: configure the network adapter.

Can someone explain the meaning to me? 

I don't think I have a secondary adapter. The VM seems to work as expected not problem. 

Is it possible to switch off the warning?

Vagrantfile

# -*- mode: ruby -*-
# vi: set ft=ruby :

Vagrant.configure("2") do |config|

  config.vm.box = "E:\\mybox-0.1.0.box"

  config.vm.provider :vmware_workstation do |v, override|
    v.gui = true
    v.vmx["ethernet0.addresstype"] = "generated"
    v.vmx["ethernet0.linkstatepropagation.enable"] = "FALSE"
    v.vmx["ethernet0.vnet"] = "vmnet8"
    v.whitelist_verified = true
  end
end


mybox.vmx

.encoding = "UTF-8"
bios.bootorder = "hdd,CDROM"
checkpoint.vmstate = ""
cleanshutdown = "FALSE"
config.version = "8"
displayname = "TEST: default"
ehci.pcislotnumber = "-1"
ehci.present = "FALSE"
ethernet0.addresstype = "generated"
ethernet0.connectiontype = "nat"
ethernet0.linkstatepropagation.enable = "FALSE"
ethernet0.pcislotnumber = "192"
ethernet0.present = "TRUE"
ethernet0.virtualdev = "vmxnet3"
ethernet0.vnet = "vmnet8"
extendedconfigfile = "mybox.vmxf"
filesearchpath = ".;G:\.vagrant.d\boxes\E-VAGRANTCOLON-\Sources\packer\Templates\Vagrant VMWare Windows\box\vmware\mybox-0.1.0.box\0\vmware_desktop"
floppy0.present = "FALSE"
guestos = "windows9srv-64"
gui.fitguestusingnativedisplayresolution = "FALSE"
gui.fullscreenatpoweron = "FALSE"
gui.viewmodeatpoweron = "windowed"
hgfs.linkrootshare = "TRUE"
hgfs.maprootshare = "TRUE"
ide1:0.clientdevice = "TRUE"
ide1:0.devicetype = "cdrom-raw"
ide1:0.filename = "auto detect"
ide1:0.present = "TRUE"
isolation.tools.hgfs.disable = "FALSE"
memsize = "8192"
migrate.hostlog = ".\windows-2016-base-8bd188b6.hlog"
monitor.phys_bits_used = "42"
msg.autoanswer = "true"
numa.autosize.cookie = "20001"
numa.autosize.vcpu.maxpervirtualnode = "2"
numvcpus = "2"
nvram = "mybox.nvram"
pcibridge0.pcislotnumber = "17"
pcibridge0.present = "TRUE"
pcibridge4.functions = "8"
pcibridge4.pcislotnumber = "21"
pcibridge4.present = "TRUE"
pcibridge4.virtualdev = "pcieRootPort"
pcibridge5.functions = "8"
pcibridge5.pcislotnumber = "22"
pcibridge5.present = "TRUE"
pcibridge5.virtualdev = "pcieRootPort"
pcibridge6.functions = "8"
pcibridge6.pcislotnumber = "23"
pcibridge6.present = "TRUE"
pcibridge6.virtualdev = "pcieRootPort"
pcibridge7.functions = "8"
pcibridge7.pcislotnumber = "24"
pcibridge7.present = "TRUE"
pcibridge7.virtualdev = "pcieRootPort"
policy.vm.mvmtid = ""
powertype.poweroff = "soft"
powertype.poweron = "soft"
powertype.reset = "soft"
powertype.suspend = "soft"
proxyapps.publishtohost = "FALSE"
remotedisplay.vnc.enabled = "false"
remotedisplay.vnc.ip = "127.0.0.1"
remotedisplay.vnc.key = "redacted"
remotedisplay.vnc.password = "redacted"
remotedisplay.vnc.port = "5900"
replay.filename = ""
replay.supported = "FALSE"
scsi0.pcislotnumber = "160"
scsi0.present = "TRUE"
scsi0.saswwid = "50 05 05 69 2b 39 4c 70"
scsi0.virtualdev = "lsisas1068"
scsi0:0.filename = "disk-cl3.vmdk"
scsi0:0.present = "TRUE"
scsi0:0.redo = ""
sharedfolder.maxnum = "1"
softpoweroff = "FALSE"
sound.startconnected = "FALSE"
svga.guestbackedprimaryaware = "TRUE"
tools.synctime = "TRUE"
tools.upgrade.policy = "upgradeAtPowerCycle"
usb.pcislotnumber = "-1"
usb.present = "FALSE"
uuid.action = "create"
uuid.bios = "56 4d 21 59 2b 39 4c 79-ad f9 36 1a 34 a4 89 e1"
uuid.location = "56 4d 21 59 2b 39 4c 79-ad f9 36 1a 34 a4 89 e1"
vc.uuid = ""
virtualhw.productcompatibility = "hosted"
virtualhw.version = "11"
vmci0.id = "1861462627"
vmci0.pcislotnumber = "35"
vmci0.present = "TRUE"
vmotion.checkpointfbsize = "4194304"
vmotion.checkpointsvgaprimarysize = "33554432"
ethernet0.generatedAddress = "00:0c:29:a4:89:e1"
ethernet0.generatedAddressOffset = "0"
vm.genid = "4365688414994605568"
vm.genidX = "6290051713079307348"
unity.wasCapable = "TRUE"
sharedFolder0.present = "TRUE"
sharedFolder0.enabled = "TRUE"
sharedFolder0.readAccess = "TRUE"
sharedFolder0.writeAccess = "TRUE"
sharedFolder0.hostPath = "G:\TEST"
sharedFolder0.guestName = "-vagrant"
sharedFolder0.expiration = "never"

Andrew

Alvaro Miranda Aguilera

unread,
Nov 16, 2017, 6:24:40 AM11/16/17
to vagra...@googlegroups.com
Hello

is the VM a windows OS?

The message is this:

==> default: Configuring secondary network adapters through VMware  on Windows is not yet supported. 
==> default: You will need to manually configure the network adapter.

The idea is to tell windows os users that Vagrant will create the network interface, but won't try to configure it with static info if present.

I think I see what you mean, I created this:

Thanks
Alvaro.



--
This mailing list is governed under the HashiCorp Community Guidelines - https://www.hashicorp.com/community-guidelines.html. Behavior in violation of those guidelines may result in your removal from this mailing list.
 
GitHub Issues: https://github.com/mitchellh/vagrant/issues
IRC: #vagrant on Freenode
---
You received this message because you are subscribed to the Google Groups "Vagrant" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vagrant-up+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vagrant-up/5633e388-c9ef-4c10-82de-2ec1b033c2ae%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.



--
Alvaro

andr...@gmail.com

unread,
Nov 16, 2017, 1:07:31 PM11/16/17
to Vagrant
Right. Thank you.
To unsubscribe from this group and stop receiving emails from it, send an email to vagrant-up+...@googlegroups.com.



--
Alvaro

Andrew Savinykh

unread,
Nov 16, 2017, 1:36:01 PM11/16/17
to vagra...@googlegroups.com
Is it possible to configure primary adapater as bridge with vmware in vagrant file? If yes, how? When I try to do this via public_network, I'm getting second adapter - not what I want.

You received this message because you are subscribed to a topic in the Google Groups "Vagrant" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/vagrant-up/cDYHmdLpmow/unsubscribe.
To unsubscribe from this group and all its topics, send an email to vagrant-up+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vagrant-up/CAHqq0ey036HMc5t_AoUpwYtiEvd1qbGKhc951inHMmUT%2Bop7Yg%40mail.gmail.com.
Reply all
Reply to author
Forward
0 new messages