<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>MichelleWayZ | Michelle Goossens | Blog</title><link>https://blog.michellewayz.com/</link><description>Recent content on MichelleWayZ | Michelle Goossens | Blog</description><generator>Hugo -- gohugo.io</generator><language>en</language><copyright>Copyright © 2019-2026, Michelle Goossens.</copyright><lastBuildDate>Mon, 27 Jul 2026 16:45:00 +0000</lastBuildDate><atom:link href="https://blog.michellewayz.com/index.xml" rel="self" type="application/rss+xml"/><item><title>A New Start - With an update</title><link>https://blog.michellewayz.com/a-new-start-with-an-update/</link><pubDate>Mon, 27 Jul 2026 16:45:00 +0000</pubDate><guid>https://blog.michellewayz.com/a-new-start-with-an-update/</guid><description>
&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;As part of my rebrand from an old domain I've had for many years to a new one that fits my identity better, I've succesfully migrated the blog to a new domain and new backend (it runs on a self-hosted Kubernetes cluster now).
I've left a redirect in place, however please do try to update any URLs you might have from blog.masterwayz.nl to &lt;a href="https://blog.michellewayz.com"&gt;https://blog.michellewayz.com&lt;/a&gt;, as this will be the new URL going forward.&lt;/p&gt;</description></item><item><title>Unable to connect vSphereVM to NSX-T Segment in Terraform</title><link>https://blog.michellewayz.com/unable-to-connect-vspherevm-to-nsxt-segment-terraform/</link><pubDate>Thu, 17 Apr 2025 08:30:00 +0000</pubDate><guid>https://blog.michellewayz.com/unable-to-connect-vspherevm-to-nsxt-segment-terraform/</guid><description>
&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Recently while rebuilding the lab, I came across what seems to be a bug between the &lt;code&gt;hashicorp/vsphere&lt;/code&gt; and the &lt;code&gt;vmware/nsxt&lt;/code&gt; terraform providers.&lt;/p&gt;
&lt;p&gt;For example, here's a snippet from code that &lt;em&gt;should&lt;/em&gt; work, but &lt;strong&gt;doesn't&lt;/strong&gt;:&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-terraform" data-lang="terraform"&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt; 1&lt;/span&gt;&lt;span class="cl"&gt;&lt;span class="kr"&gt;resource&lt;/span&gt; &lt;span class="s2"&gt;&amp;#34;nsxt_policy_segment&amp;#34;&lt;/span&gt; &lt;span class="s2"&gt;&amp;#34;testinglinuxlab1&amp;#34;&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt; 2&lt;/span&gt;&lt;span class="cl"&gt; &lt;span class="nx"&gt;display_name&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="s2"&gt;&amp;#34;testinglinuxlab1&amp;#34;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt; 3&lt;/span&gt;&lt;span class="cl"&gt; &lt;span class="nx"&gt;transport_zone_path&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nb"&gt;data&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;nsxt_policy_transport_zone&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;overlay_tz&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;path&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt; 4&lt;/span&gt;&lt;span class="cl"&gt; &lt;span class="nx"&gt;connectivity_path&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nb"&gt;data&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;nsxt_policy_tier1_gateway&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;T1Main&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;path&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt; 5&lt;/span&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt; 6&lt;/span&gt;&lt;span class="cl"&gt; &lt;span class="nx"&gt;subnet&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt; 7&lt;/span&gt;&lt;span class="cl"&gt; &lt;span class="nx"&gt;cidr&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="s2"&gt;&amp;#34;10.183.94.1/24&amp;#34;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt; 8&lt;/span&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;}&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt; 9&lt;/span&gt;&lt;span class="cl"&gt;&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;10&lt;/span&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;11&lt;/span&gt;&lt;span class="cl"&gt;&lt;span class="kr"&gt;resource&lt;/span&gt; &lt;span class="s2"&gt;&amp;#34;vsphere_virtual_machine&amp;#34;&lt;/span&gt; &lt;span class="s2"&gt;&amp;#34;testinglinuxlab101&amp;#34;&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;12&lt;/span&gt;&lt;span class="cl"&gt; &lt;span class="nx"&gt;name&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="s2"&gt;&amp;#34;testing-linuxlab1-01&amp;#34;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;13&lt;/span&gt;&lt;span class="cl"&gt; &lt;span class="nx"&gt;resource_pool_id&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nb"&gt;data&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;vsphere_compute_cluster&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;AVA&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;resource_pool_id&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;14&lt;/span&gt;&lt;span class="cl"&gt; &lt;span class="nx"&gt;datastore_id&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nb"&gt;data&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;vsphere_datastore&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;ssd&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;id&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;15&lt;/span&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;16&lt;/span&gt;&lt;span class="cl"&gt; &lt;span class="nx"&gt;num_cpus&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="m"&gt;2&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;17&lt;/span&gt;&lt;span class="cl"&gt; &lt;span class="nx"&gt;memory&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="m"&gt;2048&lt;/span&gt;&lt;span class="c1"&gt; # in MB
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;18&lt;/span&gt;&lt;span class="cl"&gt; &lt;span class="nx"&gt;guest_id&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nb"&gt;data&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;vsphere_virtual_machine&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;debian12&lt;/span&gt;&lt;span class="o"&gt;-&lt;/span&gt;&lt;span class="nx"&gt;template&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;guest_id&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;19&lt;/span&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;20&lt;/span&gt;&lt;span class="cl"&gt; &lt;span class="nx"&gt;network_interface&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;21&lt;/span&gt;&lt;span class="cl"&gt; &lt;span class="nx"&gt;network_id&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nx"&gt;resource&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;nsxt_policy_segment&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;testinglinuxlab1&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;id&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;22&lt;/span&gt;&lt;span class="cl"&gt; &lt;span class="nx"&gt;adapter_type&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nb"&gt;data&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;vsphere_virtual_machine&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;debian12&lt;/span&gt;&lt;span class="o"&gt;-&lt;/span&gt;&lt;span class="nx"&gt;template&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;network_interface_types&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="m"&gt;0&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;23&lt;/span&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;}&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;24&lt;/span&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;25&lt;/span&gt;&lt;span class="cl"&gt; &lt;span class="nx"&gt;disk&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;26&lt;/span&gt;&lt;span class="cl"&gt; &lt;span class="nx"&gt;label&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="s2"&gt;&amp;#34;disk0&amp;#34;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;27&lt;/span&gt;&lt;span class="cl"&gt; &lt;span class="nx"&gt;size&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="s2"&gt;&amp;#34;50&amp;#34;&lt;/span&gt;&lt;span class="c1"&gt; # In GB
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;28&lt;/span&gt;&lt;span class="cl"&gt; &lt;span class="nx"&gt;eagerly_scrub&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="kc"&gt;false&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;29&lt;/span&gt;&lt;span class="cl"&gt; &lt;span class="nx"&gt;thin_provisioned&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="kc"&gt;true&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;30&lt;/span&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;}&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;31&lt;/span&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;32&lt;/span&gt;&lt;span class="cl"&gt; &lt;span class="nx"&gt;clone&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;33&lt;/span&gt;&lt;span class="cl"&gt; &lt;span class="nx"&gt;template_uuid&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nb"&gt;data&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;vsphere_virtual_machine&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;debian12&lt;/span&gt;&lt;span class="o"&gt;-&lt;/span&gt;&lt;span class="nx"&gt;template&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;id&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;34&lt;/span&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;35&lt;/span&gt;&lt;span class="cl"&gt; &lt;span class="nx"&gt;customize&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;36&lt;/span&gt;&lt;span class="cl"&gt; &lt;span class="nx"&gt;linux_options&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;37&lt;/span&gt;&lt;span class="cl"&gt; &lt;span class="nx"&gt;host_name&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="s2"&gt;&amp;#34;testing-test01&amp;#34;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;38&lt;/span&gt;&lt;span class="cl"&gt; &lt;span class="nx"&gt;domain&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="s2"&gt;&amp;#34;ava.michellegoossens.com&amp;#34;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;39&lt;/span&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;}&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;40&lt;/span&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;41&lt;/span&gt;&lt;span class="cl"&gt; &lt;span class="nx"&gt;network_interface&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;42&lt;/span&gt;&lt;span class="cl"&gt; &lt;span class="nx"&gt;ipv4_address&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="s2"&gt;&amp;#34;10.183.94.10&amp;#34;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;43&lt;/span&gt;&lt;span class="cl"&gt; &lt;span class="nx"&gt;ipv4_netmask&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="m"&gt;24&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;44&lt;/span&gt;&lt;span class="cl"&gt; &lt;span class="nx"&gt;dns_server_list&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="p"&gt;[&lt;/span&gt; &lt;span class="s2"&gt;&amp;#34;192.168.74.112&amp;#34;&lt;/span&gt; &lt;span class="p"&gt;]&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;45&lt;/span&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;}&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;46&lt;/span&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;47&lt;/span&gt;&lt;span class="cl"&gt; &lt;span class="nx"&gt;ipv4_gateway&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="s2"&gt;&amp;#34;10.183.94.1&amp;#34;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;48&lt;/span&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;}&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;49&lt;/span&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;}&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;50&lt;/span&gt;&lt;span class="cl"&gt; &lt;span class="nx"&gt;lifecycle&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;51&lt;/span&gt;&lt;span class="cl"&gt; &lt;span class="nx"&gt;ignore_changes&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="p"&gt;[&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;52&lt;/span&gt;&lt;span class="cl"&gt; &lt;span class="nx"&gt;clone&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="m"&gt;0&lt;/span&gt;&lt;span class="p"&gt;].&lt;/span&gt;&lt;span class="nx"&gt;template_uuid&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;53&lt;/span&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;]&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;54&lt;/span&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;}&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;55&lt;/span&gt;&lt;span class="cl"&gt;&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;This is because the vSphere provider wants a dvPortgroup ID, but the NSX-T provider doesn't give that nor has an option (from what I could find) to give this.&lt;/p&gt;</description></item><item><title>Quick Lab Tip: Deploy VCF workload domain with single NSX Manager</title><link>https://blog.michellewayz.com/quick-lab-tip-deploy-vcf-wld-single-nsx-manager/</link><pubDate>Thu, 03 Apr 2025 14:00:00 +0000</pubDate><guid>https://blog.michellewayz.com/quick-lab-tip-deploy-vcf-wld-single-nsx-manager/</guid><description>
&lt;p&gt;In this post I will share a quick tip on how I've managed to deploy a VCF Workload Domain with a single NSX Manager, instead of the standard three.&lt;/p&gt;
&lt;div class="notice warning" &gt;
&lt;p class="notice-title"&gt;
&lt;span class="icon-notice baseline"&gt;
&lt;svg xmlns="http://www.w3.org/2000/svg" viewBox="126 76.5 300 300"&gt;
&lt;path d="M297.431 324.397v-34.255c0-3.245-2.344-5.95-5.358-5.95h-32.146c-3.014 0-5.358 2.705-5.358 5.95v34.255c0 3.245 2.344 5.95 5.358 5.95h32.146c3.014 0 5.358-2.705 5.358-5.95Zm-.335-67.428 3.014-82.753c0-1.081-.502-2.524-1.674-3.425-1.005-.902-2.512-1.983-4.019-1.983h-36.834c-1.507 0-3.014 1.081-4.019 1.983-1.172.901-1.674 2.704-1.674 3.786l2.846 82.392c0 2.344 2.512 4.146 5.693 4.146h30.975c3.013 0 5.525-1.803 5.692-4.146Zm-2.344-168.39L423.34 342.425c3.683 7.032 3.516 15.686-.335 22.717-3.85 7.031-10.883 11.358-18.417 11.358H147.413c-7.534 0-14.566-4.327-18.417-11.358-3.85-7.031-4.018-15.685-.335-22.716L257.248 88.578C260.93 81.188 268.13 76.5 276 76.5c7.87 0 15.069 4.688 18.752 12.08Z"/&gt;
&lt;/svg&gt;
&lt;/span&gt;Warning&lt;/p&gt;</description></item><item><title>Fixing missing component(s) nmlx5 during vib update</title><link>https://blog.michellewayz.com/esxi-nmlx5-vib-prevents-update/</link><pubDate>Sat, 23 Nov 2024 16:11:00 +0000</pubDate><guid>https://blog.michellewayz.com/esxi-nmlx5-vib-prevents-update/</guid><description>
&lt;p&gt;Recently while I was trying to update a new homelab server from ESXi 8 to ESXi 8 U3b using the command &lt;code&gt;esxcli software vib update --depot=/vmfs/volumes/&amp;lt;datastore&amp;gt;/depot.zip&lt;/code&gt;, I stumbled upon the following error: &lt;code&gt;Profile &amp;lt;&amp;gt; is missing component(s) ESXi,Mellanox-nmlx5&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;After trying to remove the installed VIBs (that are for Mellanox cards, I do not have any) using &lt;code&gt;esxcli software vib list | grep nml&lt;/code&gt;, and then &lt;code&gt;esxicli software vib remove &amp;lt;vib name&amp;gt;&lt;/code&gt;, the issue still occured.&lt;/p&gt;</description></item><item><title>Fixing slow vService Manager</title><link>https://blog.michellewayz.com/fixing-vservice-manager-stuck/</link><pubDate>Sat, 03 Feb 2024 20:03:00 +0000</pubDate><guid>https://blog.michellewayz.com/fixing-vservice-manager-stuck/</guid><description>
&lt;p&gt;This is about an issue I encountered in my lab recently. This issue affects vCenter version 8 U2 build 22617221&lt;/p&gt;
&lt;p&gt;If you see that cloning VMs and powering on VMs takes forever and they get stuck at 95% and 66% respectively, but eventually finishes after an hour, you can check if you are affected by this issue.
Go to the task once it's finished, and check if this is shown in the task log: &lt;code&gt;Failed to retrieve OVF environment sections for VM &amp;lt;VM name&amp;gt; from extension vService Manager&lt;/code&gt;.
If you see that, you are affected by this issue.&lt;/p&gt;</description></item><item><title>Cost savings in the Lab</title><link>https://blog.michellewayz.com/cost-savings-in-the-lab/</link><pubDate>Sat, 15 Apr 2023 13:20:52 +0000</pubDate><guid>https://blog.michellewayz.com/cost-savings-in-the-lab/</guid><description>
&lt;p&gt;With power pricing getting severely out of hand (well, it has been for months now), I figured I should do my part.&lt;/p&gt;
&lt;p&gt;Currently, my lab consists of four ESXi servers, two storage servers, one backup server and one personal tinkering server.&lt;/p&gt;
&lt;p&gt;My ESXi cluster has always ran on about 1.5 hosts worth of redundancy. In order to save some power, what I did:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Leveraged VMware vRealize Operations Manager (or.. &lt;a href="https://www.vmware.com/products/aria.html"&gt;VMware Aria&lt;/a&gt;) to appropriately downsize virtual machines to the resources they actually need,&lt;/li&gt;
&lt;li&gt;Looked at all the virtual machines again and powered off all VMs that I wasn’t using anymore, or will not use for the foreseeable future,&lt;/li&gt;
&lt;li&gt;Decided that for the lab, I will be okay with having no host redundancy at the moment as I do not touch my lab nearly as often anymore as I used to.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;For vRealize Operations Manager, part of what the product allows you to do is look whether virtual machines can be upscaled or downscaled. If a VM is short on resources, it will give a recommendation as to what it thinks it would need. The same if it has too many resources, it will tell you whereabouts you can downsize the VM to. In my case, I was able to de-allocate 24 vCPUs and 56GB of memory worth of compute&lt;/p&gt;</description></item><item><title>My Professional Certification/Training Goals for 202X</title><link>https://blog.michellewayz.com/my-professional-certification-training-goals-for-202x/</link><pubDate>Mon, 26 Dec 2022 01:07:26 +0000</pubDate><guid>https://blog.michellewayz.com/my-professional-certification-training-goals-for-202x/</guid><description>
&lt;p&gt;While everyone is going to make their “new year’s resolutions” I had been thinking of.. What would I like to do in 2023, in an ideal world? (where money isn’t an issue, that is).&lt;/p&gt;
&lt;p&gt;In terms of professional development there are a couple of trainings and certifications I would like to go for. Not only to brush up on some of my knowledge and to learn more, but also because, well, certs. (I hope some of you may get that joke.)&lt;/p&gt;</description></item><item><title>[Quick script] – Automatically scan for unmounted VMFS datastores and mount them</title><link>https://blog.michellewayz.com/quick-script-automatically-scan-for-unmounted-vmfs-datastores-and-mount-them/</link><pubDate>Sat, 24 Dec 2022 00:47:48 +0000</pubDate><guid>https://blog.michellewayz.com/quick-script-automatically-scan-for-unmounted-vmfs-datastores-and-mount-them/</guid><description>
&lt;p&gt;Today while I installed two new servers in the rack, I had to mount some iSCSI datastores to these servers as I also have them mounted on other servers.&lt;/p&gt;
&lt;p&gt;I wrote a quick script to do this because I am lazy, and decided to share it here in case it may be useful:&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-bash" data-lang="bash"&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;1&lt;/span&gt;&lt;span class="cl"&gt;&lt;span class="cp"&gt;#!/bin/bash
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;2&lt;/span&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;3&lt;/span&gt;&lt;span class="cl"&gt;esxcfg-volume -l &amp;gt; /tmp/dump.log
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;4&lt;/span&gt;&lt;span class="cl"&gt;cat /tmp/dump.log &lt;span class="p"&gt;|&lt;/span&gt; grep UUID &lt;span class="p"&gt;|&lt;/span&gt; awk -F &lt;span class="s1"&gt;&amp;#39;:&amp;#39;&lt;/span&gt; &lt;span class="s1"&gt;&amp;#39;{print $2}&amp;#39;&lt;/span&gt; &lt;span class="p"&gt;|&lt;/span&gt; awk -F &lt;span class="s1"&gt;&amp;#39;/&amp;#39;&lt;/span&gt; &lt;span class="s1"&gt;&amp;#39;{print $1}&amp;#39;&lt;/span&gt; &amp;gt; /tmp/dump2.log
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;5&lt;/span&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;6&lt;/span&gt;&lt;span class="cl"&gt;&lt;span class="k"&gt;while&lt;/span&gt; &lt;span class="nb"&gt;read&lt;/span&gt; line&lt;span class="p"&gt;;&lt;/span&gt; &lt;span class="k"&gt;do&lt;/span&gt; esxcfg-volume -M &lt;span class="nv"&gt;$line&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt; &lt;span class="k"&gt;done&lt;/span&gt;&lt;span class="p"&gt;&amp;amp;&lt;/span&gt;lt&lt;span class="p"&gt;;&lt;/span&gt;/tmp/dump2.log
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;7&lt;/span&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;8&lt;/span&gt;&lt;span class="cl"&gt;rm /tmp/dump.log
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;9&lt;/span&gt;&lt;span class="cl"&gt;rm /tmp/dump2.log&amp;lt;/code&amp;gt;&amp;lt;/pre&amp;gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Pretty much what it does is it scans for unmounted VMFS datastores and puts that into a file (line 3). Then on line 4 I have a filter to just take the UUID and put that into another file. On line 6 we take those UUIDs and mount them persistently. Line 8 and 9 are cleaning up.&lt;/p&gt;</description></item><item><title>Thoughts on the new VCP-VMC 2022 exam (and I passed!)</title><link>https://blog.michellewayz.com/the-new-vcp-vmc-2022-exam-and-i-passed/</link><pubDate>Tue, 20 Dec 2022 00:45:36 +0000</pubDate><guid>https://blog.michellewayz.com/the-new-vcp-vmc-2022-exam-and-i-passed/</guid><description>
&lt;p&gt;VMware has launched a new certification. The VMware Cloud Professional – VMware Cloud 2022 certification (yes, that is a mouthful to say over Zoom). In short, let’s call it VCP-VMC 2022 for now.&lt;/p&gt;
&lt;p&gt;It was first introduced in &lt;a target="_blank" href="https://www.vmware.com/learning/certification/vcp-vmc.html" rel="noreferrer noopener"&gt;this post&lt;/a&gt; from VMware. This certificate aims to prove that the holder has sufficient knowledge of the different VMware Cloud offerings. Such as &lt;a target="_blank" href="https://www.vmware.com/nl/products/vmc-on-aws.html" rel="noreferrer noopener"&gt;VMware Cloud on AWS&lt;/a&gt;, &lt;a target="_blank" href="https://www.vmware.com/products/vmc-on-dell.html" rel="noreferrer noopener"&gt;VMware Cloud on Dell EMC&lt;/a&gt;, &lt;a target="_blank" href="https://cloud.google.com/vmware-engine" rel="noreferrer noopener"&gt;Google Cloud VMware Engine&lt;/a&gt;, &lt;a target="_blank" href="https://azure.microsoft.com/en-us/products/azure-vmware/" rel="noreferrer noopener"&gt;Azure VMware Solution&lt;/a&gt;.. you get it.&lt;/p&gt;</description></item><item><title>New VMware Cloud on AWS host size: i4i.metal</title><link>https://blog.michellewayz.com/new-vmware-cloud-on-aws-host-size-i4i-metal/</link><pubDate>Sat, 03 Dec 2022 13:25:38 +0000</pubDate><guid>https://blog.michellewayz.com/new-vmware-cloud-on-aws-host-size-i4i-metal/</guid><description>
&lt;p&gt;There’s a new host in town! Called i4i.metal.. What can it be used for? What does it cost? Here’s all the answers.&lt;/p&gt;
&lt;p&gt;The shiny new i4i.metal host features 64 cores, 1TB of memory (1024 GiB) and ~20.46 TiB of usable blazing fast NVMe storage capacity. That’s a lot of power in a single host.&lt;/p&gt;
&lt;p&gt;It’s kind of double what the good old i3.metal host has. It “only” has 36 cores, 512GiB of memory and ~10.37TiB of usable NVMe storage capacity. &lt;a href="https://www.vmware.com/products/vmc-on-aws.html" target="_blank" rel="noreferrer noopener"&gt;Thank you VMware’s page.&lt;/a&gt;&lt;/p&gt;</description></item><item><title>Improving vSphere Confidence: vSphere 8’s new Release Model</title><link>https://blog.michellewayz.com/improving-vsphere-confidence-vsphere-8s-new-release-model/</link><pubDate>Thu, 06 Oct 2022 18:48:26 +0000</pubDate><guid>https://blog.michellewayz.com/improving-vsphere-confidence-vsphere-8s-new-release-model/</guid><description>
&lt;p&gt;It seems like VMware has listened to the overall feedback that they have received. Usually sysadmins do not agree with each other on a large scale. But one opinion was broadly agreed on; vSphere’s QA was horrible (*insert production is QA meme here*).&lt;/p&gt;
&lt;p&gt;Thankfully, VMware has listened to us. On October 5th, they published &lt;a rel="noreferrer noopener" href="https://blogs.vmware.com/vsphere/2022/10/new-release-model-for-vsphere-8.html" data-type="URL" data-id="https://blogs.vmware.com/vsphere/2022/10/new-release-model-for-vsphere-8.html" target="_blank"&gt;this blog post&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Starting vSphere 8, there will be a new release model. There will be two phases, IA and GA.&lt;/p&gt;</description></item><item><title>How it feels to become a VMware Partner as a Startup</title><link>https://blog.michellewayz.com/how-it-feels-to-become-a-vmware-partner-as-a-startup/</link><pubDate>Wed, 07 Sep 2022 21:35:21 +0000</pubDate><guid>https://blog.michellewayz.com/how-it-feels-to-become-a-vmware-partner-as-a-startup/</guid><description>
&lt;p&gt;Hi readers,&lt;/p&gt;
&lt;p&gt;Today’s post will be about my experience with having a startup becoming a VMware Partner, where I will explain all the things that I encountered. Both good and bad, so here we go.&lt;/p&gt;
&lt;p&gt;First of all during the sign-up process you pay a fee, this was $895 at the time of registering. Will I renew it? No. I will explain why.&lt;/p&gt;
&lt;p&gt;To be able to do most managed service things, especially for things like VMware Cloud on AWS, you need to have multiple people get certificates. That is cost on top of the $895 already spent. If you were to need two people have the VCP-DCV cert, you’d already be looking at thousands of dollars and you’re not even there yet, you’re just eligible.&lt;/p&gt;</description></item><item><title>Azure Terraform error: Service returned an error. Status=&lt;nil&gt; &lt;nil&gt; when creating an Azure Web App</title><link>https://blog.michellewayz.com/azure-terraform-error-status-nill-nill/</link><pubDate>Tue, 10 May 2022 20:24:29 +0000</pubDate><guid>https://blog.michellewayz.com/azure-terraform-error-status-nill-nill/</guid><description>
&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Today I was tinkering around with Azure and Terraform. I’ve been working on creating a Azure Web App based off of Linux. However I ran into the following error:&lt;/p&gt;
&lt;blockquote class="wp-block-quote is-style-plain"&gt;
&lt;cite&gt;Failure sending request: StatusCode=0 &amp;#8212; Original Error: autorest/azure: Service returned an error. Status=&lt;nil&gt; &lt;nil&gt;&lt;/cite&gt;
&lt;/blockquote&gt;
&lt;p&gt;This was caused by two things. Per the docs, the &lt;code&gt;always_on&lt;/code&gt; option should be &lt;code&gt;false&lt;/code&gt; by default, but it actually defaults to &lt;code&gt;true&lt;/code&gt;. Because I was using the F1 SKU, which is free, this failed as it does not support always_on and it must be a 32 bit worker as well so I also set &lt;code&gt;user_32_bit_worker&lt;/code&gt; to &lt;code&gt;true&lt;/code&gt; just to be sure.&lt;/p&gt;</description></item><item><title>Homelab Update 24/02/2022</title><link>https://blog.michellewayz.com/homelab-update-24-02-2022/</link><pubDate>Thu, 24 Feb 2022 20:02:11 +0000</pubDate><guid>https://blog.michellewayz.com/homelab-update-24-02-2022/</guid><description>
&lt;p&gt;It’s that time of the year again, time to update my blog post about my current homelab!&lt;/p&gt;
&lt;p&gt;Here’s a picture of the front, from top to bottom;&lt;/p&gt;
&lt;div class="wp-block-image"&gt;
&lt;figure class="aligncenter size-large"&gt;&lt;img src="https://cdn.masterwayz.nl/screenshots/20220127_150621.jpg" alt="" /&gt;&lt;/figure&gt;
&lt;/div&gt;
&lt;ul&gt;
&lt;li&gt;ESXi1&lt;/li&gt;
&lt;li&gt;ESXi2&lt;/li&gt;
&lt;li&gt;ESXi3&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;From the rear;&lt;/p&gt;
&lt;div class="wp-block-image"&gt;
&lt;figure class="aligncenter size-large"&gt;&lt;img src="https://cdn.masterwayz.nl/screenshots/20220127_150513.jpg" alt="" /&gt;&lt;/figure&gt;
&lt;/div&gt;
&lt;ul&gt;
&lt;li&gt;ESXi1&lt;/li&gt;
&lt;li&gt;ESXi2&lt;/li&gt;
&lt;li&gt;ESXi3&lt;/li&gt;
&lt;li&gt;EdgeSwitch 24 Lite&lt;/li&gt;
&lt;li&gt;EdgeRouter 10X&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;You’ll notice that the iLO port is ESXi1 isn’t plugged in on the picture, I plugged it in afterwards (forgot to do that before making the picture).&lt;/p&gt;</description></item><item><title>My big mistake with Tanzu Community Edition</title><link>https://blog.michellewayz.com/my-big-mistake-with-tanzu-community-edition/</link><pubDate>Thu, 27 Jan 2022 22:00:14 +0000</pubDate><guid>https://blog.michellewayz.com/my-big-mistake-with-tanzu-community-edition/</guid><description>
&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;In this post I want to point out the mistakes I have made when deploying Tanzu Community Edition, what I learned from it, how &lt;em&gt;not&lt;/em&gt; to make those mistakes and what ended up happening with how I fixed it.&lt;/p&gt;
&lt;p&gt;So for those who don’t know Tanzu Community Edition is kind of a bit like Tanzu Kubernetes Grid, vSphere with Tanzu… you get it, it has to do with Kubernetes and they all have Tanzu in them 😉&lt;/p&gt;</description></item><item><title>Self Service AWS VMC sign up is available – we did it!</title><link>https://blog.michellewayz.com/self-service-aws-vmc-aws-sign-up-is-available-we-did-it/</link><pubDate>Wed, 22 Dec 2021 18:32:29 +0000</pubDate><guid>https://blog.michellewayz.com/self-service-aws-vmc-aws-sign-up-is-available-we-did-it/</guid><description>
&lt;p&gt;This post you are reading is a follow-up to the older post I made here: &lt;a rel="noreferrer noopener" href="https://blog.masterwayz.nl/ordering-vmware-cloud-on-aws-through-aws-as-a-private-individual/" target="_blank"&gt;Ordering VMware Cloud on AWS through AWS as a private individual&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;In that post, I talked about how you can consume the VMware Cloud on AWS service while getting billed to your AWS Billing account, meaning no $1000 credit card fee*, and you can use eligible credit for the service (note to specifically check for this as it is not default!)&lt;/p&gt;</description></item><item><title>New HOL: CloudHealth by VMware</title><link>https://blog.michellewayz.com/new-hol-cloudhealth-by-vmware/</link><pubDate>Thu, 11 Nov 2021 00:50:22 +0000</pubDate><guid>https://blog.michellewayz.com/new-hol-cloudhealth-by-vmware/</guid><description>
&lt;p&gt;In this post I’d like to shed some light onto a new HOL, which is all about &lt;a href="https://www.cloudhealthtech.com/" data-type="URL" data-id="https://www.cloudhealthtech.com/" target="_blank" rel="noreferrer noopener"&gt;CloudHealth&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;For those who don’t know CloudHealth is used for, it’s used for cost management, automation, security among other uses for the Cloud. This not just the usual SDDC, but also Public Clouds, like Oracle, Azure, AWS, IBM Cloud, etc.&lt;/p&gt;
&lt;p&gt;The HOL lab is a full ISM (Interactive Simulation?) lab, meaning it has no actual working VMs, but it does have an interactive page that you go through with explanations.&lt;/p&gt;</description></item><item><title>Deploying a VCF lab using VLC</title><link>https://blog.michellewayz.com/deploying-a-vcf-lab-using-vlc/</link><pubDate>Fri, 01 Oct 2021 00:50:09 +0000</pubDate><guid>https://blog.michellewayz.com/deploying-a-vcf-lab-using-vlc/</guid><description>
&lt;p&gt;This post I’ll be taking another look at VLC again, a powershell script that can be used to deploy a nested VMware Cloud Foundation lab.&lt;/p&gt;
&lt;p&gt;VLC, which can be downloaded &lt;a href="http://tiny.cc/getVLC" data-type="URL" data-id="http://tiny.cc/getVLC" target="_blank" rel="noreferrer noopener"&gt;here&lt;/a&gt;, is a powershell script that makes it easy to deploy a nested VCF lab. It’ll take care of creating the nested ESXi hosts, all the way to doing the bring-up process if you want to. It can even create and expand workload domains.&lt;/p&gt;</description></item><item><title>My VMworld 2021 Top 10 sessions</title><link>https://blog.michellewayz.com/my-vmworld-2021-top-10-sessions/</link><pubDate>Fri, 27 Aug 2021 19:56:37 +0000</pubDate><guid>https://blog.michellewayz.com/my-vmworld-2021-top-10-sessions/</guid><description>
&lt;p&gt;This post will list the top 10 sessions over at VMworld 2021 that personally interest me.&lt;/p&gt;
&lt;p&gt;&lt;a href="https://www.vmware.com/vmworld/en/index.html" data-type="URL" data-id="https://www.vmware.com/vmworld/en/index.html" target="_blank" rel="noreferrer noopener"&gt;VMworld 2021&lt;/a&gt; will be online again this year, which for me personally is great!&lt;/p&gt;
&lt;p&gt;So let’s not waste any time and get right into it. Note that these are not in order of my favorites.&lt;/p&gt;
&lt;p&gt;&lt;a href="https://myevents.vmware.com/widget/vmware/vmworld2021/catalog?search=code2756" target="_blank" rel="noreferrer noopener"&gt;&lt;strong&gt;Build and Publish a PowerShell Module to the PowerShell Gallery [CODE2756]&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Speaker: David Stamen&lt;/p&gt;
&lt;p&gt;&lt;em&gt;“Have you ever created a PowerShell module and needed to share it and didn’t know how? The PowerShell gallery is a great place to do this! Join this session and learn how to build and publish a PowerShell module to the PowerShell gallery and allow your contribution to be shared with the VMware Community!”&lt;/em&gt;&lt;/p&gt;</description></item><item><title>VMware Cloud on AWS 102: Creating your SDDC</title><link>https://blog.michellewayz.com/vmware-cloud-on-aws-102-creating-your-sddc/</link><pubDate>Fri, 27 Aug 2021 00:24:58 +0000</pubDate><guid>https://blog.michellewayz.com/vmware-cloud-on-aws-102-creating-your-sddc/</guid><description>
&lt;p&gt;In this post, we will be deploying a single node VMware Cloud on AWS SDDC.&lt;/p&gt;
&lt;p&gt;An SDDC is a software-defined data center. VMware Cloud on AWS combines the power and services of AWS and their infrastructure, with the well-known VMware SDDC stack. (vSphere (ESXi), vCenter, vSAN and NSX Data Center).&lt;/p&gt;
&lt;p&gt;To get started, we head over to the VMC console and click the create SDDC button to start the process.&lt;/p&gt;</description></item><item><title>Ordering VMware Cloud on AWS through AWS as a private individual</title><link>https://blog.michellewayz.com/ordering-vmware-cloud-on-aws-through-aws-as-a-private-individual/</link><pubDate>Thu, 05 Aug 2021 23:39:13 +0000</pubDate><guid>https://blog.michellewayz.com/ordering-vmware-cloud-on-aws-through-aws-as-a-private-individual/</guid><description>
&lt;p&gt;This post will be all about how I went through the unknown road of ordering VMware Cloud on AWS as a private individual through AWS.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;First I want to give a huge thanks to &lt;a href="https://www.linkedin.com/in/troylindsay/" data-type="URL" data-id="https://www.linkedin.com/in/troylindsay/" target="_blank" rel="noreferrer noopener"&gt;Troy Lindsay&lt;/a&gt; for helping me massively with all the issues that we came across.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;Before I get into it, what exactly is this path? Well, simply put, instead of ordering VMware Cloud on AWS through VMware, I ordered it through AWS. This means that my AWS billing account gets billed (first eligible credit and then my credit card) instead of through VMware, for which using a credit card for VMC on AWS the first time has a $2000 fee (that you will get as credit). For me this is crucial, as a self-learning student I don’t have high budgets, nor a educational facility to ask for help, so I have to pay it out of my own pocket. With no job, it is impossible for me to get $2000 together in any reasonable length of time.&lt;/p&gt;</description></item><item><title>Question to the Community: what would you like to see here?</title><link>https://blog.michellewayz.com/question-to-the-community-what-would-you-like-to-see-here/</link><pubDate>Mon, 07 Jun 2021 14:27:40 +0000</pubDate><guid>https://blog.michellewayz.com/question-to-the-community-what-would-you-like-to-see-here/</guid><description>
&lt;p&gt;Good day readers,&lt;/p&gt;
&lt;p&gt;This post is all about ideas from the community and readers of my blogs.&lt;/p&gt;
&lt;p&gt;What would &lt;em&gt;you&lt;/em&gt; like to see here? What kind of content? About what products? More homelab and/or IRL related things? More tutorials? And if yes, about what? Anything you’d like to see is welcome.&lt;/p&gt;
&lt;p&gt;Please let me know your feedback! Tweet me &lt;a rel="noreferrer noopener" href="https://twitter.com/MasterWayZ1" data-type="URL" data-id="https://twitter.com/MasterWayZ1" target="_blank"&gt;here&lt;/a&gt; or email me at michelle at masterwayz dot nl&lt;/p&gt;</description></item><item><title>vExpert Pro and vExpert 2021 applications – What is a vExpert Pro? What do we do?</title><link>https://blog.michellewayz.com/vexpert-pro-and-vexpert-2021-applications-what-is-a-vexpert-pro-what-do-we-do/</link><pubDate>Sun, 06 Jun 2021 17:27:05 +0000</pubDate><guid>https://blog.michellewayz.com/vexpert-pro-and-vexpert-2021-applications-what-is-a-vexpert-pro-what-do-we-do/</guid><description>
&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;As the vExpert 2021 Second Half applications open on June 7th and close on July 9th (&lt;a href="https://blogs.vmware.com/vexpert/2021/05/18/vexpert-2021-second-half-applications-update/" target="_blank" rel="noreferrer noopener"&gt;click here for the latest schedule&lt;/a&gt;), I’d like to talk about what a vExpert Pro is and how they can help new applicants with their vExpert application.&lt;/p&gt;
&lt;p&gt;Members of the vExpert Pro program are there to support new applicants with their application, give them advise on anything they can do to improve, and mentor new vExperts in their local communities.&lt;/p&gt;</description></item><item><title>VMware Security Announcement VMSA-2021-0010 CVSSv3 score range 6.5 to 9.8</title><link>https://blog.michellewayz.com/vmware-security-announcement-vmsa-2021-0010-cvssv3-score-range-6-5-to-9-8/</link><pubDate>Tue, 25 May 2021 20:53:11 +0000</pubDate><guid>https://blog.michellewayz.com/vmware-security-announcement-vmsa-2021-0010-cvssv3-score-range-6-5-to-9-8/</guid><description>
&lt;p&gt;Hi everyone,&lt;/p&gt;
&lt;p&gt;An &lt;strong&gt;urgent&lt;/strong&gt; post for anyone on vCenter 6.5, 6.7 or 7.0!&lt;/p&gt;
&lt;p&gt;NOTE: The information below is a snapshot of the VMSA-2021-0010 page, and this page may not be updated anymore after the post. For the latest information, I redirect you to the VMSA-2021-0010 link.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;em&gt;UPDATE: VMware just made a blog post with advise, questions, workarounds and more. You can find it &lt;a href="https://blogs.vmware.com/vsphere/2021/05/vmsa-2021-0010.html" target="_blank" rel="noreferrer noopener"&gt;here&lt;/a&gt;.&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;a rel="noreferrer noopener" href="https://www.vmware.com/security/advisories/VMSA-2021-0010.html" data-type="URL" data-id="https://www.vmware.com/security/advisories/VMSA-2021-0010.html" target="_blank"&gt;VMSA-2021-0010&lt;/a&gt; has just been released, addressing:&lt;/p&gt;</description></item><item><title>My experience with the VMC on AWS Guided Hands-On Workshop</title><link>https://blog.michellewayz.com/my-experience-with-the-vmc-on-aws-guided-hands-on-workshop/</link><pubDate>Thu, 29 Apr 2021 20:55:03 +0000</pubDate><guid>https://blog.michellewayz.com/my-experience-with-the-vmc-on-aws-guided-hands-on-workshop/</guid><description>
&lt;p&gt;Hi everyone,&lt;/p&gt;
&lt;p&gt;It’s been a while since I have posted here. An update on what has been going on will follow soon, however, this post will be about my experience with the VMC on AWS Guided Hands-On Workshop I took as part of a VMUG.&lt;/p&gt;
&lt;p&gt;I have to say, overall it went pretty good. This was the first time that they were doing this for a VMUG I believed they said, so keep this in mind.&lt;/p&gt;</description></item><item><title>VMC on AWS interest sheet</title><link>https://blog.michellewayz.com/vmc-on-aws-interest-sheet/</link><pubDate>Tue, 09 Feb 2021 21:46:32 +0000</pubDate><guid>https://blog.michellewayz.com/vmc-on-aws-interest-sheet/</guid><description>
&lt;p&gt;Hello reader,&lt;/p&gt;
&lt;p&gt;For a while I’ve been having an idea for an offering I have not been able to find anywhere. Currently, if you want to pay for VMware Cloud on AWS through a credit card, you have to pay $2000 up-front which expires after 60 days. Not everyone can do this, so this is where this comes in.&lt;/p&gt;
&lt;p&gt;The idea is that you will be able to rent your own single node SDDC in a region of your choice, with a lower up-front fee. Right now the idea is that you will be given access to a dummy org, that an SDDC can be provisioned in just for you. Yours and yours only, and you will nearly have the same access, except you won’t be able to deploy or delete SDDCs, at least for the start. There may be an automated system coming where this will be possible, however first before I start to ask around further and work on things, I want to see how much interest there is.&lt;/p&gt;</description></item><item><title>NSX-T Data Center: Tier 0 Router not showing up in VPN Service dropdown</title><link>https://blog.michellewayz.com/nsx-t-data-center-tier-0-router-not-showing-up-in-vpn-service-dropdown/</link><pubDate>Sat, 30 Jan 2021 23:46:37 +0000</pubDate><guid>https://blog.michellewayz.com/nsx-t-data-center-tier-0-router-not-showing-up-in-vpn-service-dropdown/</guid><description>
&lt;p&gt;Hi everyone,&lt;/p&gt;
&lt;p&gt;In this post, I want to highlight an issue I had.&lt;/p&gt;
&lt;p&gt;I wanted to create a VPN Service, connected to a Tier 0 gateway. But none of my tier 0 gateways would show up. I couldn’t find any information on this, not even in the documentation (it’s well hidden and unless you know what to look for, it’s not easily found).&lt;/p&gt;
&lt;p&gt;I attempted to make an API call, and this is when I found the solution to my issue. I made a PUT request to:&lt;/p&gt;</description></item><item><title>My lab Bill of Materials</title><link>https://blog.michellewayz.com/my-lab-bill-of-materials/</link><pubDate>Tue, 12 Jan 2021 16:52:47 +0000</pubDate><guid>https://blog.michellewayz.com/my-lab-bill-of-materials/</guid><description>
&lt;p&gt;Hi everyone,&lt;/p&gt;
&lt;p&gt;For this post, we’re going to look into all the gear I have in my lab. Note that these are all links and prices that I paid for at the time.&lt;/p&gt;
&lt;p&gt;Let’s start with compute. I will list a table here of the servers.&lt;/p&gt;
&lt;h2 id="note-this-bom-is-outdated-and-is-yet-to-be-updated-pending-upgrades-that-im-saving-up-for-however-since-the-cost-is-about-1800-euros-this-will-take-a-while-and-i-may-have-to-decommission-my-current-lab-as-you-see-below-to-be-able-to-save-that-together-within-any-reasonable-timeframe"&gt;NOTE: This BoM is outdated and is yet to be updated pending upgrades that I'm saving up for. However since the cost is about 1800 euros this will take a while and I may have to decommission my current lab as you see below to be able to save that together within any reasonable timeframe&lt;/h2&gt;
&lt;p&gt;ESXi1:&lt;/p&gt;</description></item><item><title>Why I like VMware TestDrive so much (comes with VMUG Advantage)</title><link>https://blog.michellewayz.com/why-i-like-vmware-testdrive-so-much-comes-with-vmug-advantage/</link><pubDate>Mon, 09 Nov 2020 15:24:35 +0000</pubDate><guid>https://blog.michellewayz.com/why-i-like-vmware-testdrive-so-much-comes-with-vmug-advantage/</guid><description>
&lt;p&gt;Hi everyone,&lt;/p&gt;
&lt;p&gt;For those who follow me and sometimes chat with me, you probably know that I am a big fan of VMware TestDrive. I don’t hear a lot about it, but I think it’s something great and very useful.&lt;/p&gt;
&lt;p&gt;What is VMware TestDrive exactly? To quote them: &lt;em&gt;“With ready-made integrations with some of our most popular ecosystem partners, TestDrive allows you to explore VMware solutions alongside applications and services modeled on typical customers use cases, in a real-world environment.”&lt;/em&gt;&lt;/p&gt;</description></item><item><title>VMC on AWS – HCX – Site Pairing and interconnect</title><link>https://blog.michellewayz.com/vmc-on-aws-hcx-site-pairing-and-interconnect/</link><pubDate>Thu, 01 Oct 2020 16:09:36 +0000</pubDate><guid>https://blog.michellewayz.com/vmc-on-aws-hcx-site-pairing-and-interconnect/</guid><description>
&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;In this post, we’ll be talking about setting up a Site Pair and interconnect with HCX, between your on-prem datacenter and your VMware Cloud on AWS SDDC.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;a href="https://www.youtube.com/watch?v=cPAE0_BQ3SA" data-type="URL" data-id="https://www.youtube.com/watch?v=cPAE0_BQ3SA" target="_blank" rel="noreferrer noopener"&gt;Video version here.&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Written version:&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;In this post, we are going to create a Site Pair in HCX and an interconnect. Like the name suggests, a site pair pairs two HCX sites together, so you can create an interconnect between them. Interconnects are used for network stretching among other things.&lt;/p&gt;</description></item><item><title>Collection of VMworld vRealize announcement posts</title><link>https://blog.michellewayz.com/collection-of-vmworld-vrealize-announcement-posts/</link><pubDate>Tue, 29 Sep 2020 14:59:05 +0000</pubDate><guid>https://blog.michellewayz.com/collection-of-vmworld-vrealize-announcement-posts/</guid><description>
&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;This blog post serves more as a collection of links to other blogs about new announcements that VMware has made during VMworld.&lt;/p&gt;
&lt;p class="has-medium-font-size"&gt;
&lt;strong&gt;1.&lt;/strong&gt; The new &lt;a href="https://www.vmware.com/products/vrealize-cloud-universal.html"&gt;vRealize Cloud Universal&lt;/a&gt; offering.
&lt;/p&gt;
&lt;p&gt;With this new hybrid subscription offering, VMware is providing customers the flexibility to consume both on-premise and SaaS vRealize Suite products and services using a single subscription license. This offering allows customers the freedom to move workloads between on-premise and SaaS offerings interchangeably without the requirement to purchase new licenses. Additionally, this new offering provides access to Cloud Federated Analytics and Cloud Federated Catalog capabilities.&lt;/p&gt;</description></item><item><title>VMC on AWS – HCX – Deployment</title><link>https://blog.michellewayz.com/vmc-on-aws-hcx-deployment/</link><pubDate>Sun, 23 Aug 2020 14:21:54 +0000</pubDate><guid>https://blog.michellewayz.com/vmc-on-aws-hcx-deployment/</guid><description>
&lt;p&gt;Hi everyone,&lt;/p&gt;
&lt;p&gt;In this blog post, we will be going over how to deploy HCX on both your VMware on AWS SDDC and also on-prem.&lt;/p&gt;
&lt;p&gt;So what exactly is HCX? One of the main features of HCX is stretching networks between on-prem and your VMC on AWS SDDC. (It does not have to specifically be to/from a VMC SDDC). Also you can migrate VMs, as a vMotion (live) migration, or as a bulk migration.&lt;/p&gt;</description></item><item><title>VMware Cloud on AWS with Tanzu Kubernetes Grid – Public IP on kubernetes load balancer.</title><link>https://blog.michellewayz.com/vmware-cloud-on-aws-with-tanzu-kubernetes-grid-public-ip-on-kubernetes-load-balancer/</link><pubDate>Thu, 13 Aug 2020 21:53:25 +0000</pubDate><guid>https://blog.michellewayz.com/vmware-cloud-on-aws-with-tanzu-kubernetes-grid-public-ip-on-kubernetes-load-balancer/</guid><description>
&lt;p&gt;Hi readers,&lt;/p&gt;
&lt;p&gt;In this post, we will be taking our previously deployed TKG workload cluster and make it accessible through a public IP using NAT.&lt;/p&gt;
&lt;p&gt;First, we deploy an application. I’ll use yelb. See the previous post on how that works.&lt;figure class="wp-block-image size-large"&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="https://cdn.masterwayz.nl/screenshots/WindowsTerminal_oBvG3p94oL.png"&gt;&lt;figure&gt;
&lt;picture&gt;
&lt;img
loading="lazy"
decoding="async"
alt=""
class="image_figure image_external image_unprocessed"
src="https://cdn.masterwayz.nl/screenshots/WindowsTerminal_oBvG3p94oL.png"
/&gt;
&lt;/picture&gt;
&lt;/figure&gt;
&lt;/a&gt;&lt;/figure&gt;&lt;/p&gt;
&lt;p&gt;Here we see that our application is deployed. Let’s look at the load balancer IP.&lt;figure class="wp-block-image size-large"&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="https://cdn.masterwayz.nl/screenshots/WindowsTerminal_HfDx4ZyGQe.png"&gt;&lt;figure&gt;
&lt;picture&gt;
&lt;img
loading="lazy"
decoding="async"
alt=""
class="image_figure image_external image_unprocessed"
src="https://cdn.masterwayz.nl/screenshots/WindowsTerminal_HfDx4ZyGQe.png"
/&gt;
&lt;/picture&gt;
&lt;/figure&gt;
&lt;/a&gt;&lt;/figure&gt;&lt;/p&gt;
&lt;p&gt;As we can see, the IP is 10.250.20.61&lt;/p&gt;</description></item><item><title>Tanzu Kubernetes Grid on On-Prem or VMC on AWS – Management and workload deployment</title><link>https://blog.michellewayz.com/tanzu-kubernetes-grid-on-on-prem-or-vmc-on-aws-management-and-workload-deployment/</link><pubDate>Wed, 05 Aug 2020 17:38:53 +0000</pubDate><guid>https://blog.michellewayz.com/tanzu-kubernetes-grid-on-on-prem-or-vmc-on-aws-management-and-workload-deployment/</guid><description>
&lt;p&gt;Hi everyone,&lt;/p&gt;
&lt;p&gt;In this post we will be making our own deployment VM to deploy Tanzu Kubernetes Grid on VMware Cloud on AWS. There is a demo appliance, but I would like to use the latest versions of everything. If you would like to know more about Tanzu Kubernetes Grid, please check out &lt;a href="https://tanzu.vmware.com/kubernetes-grid"&gt;this link&lt;/a&gt;. This also works for on-prem, but the UI is different for NSX-T for the on-prem manager.&lt;/p&gt;</description></item><item><title>I’m a vExpert now!</title><link>https://blog.michellewayz.com/im-a-vexpert-now/</link><pubDate>Fri, 17 Jul 2020 20:29:47 +0000</pubDate><guid>https://blog.michellewayz.com/im-a-vexpert-now/</guid><description>
&lt;p&gt;Hi everyone,&lt;/p&gt;
&lt;p&gt;I applied for the second-half vExpert applications and I got accepted!&lt;/p&gt;
&lt;p&gt;This is the first time and I’m really, really happy! This is my fourth attempt and here is to hopefully more years of vExpert.&lt;/p&gt;
&lt;p&gt;&lt;a href="https://vexpert.vmware.com/directory/3999"&gt;Here&lt;/a&gt; is my public profile page.&lt;/p&gt;
&lt;p&gt;If you don’t know what vExpert is, you are missing out on a lot, quoting from the site:&lt;br&gt;
&lt;em&gt;“The VMware vExpert program is VMware’s global evangelism and advocacy program. The program is designed to put VMware’s marketing resources towards your advocacy efforts. Promotion of your articles, exposure at our global events, co-op advertising, traffic analysis, and early access to beta programs and VMware’s roadmap. The awards are for individuals, not companies, and last for one year. Employees of both customers and partners can receive the awards. In the application, we consider various community activities from the previous year as well as the current year’s (only for 2nd half applications) activities in determining who gets awards. We look to see that not only were you active but are still active in the path you chose to apply for.”&lt;/em&gt;&lt;/p&gt;</description></item><item><title>In-place upgrading a NSX-T ESXi Host with multiple host switches.</title><link>https://blog.michellewayz.com/in-place-upgrading-a-nsx-t-esxi-host-with-multiple-host-switches/</link><pubDate>Wed, 08 Jul 2020 23:53:19 +0000</pubDate><guid>https://blog.michellewayz.com/in-place-upgrading-a-nsx-t-esxi-host-with-multiple-host-switches/</guid><description>
&lt;p&gt;Hi everyone,&lt;/p&gt;
&lt;p&gt;Here is how I upgraded my NSX-T deployment from 3.0.0 to 3.0.1.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;em&gt;If you tried to in-place update a NSX-T Host that has multiple host switches, you will get an error. You can use this trick to get around this limitation.&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;First, we log into the NSX-T Manager, and go to the Upgrade tab under system. Here, we upload the file and continues with the upgrade.&lt;br&gt;
We upgrade like normal until we get on the hosts tab. We SSH into the host and we first visit this URL: http://:8080/repository/metadata/manifest&lt;br&gt;
This file contains the link to the zip file that we need to wget in /tmp on the ESXi host. Then we run:&lt;/p&gt;</description></item><item><title>Setting up a free KMS server for vCenter with PyKMIP (with database)</title><link>https://blog.michellewayz.com/setting-up-a-free-kms-server-for-vcenter-with-pykmip-with-database/</link><pubDate>Fri, 12 Jun 2020 13:38:28 +0000</pubDate><guid>https://blog.michellewayz.com/setting-up-a-free-kms-server-for-vcenter-with-pykmip-with-database/</guid><description>
&lt;p&gt;Hi everyone,&lt;/p&gt;
&lt;p&gt;In this post, we will be deploying a PyKMIP server that stores its keys in a database. Unlike the docker container, the keys will be saved so on a reboot your keys are not lost.&lt;/p&gt;
&lt;p&gt;So what exactly is this for? Well, in my use-case, I will be using this server to encrypted virtual machine files and drives.&lt;/p&gt;
&lt;p&gt;For this tutorial, we will be using self-signed certs and this keys will be stored in a sqlite database. This is not secure at all! However, it will allow you to evaluate and learn the KMS functions within vCenter.&lt;/p&gt;</description></item><item><title>Hilltop CTF – Writeups</title><link>https://blog.michellewayz.com/hilltop-ctf-writeups/</link><pubDate>Thu, 04 Jun 2020 21:42:45 +0000</pubDate><guid>https://blog.michellewayz.com/hilltop-ctf-writeups/</guid><description>
&lt;p&gt;Hi everyone,&lt;/p&gt;
&lt;p&gt;A blog post on a different topic this time. I was a Content Engineer for the &lt;a href="https://capturetheflag.online/"&gt;Hilltop CTF&lt;/a&gt; event.&lt;/p&gt;
&lt;h1 id="write-up-for-the-fuzz-challenge-"&gt;Write-up for the Fuzz challenge.&lt;/h1&gt;
&lt;h4 id="challenge-name-fuzz"&gt;Challenge name: Fuzz&lt;/h4&gt;
&lt;h4 id="creator-masterwayz"&gt;Creator: MasterWayZ&lt;/h4&gt;
&lt;h4 id="category-analysis-fuzzing"&gt;Category: Analysis/Fuzzing&lt;/h4&gt;
&lt;hr class="wp-block-separator" /&gt;
&lt;h2 id="summary-"&gt;Summary:&lt;/h2&gt;
&lt;p&gt;The user is given a URL to look at: &lt;a href="http://shellserver1.hilltopctf.masterwayz.nl:5876/"&gt;http://shellserver1.hilltopctf.masterwayz.nl:5876/&lt;/a&gt;&lt;/p&gt;
&lt;h2 id="how-to-"&gt;How-To:&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;Using a program like gobuster, we can try to see what directories exist: &lt;code&gt;gobuster dir -u http://shellserver1.hilltopctf.masterwayz.nl:5876/ -w /usr/share/wordlists/dirbuster/directory-list-2.3-medium.txt&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;We get a /301 redirect of /penguins. From here, it’s a matter of running &lt;code&gt;gobuster dir -u http://shellserver1.hilltopctf.masterwayz.nl:5876/penguins/ -w /usr/share/wordlists/dirbuster/directory-list-2.3-medium.txt -x txt&lt;/code&gt;. The txt extension comes from the .txt file part in the README.md file.&lt;/li&gt;
&lt;/ol&gt;
&lt;h2 id="explanation-"&gt;Explanation:&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;We use &lt;code&gt;gobuster&lt;/code&gt; to try to see what folder it is hidden in. &lt;code&gt;dir&lt;/code&gt; specifies directory mode, &lt;code&gt;-u&lt;/code&gt; specifies the URL and &lt;code&gt;-w&lt;/code&gt; specifies the wordlist.&lt;/li&gt;
&lt;li&gt;a 301 redirect of /penguins means that we’ve found something. Now we need to find the file in that directory. The new flag, &lt;code&gt;-x&lt;/code&gt; specifies the extension used by &lt;code&gt;gobuster&lt;/code&gt; to try to find files.&lt;/li&gt;
&lt;/ul&gt;
&lt;hr class="wp-block-separator" /&gt;
&lt;h1 id="write-up-for-the-fuzzy-challenge-"&gt;Write-up for the Fuzzy challenge.&lt;/h1&gt;
&lt;h4 id="challenge-name-fuzzy"&gt;Challenge name: Fuzzy&lt;/h4&gt;
&lt;h4 id="creator-masterwayz"&gt;Creator: MasterWayZ&lt;/h4&gt;
&lt;h4 id="category-analysis-fuzzing-attacks-cracking"&gt;Category: Analysis/Fuzzing, Attacks/Cracking&lt;/h4&gt;
&lt;hr class="wp-block-separator" /&gt;
&lt;h2 id="summary-"&gt;Summary:&lt;/h2&gt;
&lt;p&gt;For this challenge, you need to fuzz a Flask webserver to start with. Followed by brute-forcing a password and then automating or guessing the missing character in the flag.&lt;/p&gt;</description></item><item><title>Horizon 7.11 Deployment – Part 5: Windows 10 Desktop Image (refers to TechZone for now, video coming soon!)</title><link>https://blog.michellewayz.com/horizon-7-11-deployment-part-5-windows-10-desktop-image-refers-to-techzone-for-now-video-coming-soon/</link><pubDate>Thu, 04 Jun 2020 21:24:39 +0000</pubDate><guid>https://blog.michellewayz.com/horizon-7-11-deployment-part-5-windows-10-desktop-image-refers-to-techzone-for-now-video-coming-soon/</guid><description>
&lt;p&gt;Hi everyone,&lt;/p&gt;
&lt;p&gt;Sadly during server maintenance, the contents of this blog posts were corrupted.&lt;/p&gt;
&lt;p&gt;For now, I will link you all to a &lt;a href="https://techzone.vmware.com/creating-optimized-windows-image-vmware-horizon-virtual-desktop"&gt;TechZone&lt;/a&gt; article that explain you what to do. A video on this will be coming soon once I get to it.&lt;/p&gt;
&lt;p&gt;My apologies!&lt;/p&gt;</description></item><item><title>VMware Purple Screen of Death troubleshooting for random crashes with disk errors in the homelab.</title><link>https://blog.michellewayz.com/vmware-purple-screen-of-death-troubleshooting-for-random-crashes-with-disk-errors-in-the-homelab/</link><pubDate>Thu, 04 Jun 2020 21:18:52 +0000</pubDate><guid>https://blog.michellewayz.com/vmware-purple-screen-of-death-troubleshooting-for-random-crashes-with-disk-errors-in-the-homelab/</guid><description>
&lt;p&gt;Hi everyone,&lt;/p&gt;
&lt;p&gt;Time for a new blog post about the adventure I’ve been having for the past two days.&lt;/p&gt;
&lt;p&gt;On June 2nd, my server, a DL380G6 started to suddenly take-off. The fans were roaring at 70%, and the temperature sensor near the PCI Riser was showing 110 C. Of course this is not supposed to happen, in this blog post, I will take you through my experience of troubleshooting this and hopefully this can help you.&lt;/p&gt;</description></item><item><title>Sponsored VMUG Advantage! &amp; what is it?</title><link>https://blog.michellewayz.com/sponsored-vmug-advantage-what-is-it/</link><pubDate>Mon, 04 May 2020 00:57:45 +0000</pubDate><guid>https://blog.michellewayz.com/sponsored-vmug-advantage-what-is-it/</guid><description>
&lt;p&gt;Hi everyone,&lt;/p&gt;
&lt;p&gt;A few days ago, I was surprised with a Twitter DM from the &lt;a href="https://twitter.com/VMUGAdv"&gt;VMUG Advantage Twitter account&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;It turns out, that secretly, &lt;a href="https://twitter.com/heathbarj"&gt;Heath Johnson from VMware&lt;/a&gt; has been in touch with the VMUG Advantage team about me without telling me.&lt;/p&gt;
&lt;p&gt;I’m not sure how he managed to pull it off, but VMUG Advantage and me and partnering up! I’ve been given a sponsored 1 year VMUG Advantage subscription, which is amazing! And many, many thanks to Heath for making it happen!&lt;/p&gt;</description></item><item><title>Allow unsupported CPUs when upgrading/installing ESXi 7.0 (updated 10022020)</title><link>https://blog.michellewayz.com/allow-unsupported-cpus-when-upgrading-installing-esxi-7-0/</link><pubDate>Thu, 23 Apr 2020 13:13:34 +0000</pubDate><guid>https://blog.michellewayz.com/allow-unsupported-cpus-when-upgrading-installing-esxi-7-0/</guid><description>
&lt;p&gt;Hi everyone,&lt;/p&gt;
&lt;p&gt;Here’s a quick tip for the home lab people with old servers that can’t afford to get new hardware (like me).&lt;/p&gt;
&lt;p&gt;It seems like that you can override the installer terminating when an unsupported CPU is detected.&lt;/p&gt;
&lt;p&gt;What you need to do, is when booting from the ESXi ISO, press SHIFT+O, and type in:&lt;/p&gt;
&lt;pre class="wp-block-code"&gt;&lt;code class=""&gt;allowLegacyCPU=true&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;This will allow you to install or upgrade an ESXi 6.7 installation.&lt;/p&gt;
&lt;p&gt;I’ve tested this from my server with two X5660s and have no issues. &lt;strong&gt;The issue listed below has been fixed as of 7.0b (I believe that’s the version number), and you can run nested VMs again on ESXi 7 hosts with X56xx series CPUs.&lt;/strong&gt;&lt;/p&gt;</description></item><item><title>Software review: 4K Video Downloader</title><link>https://blog.michellewayz.com/software-review-4k-video-downloader/</link><pubDate>Tue, 31 Mar 2020 15:13:35 +0000</pubDate><guid>https://blog.michellewayz.com/software-review-4k-video-downloader/</guid><description>
&lt;p&gt;Hi everyone,&lt;/p&gt;
&lt;p&gt;In this post I’d like to make a highlight of a piece of software I have been using called 4K Video Downloader.&lt;/p&gt;
&lt;p&gt;This program is very useful to download videos from sites such as YouTube and Twitch. However, it can download from many more and even playlists!&lt;/p&gt;
&lt;p&gt;You can get started with the program &lt;a href="https://www.4kdownload.com/products/product-videodownloader/?r=free_license"&gt;here&lt;/a&gt;. ( &lt;a href="https://www.4kdownload.com/products/product-videodownloader/?r=free_license"&gt;https://www.4kdownload.com/products/product-videodownloader/?r=free_license&lt;/a&gt; )&lt;/p&gt;
&lt;p&gt;Pros:&lt;br&gt;
– Can download videos from YouTube, Facebook, Vimeo, SoundCloud, Flickr, Dailymotion, Metacafe and registered Twitch streams. (These are officially supported, sometimes it works on other sites as well. You can always request one to be added &lt;a href="https://www.4kdownload.com/faq/faq-what-sites-are-supported"&gt;here&lt;/a&gt;.&lt;br&gt;
– Can extract audio from a video and just save it as an MP3 or similar.&lt;br&gt;
– Can download playlists.&lt;/p&gt;</description></item><item><title>Horizon 7.11 Deployment – Part 4: Deploying &amp; Configuring Unified Access Gateway Appliance</title><link>https://blog.michellewayz.com/horizon-7-11-deployment-part-4-deploying-configuring-unified-access-gateway-appliance/</link><pubDate>Mon, 24 Feb 2020 19:49:05 +0000</pubDate><guid>https://blog.michellewayz.com/horizon-7-11-deployment-part-4-deploying-configuring-unified-access-gateway-appliance/</guid><description>
&lt;p&gt;Hi readers,&lt;/p&gt;
&lt;p&gt;In this part of the series, we will be deploying the VMware Horizon Unitied Access Gateway Appliance. It’s similar to the old Horizon Security server, and I myself mainly use it so I can connect to my Horizon connection server from a public IP address. (&lt;a href="https://blog.masterwayz.nl/?p=122"&gt;from my /24 block&lt;/a&gt;)&lt;/p&gt;
&lt;p&gt;First what we do is download and deploy the UAG OVA template. In my set-up, a normal deployment will suffice and two NICs are enough. One is for the internal LAN, and one is for the external network.&lt;figure class="wp-block-image size-large"&gt;&lt;/p&gt;</description></item><item><title>Horizon 7.11 Deployment – Part 3: Deploying &amp; Configuring Connection Server</title><link>https://blog.michellewayz.com/horizon-7-11-deployment-part-3-deploying-configuring-connection-server/</link><pubDate>Wed, 19 Feb 2020 01:38:53 +0000</pubDate><guid>https://blog.michellewayz.com/horizon-7-11-deployment-part-3-deploying-configuring-connection-server/</guid><description>
&lt;p&gt;Hi readers,&lt;/p&gt;
&lt;p&gt;In this third part of the series, we will be deploying the Connection Server., the base of the Horizon package.&lt;/p&gt;
&lt;p&gt;First, we will need a server or virtual machine running Windows Server 2012 or higher. The OS requirement is simple (&lt;a href="https://docs.vmware.com/en/VMware-Horizon-7/7.11/horizon-installation/GUID-858D1E0E-C566-4813-9D53-975AF4432195.html"&gt;source&lt;/a&gt;):&lt;figure class="wp-block-table"&gt;&lt;/p&gt;
&lt;table class=""&gt;
&lt;tr&gt;
&lt;th&gt;
Operating System
&lt;/th&gt;
&lt;pre&gt;&lt;code&gt;&amp;lt;th&amp;gt;
Version
&amp;lt;/th&amp;gt;
&amp;lt;th&amp;gt;
Edition
&amp;lt;/th&amp;gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
Windows Server 2008 R2 SP1
&lt;/td&gt;
&lt;pre&gt;&lt;code&gt;&amp;lt;td&amp;gt;
64-bit
&amp;lt;/td&amp;gt;
&amp;lt;td&amp;gt;
Standard Enterprise Datacenter
&amp;lt;/td&amp;gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
Windows Server 2012 R2
&lt;/td&gt;
&lt;pre&gt;&lt;code&gt;&amp;lt;td&amp;gt;
64-bit
&amp;lt;/td&amp;gt;
&amp;lt;td&amp;gt;
Standard Datacenter
&amp;lt;/td&amp;gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
Windows Server 2016
&lt;/td&gt;
&lt;pre&gt;&lt;code&gt;&amp;lt;td&amp;gt;
64-bit
&amp;lt;/td&amp;gt;
&amp;lt;td&amp;gt;
Standard Datacenter
&amp;lt;/td&amp;gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
Windows Server 2019
&lt;/td&gt;
&lt;pre&gt;&lt;code&gt;&amp;lt;td&amp;gt;
64-bit
&amp;lt;/td&amp;gt;
&amp;lt;td&amp;gt;
Standard Datacenter
&amp;lt;/td&amp;gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;/tr&gt;
&lt;/table&gt;&lt;/figure&gt;
&lt;p&gt;The following hardware requirements apply (source):&lt;figure class="wp-block-table"&gt;&lt;/p&gt;</description></item><item><title>Horizon 7.11 Deployment – Part 2: Requirements</title><link>https://blog.michellewayz.com/horizon-7-11-deployment-part-2-requirements/</link><pubDate>Wed, 12 Feb 2020 16:27:57 +0000</pubDate><guid>https://blog.michellewayz.com/horizon-7-11-deployment-part-2-requirements/</guid><description>
&lt;p&gt;Hello readers,&lt;/p&gt;
&lt;p&gt;Welcome to part two of the Horizon 7.11 deployment series. In this short post, we will go over what we will deploy in this series, what it is and in what part it will be deployed.&lt;/p&gt;
&lt;p&gt;We will deploy the following:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Active Directory. (An ADDS server for our domain. This is a requirement that I will not go over. On request I may make a post about this.)&lt;/li&gt;
&lt;li&gt;Horizon Connection Server. (This Connection Server will be the brain of our Horizon deployment. It will handle assignments, allocation, and management of desktops and RDSH servers.) – This will be deployed in Part 3.&lt;/li&gt;
&lt;li&gt;Optional: Unified Access Gateway. (For my deployment, I want to be able to connect to a public IP from my /24 block, and access the Connection Server this way. Previously the Security Server was used for this.) – This will be deployed in Part 4.&lt;/li&gt;
&lt;li&gt;Optional: a Remote Desktop Session Host. With this, one of the use cases is to allow users to connect to applications on the RDSH host. (I will just use this to experiment.) This will be deployed in Part 6.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;In part 4, I will be going over a &lt;a href="https://techzone.vmware.com/"&gt;TechZone&lt;/a&gt; article and show you how to create a Windows 10 image that can be cloned easily to fit your deployment. For now, I will not go over View Composer. However, later in the series I will, once I’ve deployed a copy of this set-up as a lab. However, due to SSD space issues this may take a while. I may try to balance it in HDDs, but I have to be careful to avoid &lt;a href="https://cdn.masterwayz.nl/screenshots/firefox_eNwdOZa7Qp.png"&gt;this insanity&lt;/a&gt;.&lt;/p&gt;</description></item><item><title>Horizon 7.11 Deployment – Part 1: Use-case, goal and why Horizon?</title><link>https://blog.michellewayz.com/horizon-7-11-deployment-part-1-use-case-goal-and-why-horizon/</link><pubDate>Sat, 01 Feb 2020 15:57:00 +0000</pubDate><guid>https://blog.michellewayz.com/horizon-7-11-deployment-part-1-use-case-goal-and-why-horizon/</guid><description>
&lt;p&gt;Hi readers,&lt;/p&gt;
&lt;p&gt;This post is the first part of a VMware Horizon 7.11 Deployment series. In this first part, we will look into what Horizon is, what it is used for and why you should use it.&lt;/p&gt;
&lt;p&gt;As VMware puts it out, which is a great explanation of what Horizon 8 is for; &lt;a href="https://www.vmware.com/products/horizon.html"&gt;VMware Horizon 7&lt;/a&gt;: “&lt;em&gt;simplifies the management and delivery of virtual desktops and apps on-premises, in the cloud, or in a hybrid or multi-cloud configuration through a single platform to end-users. By leveraging complete workspace environment management and optimized for the software-defined data center, Horizon 7 helps IT control, manage, and protect all of the Windows resources end users want, at the speed they expect, with the efficiency business demands.&lt;/em&gt;“&lt;/p&gt;</description></item><item><title>VMware Cloud Foundation – Part 2: Upgrading</title><link>https://blog.michellewayz.com/vmware-cloud-foundation-part-2-upgrading/</link><pubDate>Fri, 24 Jan 2020 08:00:00 +0000</pubDate><guid>https://blog.michellewayz.com/vmware-cloud-foundation-part-2-upgrading/</guid><description>
&lt;p&gt;Hello readers,&lt;/p&gt;
&lt;p&gt;This is part two of my VMware Cloud Foundation series. In this part, we will be upgrading all components to the latest version. At the time of writing 3.9 is the latest version and currently I am running 3.8.&lt;/p&gt;
&lt;p&gt;In &lt;a href="https://blog.masterwayz.nl/?p=166"&gt;part one&lt;/a&gt;, we have done a bring-up on our SDDC, creating and deploying the management Workload Domain (WLD).&lt;/p&gt;
&lt;p&gt;First what you need to do, is to connect a My VMware account, so it can download the upgrade bundles.&lt;/p&gt;</description></item><item><title>Highlighting PowerVCF</title><link>https://blog.michellewayz.com/highlighting-powervcf/</link><pubDate>Sun, 19 Jan 2020 02:00:00 +0000</pubDate><guid>https://blog.michellewayz.com/highlighting-powervcf/</guid><description>
&lt;p&gt;Hi readers,&lt;/p&gt;
&lt;p&gt;This will be a short post. However, I want to take my time now and highlight a new creation from &lt;a href="https://twitter.com/GaryJBlake"&gt;Gary Blake&lt;/a&gt;, &lt;a href="https://twitter.com/GiulianoBerteo"&gt;Giuliano Bertello&lt;/a&gt; and &lt;a href="https://twitter.com/bdwill"&gt;Brandon Willmott&lt;/a&gt; called &lt;a href="https://github.com/PowerVCF/PowerVCF"&gt;PowerVCF&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;PowerVCF is, as from their GitHub page: &lt;em&gt;“PowerVCF is a PowerShell Module for interacting with the VMware Cloud Foundation (SDDC Manager) public API.”&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;It has been tested with PowerShell 5.x and PowerShell Core 6.x&lt;br&gt;
To install the module, open PowerShell as an Administrator and run:&lt;br&gt;
&lt;em&gt;Install-Module -Name PowerVCF&lt;/em&gt;&lt;br&gt;
Or, alternatively, you can install the module download from the zip file in th GitHub repo:&lt;br&gt;
&lt;em&gt;Import-Module .\PowerVCF&lt;/em&gt;&lt;/p&gt;</description></item><item><title>VMware Hands on Labs: what is it?</title><link>https://blog.michellewayz.com/vmware-hands-on-labs-what-is-it/</link><pubDate>Tue, 14 Jan 2020 14:21:19 +0000</pubDate><guid>https://blog.michellewayz.com/vmware-hands-on-labs-what-is-it/</guid><description>
&lt;p&gt;Hi everyone,&lt;/p&gt;
&lt;p&gt;You may have heard me mention &lt;a href="https://labs.hol.vmware.com/HOL/catalogs/"&gt;VMware Hands on Labs&lt;/a&gt; a few times, but what exactly is it?&lt;/p&gt;
&lt;p&gt;VMware Hands on Labs allows you to test drive products within your browser, at no cost. With HOL, you can evaluate the features and functionality of VMware products without the need to have your own physical lab hardware.&lt;/p&gt;
&lt;p&gt;If you browse through the &lt;a href="http://docs.hol.vmware.com/catalog/"&gt;catalog&lt;/a&gt; you will see that there is plenty of choices. Ranging from Getting Started with vSphere, to VMC on AWS, Cloud Foundation, PKS and even challenge and Odyssey labs. (Odyssey labs deserve their own blog post that will be posted later)&lt;/p&gt;</description></item><item><title>vExpert 2020 Applications</title><link>https://blog.michellewayz.com/vexpert-2020-applications/</link><pubDate>Thu, 09 Jan 2020 00:18:06 +0000</pubDate><guid>https://blog.michellewayz.com/vexpert-2020-applications/</guid><description>
&lt;p&gt;Hi everyone,&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;EDIT: The vExpert 2020 first half applications are now closed!&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;s&gt;Don’t forget to apply for vExpert if you haven’t already! According to &lt;a href="https://twitter.com/vNinjaDFW/status/1214967308197736448"&gt;Twitter&lt;/a&gt;, the closing date has moved to 1/13 at 10 AM MT.&lt;/s&gt;&lt;/p&gt;
&lt;p&gt;Apply &lt;a href="https://vexpert.vmware.com/apply"&gt;here&lt;/a&gt; with your blog posts, VMUG events, other events, talks, and much more. There are also more paths, like customer path, VCDX path and more!&lt;/p&gt;
&lt;p&gt;Be sure to give it a go, I have too! On my &lt;a href="https://twitter.com/MasterWayZ1"&gt;Twitter&lt;/a&gt;, I replied to VMware’s tweet saying that I applied as well, and that I’ve applied again and that hopefully third time’s a charm. Well, to my surprise, one of the VMware people replied to me:&lt;figure class="wp-block-image size-large"&gt;&lt;/p&gt;</description></item><item><title>VMware Cloud Foundation – Part 1: Deploying management domain with VLC</title><link>https://blog.michellewayz.com/vmware-cloud-foundation-part-1-deploying-management-domain-with-vlc/</link><pubDate>Tue, 07 Jan 2020 07:17:00 +0000</pubDate><guid>https://blog.michellewayz.com/vmware-cloud-foundation-part-1-deploying-management-domain-with-vlc/</guid><description>
&lt;p&gt;Hello readers,&lt;/p&gt;
&lt;p&gt;In this part, we will be deploying VMware Cloud Foundation in a nested environment using vCF Lab Constructor, which you can read more about &lt;a href="https://blog.bertello.org/2019/08/building-nested-vcf-using-vcf-lab-constructor-vlc/"&gt;here&lt;/a&gt;. TLDR: it is a PowerShell script designed to automatically deploy vCF along with the management Workload Domain (WLD).&lt;/p&gt;
&lt;p&gt;&lt;span style="text-decoration: underline;"&gt;VCF Lab Constructor (aka VLC) is a great PowerShell tool created by &lt;a rel="noreferrer noopener" href="https://twitter.com/DataReload" target="_blank"&gt;Ben Sier&lt;/a&gt; and &lt;a href="https://twitter.com/heathbarj"&gt;Heath Johnson&lt;/a&gt; working at VMware in the Technical Marketing team&lt;/span&gt;. A big thank you for them for making this amazing script!&lt;br&gt;
Quoting from a blog post (which is how I learned about it), found &lt;a href="https://blog.bertello.org/2019/08/building-nested-vcf-using-vcf-lab-constructor-vlc/"&gt;here&lt;/a&gt;:&lt;br&gt;
“It’s the easiest way to essentially deploy a Cloud Foundation nested environment, without having to manually install ESXi, Cloud Builder as well as doing lots of validation on your own.”&lt;/p&gt;</description></item><item><title>ESXi with TPS: more (shared) memory for your homelab</title><link>https://blog.michellewayz.com/esxi-with-tps-more-shared-memory-for-your-homelab/</link><pubDate>Fri, 03 Jan 2020 07:40:00 +0000</pubDate><guid>https://blog.michellewayz.com/esxi-with-tps-more-shared-memory-for-your-homelab/</guid><description>
&lt;p&gt;Hi everyone,&lt;/p&gt;
&lt;p&gt;This post will be about a nice trick I learned to get the maximum out of your VMware Homelab.&lt;/p&gt;
&lt;p&gt;TPS, or Transparent Page Sharing, is a function where, in short, multiple identical virtual memory pages are pointing to the same page within the memory of the host. &lt;a href="https://www.vmware.com/content/dam/digitalmarketing/vmware/en/pdf/techpaper/perf-vsphere-memory_management.pdf"&gt;Here is a whitepaper&lt;/a&gt; that goes more in-depth.&lt;/p&gt;
&lt;p&gt;It used to be on by default, but I believe that it was turned off due to security concerns (&lt;a href="https://kb.vmware.com/s/article/2080735"&gt;KB&lt;/a&gt;). However, it’s still easy to turn on.&lt;/p&gt;</description></item><item><title>VMware Cloud Foundation – Part 0: Testing</title><link>https://blog.michellewayz.com/vmware-cloud-foundation-part-0-testing/</link><pubDate>Mon, 23 Dec 2019 22:57:55 +0000</pubDate><guid>https://blog.michellewayz.com/vmware-cloud-foundation-part-0-testing/</guid><description>
&lt;p&gt;Hi readers,&lt;/p&gt;
&lt;p&gt;Currently, I temporarily have access to a server with enough memory to run a Cloud Foundation lab until January 2nd 2020.&lt;/p&gt;
&lt;p&gt;This gave me the inspiration to build a Cloud Foundation lab and tinker around with it, along with tinkering with an automatic lab deployment script called VLC (VCF Lab Constructor). This is a Powershell program designed to make it easy to deploy a &lt;strong&gt;nested&lt;/strong&gt; (means: running Virtual Machines within Virtual Machines.) Cloud Foundation lab. This is not supported by anyone other than some communities, but it seems to work great for others so I wanted to give it a try.&lt;/p&gt;</description></item><item><title>More PowerCLI scripts to make life easier!</title><link>https://blog.michellewayz.com/more-powercli-scripts-to-make-life-easier/</link><pubDate>Wed, 11 Dec 2019 07:25:00 +0000</pubDate><guid>https://blog.michellewayz.com/more-powercli-scripts-to-make-life-easier/</guid><description>
&lt;p&gt;Hello!&lt;/p&gt;
&lt;p&gt;Inspired by my last blog post, here are more PowerCLI scripts to make life easier.&lt;/p&gt;
&lt;p&gt;Script one; get VMs on a specific host with a specific Port Group&lt;/p&gt;
&lt;pre class="wp-block-code"&gt;&lt;code lang="powershell" class="language-powershell"&gt;$viserver = "vCenter IP/FQDN here"
$t_host = "ESXi FQDN/IP here as used in vCenter"
$portgroup = "port group name here"
Connect-VIServer $viserver
Get-Cluster -VMHost $t_host | Get-VMHost | Get-VM | Get-NetworkAdapter | Where-Object{$_.NetworkName -like $portgroup}&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Script two; get VMs on a specific host with a specific Port Group and move them over to a new Port Group&lt;/p&gt;</description></item><item><title>Easy PowerCLI script to help migrate VMs from one network to the other.</title><link>https://blog.michellewayz.com/easy-powercli-script-to-help-migrate-vms-from-one-network-to-the-other/</link><pubDate>Sat, 07 Dec 2019 06:00:00 +0000</pubDate><guid>https://blog.michellewayz.com/easy-powercli-script-to-help-migrate-vms-from-one-network-to-the-other/</guid><description>
&lt;p&gt;Hi everyone,&lt;/p&gt;
&lt;p&gt;In this post I am sharing a PowerCLI script that I made in order to easily migrate VMs from one network to the other.&lt;/p&gt;
&lt;p&gt;There are two versions of this script, one version has a hard-coded ESXi/vCenter instance, and the other one asks for the vCenter on each run.&lt;/p&gt;
&lt;p&gt;Version 1 (hard coded ESXi/vCenter):&lt;/p&gt;
&lt;pre class="wp-block-code"&gt;&lt;code lang="powershell" class="language-powershell line-numbers"&gt;Do {
$vspherehost = "ADD-ME"
$src = Read-Host -Prompt "Input source network"
$dst = Read-Host -Prompt "Input destination network"
Connect-VIServer $vspherehost
Get-VM | Get-NetworkAdapter | where{$_.NetworkName -like $src} | Set-NetworkAdapter -NetworkName $dst
} while($true)&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Version 2 (Asks for ESXi/vCenter on reach run):&lt;/p&gt;</description></item><item><title>Moved from NSX-T back to NSX-V</title><link>https://blog.michellewayz.com/moved-from-nsx-t-back-to-nsx-v/</link><pubDate>Wed, 04 Dec 2019 00:27:00 +0000</pubDate><guid>https://blog.michellewayz.com/moved-from-nsx-t-back-to-nsx-v/</guid><description>
&lt;p&gt;Hi everyone,&lt;/p&gt;
&lt;p&gt;This post will be out about me moving back from NSX-T to NSX-V due to weird deploying issues.&lt;/p&gt;
&lt;p&gt;NSX-V is no longer being developed, so this has caused me to try to migrate to the new NSX-T, however I moved back to NSX-V when my NSX-T Edge nodes started to fail. The Geneve tunnels to the ESXi host randomly started to stop working and asking on the &lt;a href="https://communities.vmware.com/community/vmtn/nsx"&gt;VMTN NSX forums&lt;/a&gt; did not work either as I got no response after four days and I needed my virtual networking to work again, so I figured that it would be easier to migrate back to NSX-V until I reinstall ESXi on the host.&lt;/p&gt;</description></item><item><title>What it is like to have your own IPv6 and IPv4 space</title><link>https://blog.michellewayz.com/what-it-is-like-to-have-your-own-ipv6-and-ipv4-space/</link><pubDate>Thu, 28 Nov 2019 19:00:00 +0000</pubDate><guid>https://blog.michellewayz.com/what-it-is-like-to-have-your-own-ipv6-and-ipv4-space/</guid><description>
&lt;p&gt;Hey everyone,&lt;/p&gt;
&lt;p&gt;As some of you know, I have my own IPv4 and IPv6 subnet, along with my own Autonomous System Number, in my case AS208751.&lt;/p&gt;
&lt;p&gt;I am not a LIR (Local Internet Registry, you can read more about that &lt;a href="https://www.ripe.net/manage-ips-and-asns/resource-management/faq/independent-resources/phase-three/what-is-a-local-internet-registry-lir"&gt;here&lt;/a&gt;.) myself, so I had to get a sponsoring LIR to request my ASN. Once that was taken care off, I got myself a /44 IPv6 subnet, and a /24 IPv4 subnet.&lt;/p&gt;</description></item><item><title>Creating YouTube videos and more lab space</title><link>https://blog.michellewayz.com/creating-youtube-videos-and-more-lab-space/</link><pubDate>Fri, 11 Oct 2019 16:24:45 +0000</pubDate><guid>https://blog.michellewayz.com/creating-youtube-videos-and-more-lab-space/</guid><description>
&lt;p&gt;Hello readers,&lt;/p&gt;
&lt;p&gt;Welcome to my new blog post, in this post I’ll be sharing some ideas that I had.&lt;/p&gt;
&lt;p&gt;For the past few weeks I have been thinking of creating posts about setting up a nested ESXi lab with NSX and vSAN. I thought to myself: “Why not make both a blog post and a YouTube tutorial?”. Which is exactly what I will be doing, once my new microphone arrives, is all set up and when it works.&lt;/p&gt;</description></item><item><title>Adding a static route to ESXi</title><link>https://blog.michellewayz.com/adding-a-static-route-to-esxi/</link><pubDate>Mon, 22 Jul 2019 00:31:24 +0000</pubDate><guid>https://blog.michellewayz.com/adding-a-static-route-to-esxi/</guid><description>
&lt;p&gt;Hi readers,&lt;/p&gt;
&lt;p&gt;This short post will be about how I had to set-up a static route on ESXi to my VPN subnet.&lt;/p&gt;
&lt;p&gt;My setup is as follows: I have an ESXi server in DC1, and a ESXi server at home. The Home ESXi server has vCenter and vRealize Operations Manager on it. My goal was to have vRealize Operations Manager give rightsize advise on VMs on both my home server and the server in DC1. For this to work, I need to add my DC1 server to my vCenter server. I created a datacenter for it in vCenter, and I created a vmkernel adapter on the LAN network of the DC1 server. There is an IPSec VPN that links the remote network and my local network.&lt;/p&gt;</description></item><item><title>IPv6 and BGP adventure</title><link>https://blog.michellewayz.com/ipv6-and-bgp-adventure/</link><pubDate>Thu, 18 Jul 2019 18:08:07 +0000</pubDate><guid>https://blog.michellewayz.com/ipv6-and-bgp-adventure/</guid><description>
&lt;p&gt;Hi readers,&lt;/p&gt;
&lt;p&gt;This post will be about my ‘adventure’ of getting my own AS number, IPv6 subnet, and peering with Hurricane Electric to announce my IPv6 subnet over a 6to4 tunnel.&lt;/p&gt;
&lt;p&gt;I started to chat with someone on Discord about getting my own IPv6 subnet. They’re not that expensive. I got mine from &lt;a href="https://snapserv.net/"&gt;SnapServ&lt;/a&gt;. I purchased a /44 IPv6 subnet and an Autonomous System Number.&lt;/p&gt;
&lt;p&gt;After having successfully set-up a 6to4 tunnel with Hurricane Electric before, I decided to sign up for a BGP tunnel, so I can use my own IP address space.&lt;/p&gt;</description></item><item><title>New hard drive tomorrow and testing VMware Horizon (UPDATED 12/7/19)</title><link>https://blog.michellewayz.com/new-hard-drive-tomorrow-and-testing-vmware-horizon/</link><pubDate>Mon, 08 Jul 2019 18:07:59 +0000</pubDate><guid>https://blog.michellewayz.com/new-hard-drive-tomorrow-and-testing-vmware-horizon/</guid><description>
&lt;p&gt;Hi readers,&lt;/p&gt;
&lt;p&gt;Tomorrow I’m getting a 2TB drive that I can put in my server. I plan to use it for an apt mirror, and to run a test environment on it for VMware Horizon.&lt;/p&gt;
&lt;p&gt;It has been a while since I have used VMware Horizon, so I hope that my memory won’t let me down. If it does, then there’s always the documentation… (and YouTube).&lt;/p&gt;
&lt;p&gt;For a short while it will also be used for my to make screenshots of VMware tutorials that I write for Hetzner’s wiki. I’ve written a vCenter and NSX one, and I’m almost done with the screenshots for the vCenter &lt;a href="https://github.com/hetzneronline/community-content/pull/118"&gt;PR&lt;/a&gt;. The NSX tutorial does not have a PR yet.&lt;/p&gt;</description></item><item><title>Server update: it’s all (almost) set-up</title><link>https://blog.michellewayz.com/server-update-its-all-almost-set-up/</link><pubDate>Mon, 01 Jul 2019 19:09:30 +0000</pubDate><guid>https://blog.michellewayz.com/server-update-its-all-almost-set-up/</guid><description>
&lt;p&gt;Hi readers,&lt;/p&gt;
&lt;p&gt;Welcome to this server update post. I’ve made some changes to the system, and it’s almost done! Sadly, right now it’s come of a stop, because of lack of storage space.&lt;/p&gt;
&lt;p&gt;It’s not a big update. Hardware-wise, nothing changed. I am planning to go 10 gigabit though, whenever I have more monthly income, because with what I earn right now, it would me impossible.&lt;/p&gt;
&lt;p&gt;VM-wise, I added a virtual machine for peering with a Virtual Internet Exchange. Currently I am working on my own Virtual Internet Exchange, which would be for people who want to learn BGP, routing and more.&lt;/p&gt;</description></item><item><title>My server</title><link>https://blog.michellewayz.com/my-server/</link><pubDate>Sat, 22 Jun 2019 23:07:18 +0000</pubDate><guid>https://blog.michellewayz.com/my-server/</guid><description>
&lt;p&gt;Hi readers!&lt;br&gt;
Welcome to my first real blog post! In this post, I will be explaining my current server, my trusty HP ProLiant DL380G6.&lt;/p&gt;
&lt;p&gt;It’s armed with two Intel Xeon X5650s, which each have 6 core and 12 threads, making it a total of 12 cores and 24 threads. It has 144 GB (18x 8GB) of ECC RAM, and it currently have two 500GB SSDs, along with a single 320GB HDD.&lt;br&gt;
Here is a picture:&lt;figure class="wp-block-image"&gt;&lt;/p&gt;</description></item></channel></rss>