Quantcast
Channel: VMware Communities: Message List
Viewing all 207266 articles
Browse latest View live

Re: Set up for management on home network and home lab virtual network on different subnet.

$
0
0

"169.254.xxx.xxx" are APIPA addresses, i.e. self-assigned addresses. This occurs if no DHCP offer is received.

Please double check the DHCP server's configuration, and the configured DHCP range.

 

André


Re: Set up for management on home network and home lab virtual network on different subnet.

$
0
0

169.254.x.x addresses are self-assigned by the guest OSes, this will happen when a DHCP client which supports APIPA does not receive an address from a DHCP server: APIPA - The Wireshark Wiki

 

They are nothing to do with VMware.

Re: Upgrade vCenter Server 6.0 U3i from Windows 2008 R2 to Windows 2012 R2 Best Practice

$
0
0

Thanks for your reply. We need to support a VDI Horizon View 6.X environment, we can't upgrade from a Windows-based vCenter & vSphere 6.0 at this time.

Re: running PowerCLI on vCenter

$
0
0

I thought as much.

 

Let’s hope the storage provider find a method for their tool which can avoid this scenario!

Re: Upgrade vCenter Server 6.0 U3i from Windows 2008 R2 to Windows 2012 R2 Best Practice

$
0
0

So you can add View 6.x to your list of unsupported software.

Re: Get VM MAC within a script pulling all of the data from the host/guests

$
0
0

Question:  When I run the correction in my script the MAC is only returned on the first VM and not the others?

 

My test one show all of the MAC's per the 3 VM's I have on that host.

$user = 'user'

$pswd = '1234'

$target = '192.168.2.221'

 

Set-PowerCLIConfiguration -InvalidCertificateAction Ignore -Confirm:$false

Connect-VIServer -Server $target -User $user -Password $pswd

 

Get-VM -PipelineVariable vm | Get-NetworkAdapter |

     Select @{N=”IP Address”;E={$nic = $_; ($vm.Guest.Nics | where{$_.Device.Name -eq $nic.Name}).IPAddress -join '|'}}, MacAddress

Disconnect-VIServer -Server $target -Confirm:$false

Re: running PowerCLI on vCenter

$
0
0

If a Storage Provider ever came to me with such a solution, where I lose VCSA support, that would be a deal-breaker

Ciper for Blast Security Protocol


vRA8 Cloud Assembly - network gateway

$
0
0

I want to pass the network gateway of a given cloud network to an Ansible playbook, but I'm having difficulties to reference it. What I'm trying to do in the blueprint:

 

resources:

  ans_server1:

    type: Cloud.Ansible

    properties:

      host: '${resource.server1.*}'

      osType: linux

      account: myansible

      username: ansible-remote

      privateKeyFile: .ssh/id_rsa_ansible

      playbooks:

        provision:

          - playbooks/config.yml

      hostVariables:

        hostname: '${resource.server1.resourceName}'

        gw: '${resource.Cloud_Network.gateway}'

        clustername: '${input.clusterName}'

  Cloud_Network:

    type: Cloud.vSphere.Network

    properties:

      networkType: existing

      name: cloud1

 

However, I get null for the gateway in vra_user_host_vars.yml:

 

{"hostname":"server-04","gw":"null","clustername":"clu1"}

 

The gateway information is correctly set in the network profile.

Re: Get VM MAC within a script pulling all of the data from the host/guests

$
0
0

That is different code from initially, you now have the Get-NetworkAdapter cmdlet in the pipeline.
Which is inherently better than the method based on the Guest property.

The Guest property only has values when the VMware Tools are installed in the Guest OS and when the VM is powered on, or was recently powered on.

 

In short:

- data under Guest depends on the VMware Tools and obtains the info from within the Guest OS

- Get-NetworkAdapter obtains the info from outside the VM (the vSphere level)

- the drawback with the outside method is that a Guest OS could overwrite a MAC address

Re: Confusing Finding - Actual results dont match

Re: Upgrade vCenter Server 6.0 U3i from Windows 2008 R2 to Windows 2012 R2 Best Practice

$
0
0

Here's your list of priorities:

 

  1. Upgrade Horizon View 6.x => at least 7.1.
  2. Upgrade/migrate vSphere 6.0 => at least 6.5 with the vCSA.
  3. Throw your Windows-based vCenter box in the trash.

Purple screen after shutdown ESXI 6.0

$
0
0

Hi

We have VMware server who has been running fine.

Today we needed to move the server from one place to another and we shut it down, move it, connected it to new switch at network and power it on.

Everythings seems to be fine until it loads the vmware (yellew screen) then we get purple screen with a error i have attached.

We have run the test from IDAC and everything is fine, all NIC's state is up and running.

The server is stick here and the only thing is to power it off.

The server is DELL PowerEdge R520ErrorVMWAre.jpg

Re: Get VM MAC within a script pulling all of the data from the host/guests

$
0
0

LucD  Makes sense - so I suspect even through the external method returns the MAC the internal version will not.

 

Yeah - I understand the difference between to the approaches now - just trying to fulfill the requirement.

Is there a method around that that would within my primary long script to return that same or no?

 

Thanks!

Gary

Re: Get VM MAC within a script pulling all of the data from the host/guests

$
0
0

You mean something like this?

 

$user='user'

$pswd='1234'

 

$target='192.168.2.221'

Set-PowerCLIConfiguration-InvalidCertificateAction Ignore -Confirm:$false

 

Write-Host""

Write-Host"**************************************************"

Write-Host"VMware Host:"

Connect-VIServer-Server $target-User $user-Password $pswd

 

Get-VMHost-Server $target| Select ApiVersion,Build,ConnectionState,CpuTotalMhz,CpuUsageMhz,CryptoState,DiagnosticPartition,ExtensionData,FirewallDefaultPolicy,HyperthreadingActive,Id,IsStandalone,LicenseKey,Manufacturer,MaxEVCMode,MemoryTotalGB,MemoryTotalMB,MemoryUsageGB,MemoryUsageMB,Model,Name,NetworkInfo,NumCpu,Parent,ParentId,PowerState,ProcessorType,StorageInfo,TimeZone,Uid,Version,VMSwapfileDatastore,VMSwapfileDatastoreId,VMSwapfilePolicy

 

Write-Host"**************************************************"

Write-Host"VMware Guest(s):"

Get-VM| Select *,

    @{N="Configured OS";E={$_.ExtensionData.Config.GuestFullname}},

    @{N="IP Address";E={@($_.guest.IPAddress[0])}},

    @{N="MAC Address:";E={(Get-NetworkAdapter-VM $_).MacAddress -join'|'}},

    @{N="Disk Type";E={(Get-Harddisk$_).Storageformat}}

 

Write-Host"VMware Guest(s) EoF"

Write-Host"**************************************************"

 

Disconnect-VIServer-Server $target-Confirm:$false


Re: Purple screen after shutdown ESXI 6.0

$
0
0

I would say open a case but you're officially unsupported right now. That's why you stay on top of patches, updates, and major versions, which, by the way from your build number appears you're using 6.0 U2 which means for the 6.0 version you're quite far behind.

Re: Get VM MAC within a script pulling all of the data from the host/guests

$
0
0

LucD - that did the trick!


You can take the rest of the day off

Or I would up for a full mind meld...

Re: Purple screen after shutdown ESXI 6.0

$
0
0

i know. But i think its so strange with this purple screen, as the server has been working perfect.

How can i upgrade it or update as the server is not respondable when the purple screen apear.

Re: Trying to use VMWare on OSX Catalina

$
0
0

Have you tried a clean install?

 

Drag fusion to the trash

empty the trash

reboot

empty the trash

reinstall fusion

Re: Purple screen after shutdown ESXI 6.0

$
0
0

How can i upgrade it or update as the server is not respondable when the purple screen apear.

Well, you really can't. You could have a hardware failure at this point. Hard to really tell. That's why you pay for support and use it.

Viewing all 207266 articles
Browse latest View live