If you face APD’s in your environment you can follow the KB below to possible improve the situation. http://kb.vmware.com/kb/2016122 https://kb.netapp.com/support/index?page=content&id=1014696 When using NFS datastores on some NetApp NFS filer models on an ESXi/ESX host, you experience these symptoms: The NFS …
Read MoreThis is a small powershell script to get all Guest IPs from all virtual machines $VCENTER="10.1.1.3" Connect-VIServer -Server $VCENTER $vms = Get-VM | Sort $file = "c:\ip_list.txt" foreach ($vm in $vms){ foreach($ip in $vm.Guest.IpAddress){ Write-Host "$vm $ip" "$vm $ip" | Out-File -FilePath $file -Append } } …
Read MoreSome of you might have noticed, there was a countdown on my website. So what has happened … I have decided that it was time to move on to new challenges. So I quit my job at Vodafone after nearly 15 years and joined VMware at the 1st of April 2016 as Senior Technical Support Engineer. Currently I’m really busy by doing …
Read MoreI own a MacBook 13 Retina (Mid 2014) which I use for all my activities around my VMware Homelab. Now it was time to extend and improve the usability. Therefore I bought a Belkin Thunderbolt 2 Express-HD-Dock. This dock reduce the amount of cable which I have to plugin into my MacBook from 5 to 2. So only the power and …
Read MoreMy planed new Homelab requires a lot of space due to the fact of the size of the components. But what if someone would like to have a Homelab but does not have the space in the office. One option would be to run a fully virtualized Homelab but this is limited to the resources of the computer/laptop. A more costly …
Read MoreI started to plan the upgrade my current homelab from 1x HP Microserver Gen8, 2x HP Microserver N40L and a Netgear 24 port switch. The only part which I will keep is the HP Microserver Gen8 it has already 16GB of memory and a HP SmartArray P410 with 512MB Cache module incl. battery. This machine will run my …
Read MoreUPDATEHP has changed the URL of their online repository. I have adjusted the post accordingly. Here is a way how to install patches using esxcli directly on the ESXi host from an online repository I found a great side about the available patches including commands to install them. https://esxi-patches.v-front.de/ …
Read MoreCheck_MK is able to monitor ESXi or vCenter out of the box. The configuration requires 2 steps and preferred a read only user. Login to Check_MK Create new Host Hostname: ESXi/vCenter Name or fqdn IP Address: ESXi/vCenter Management IP Save & Go to Services The error message is normal and we can ignore it. Go to Host & …
Read MoreCheck_MK is a monitoring solution which is originally based on Nagios. It has been extended with a nice web gui including a lot of new features which simplify the setup of a monitoring system. It is available as Enterprise edition and as RAW (Open Source) edition. There is a limited english documentation available. …
Read MoreThis is small powershell script to upload a file from your local disk to a webdav server. It is also proxy capable. #Complete path of the file to be uploaded $file = "d:\test_file.txt" #URL without the last "/" $url = "https://YOUR-SERVER/webdav" $proxy = "http=PROXY-SERVER:PORT" #User and Pwd for Webdav Access $user = …
Read More