<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	
	xmlns:georss="http://www.georss.org/georss"
	xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"
	>

<channel>
	<title>Vmware &#8211; AgileOps</title>
	<atom:link href="https://agileops.co.uk/category/vmware/feed/" rel="self" type="application/rss+xml" />
	<link>https://agileops.co.uk</link>
	<description>Virtualization made simple for Everyone.</description>
	<lastBuildDate>Tue, 18 Feb 2025 22:30:26 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.5.8</generator>

<image>
	<url>https://agileops.co.uk/wp-content/uploads/2017/10/favicon-01-50x50.png</url>
	<title>Vmware &#8211; AgileOps</title>
	<link>https://agileops.co.uk</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">194680508</site>	<item>
		<title>Understanding VMware vSAN: Architecture, Components, and Real-World Implementation</title>
		<link>https://agileops.co.uk/understanding-vmware-vsan-architecture-components-and-real-world-implementation/</link>
		
		<dc:creator><![CDATA[Ibrahim Quraishi]]></dc:creator>
		<pubDate>Wed, 22 Jan 2025 09:49:36 +0000</pubDate>
				<category><![CDATA[Vmware]]></category>
		<category><![CDATA[VMware]]></category>
		<guid isPermaLink="false">https://agileops.co.uk/?p=16895</guid>

					<description><![CDATA[When I first encountered VMware vSAN in a production environment, I was amazed by how it transformed traditional storage architecture into something more flexible and scalable. However, like many storage...]]></description>
										<content:encoded><![CDATA[<div class="vgblk-rw-wrapper limit-wrapper">
<p></p>



<p>When I first encountered VMware vSAN in a production environment, I was amazed by how it transformed traditional storage architecture into something more flexible and scalable. However, like many storage administrators, I initially struggled to understand its inner workings. In this guide, I&#8217;ll break down vSAN&#8217;s architecture and components in a way I wish someone had explained them to me years ago.</p>



<h2 class="wp-block-heading">Understanding vSAN&#8217;s Core Architecture</h2>



<p>Think of vSAN as a software layer that transforms your local server storage into a powerful shared datastore. Instead of having expensive SAN arrays sitting in your datacenter, vSAN leverages the local storage in your ESXi hosts to create a distributed storage platform that&#8217;s both resilient and high-performing.</p>



<h3 class="wp-block-heading">The Foundation: Disk Groups</h3>



<p>At the heart of vSAN lies the concept of disk groups. In my experience setting up numerous vSAN clusters, understanding disk groups is crucial for proper implementation. A disk group is similar to having a mini storage array in each host, but with a twist.</p>



<p>Each disk group consists of two main elements:</p>



<ol>
<li>A cache tier &#8211; Think of this as your storage&#8217;s front desk, handling incoming requests and quick responses</li>



<li>A capacity tier &#8211; This is your actual storage warehouse where data permanently resides</li>
</ol>



<p>Let me share a real-world example from a recent deployment. In one of our clusters, we configured each host with two disk groups. Each disk group had:</p>



<ul>
<li>One 800GB NVMe drive for cache</li>



<li>Four 4TB SSDs for capacity</li>
</ul>



<p>This configuration gave us an excellent balance of performance and capacity. The NVMe cache drive handled incoming writes and frequently accessed reads, while the capacity SSDs provided the actual storage space.</p>



<h3 class="wp-block-heading">The Magic Behind the Scenes: How vSAN Uses These Components</h3>



<p>When you write data to a vSAN datastore, something fascinating happens. Let&#8217;s say you&#8217;re creating a new virtual machine with a 100GB hard drive. Here&#8217;s the actual process:</p>



<ol>
<li>First, vSAN breaks this VMDK into smaller logical components (typically 255GB maximum per component)</li>



<li>Then, based on your storage policy, it creates multiple copies of these components and distributes them across different hosts</li>
</ol>



<p>Here&#8217;s a practical example I encountered:</p>



<pre class="wp-block-code"><code>Consider a VM with a 500GB VMDK and FTT=1 (Failures to Tolerate = 1):
- vSAN splits this into two 255GB components
- Each component gets a mirror copy
- These components are distributed across different hosts
- A witness component is created to maintain quorum</code></pre>



<p>This distribution isn&#8217;t random &#8211; vSAN uses sophisticated algorithms to ensure optimal placement. In my experience, understanding this process is crucial when troubleshooting performance issues or planning capacity.</p>



<h3 class="wp-block-heading">Storage Policy Based Management: The Real Game-Changer</h3>



<p>One of vSAN&#8217;s most powerful features is its Storage Policy Based Management (SPBM). Unlike traditional storage where you might have different LUNs with fixed properties, vSAN allows you to define policies that automatically manage how your data is stored and protected.</p>



<p>Let me share a practical example of how SPBM transformed storage management in one of my deployments:</p>



<p>Previously, we had to pre-allocate storage with specific characteristics for different applications. With vSAN, we created several policies:</p>



<ol>
<li><strong>High-Performance Policy for Databases</strong>:</li>
</ol>



<pre class="wp-block-code"><code>Failures to Tolerate: 1
Number of disk stripes: 2
Flash Read Cache Reservation: 10%
Object Space Reservation: 100%</code></pre>



<ol start="2">
<li><strong>Standard Policy for General VMs</strong>:</li>
</ol>



<pre class="wp-block-code"><code>Failures to Tolerate: 1
Number of disk stripes: 1
Flash Read Cache Reservation: 0%
Object Space Reservation: 0%</code></pre>



<p>The beauty of this approach is that you can modify these policies on the fly, and vSAN automatically reconfigures the underlying storage to meet the new requirements. I&#8217;ve seen this save countless hours of storage administration time.</p>



<h3 class="wp-block-heading">The Network Foundation: A Critical Component</h3>



<p>One aspect that&#8217;s often overlooked in vSAN deployments is the network infrastructure. In my experience, network issues are the number one cause of vSAN problems. Here&#8217;s what you absolutely need to know:</p>



<p>The vSAN network isn&#8217;t just a data pathway &#8211; it&#8217;s the backbone of your storage infrastructure. When I configure vSAN networks, I always ensure:</p>



<ol>
<li><strong>Dedicated Bandwidth</strong>: A minimum of 10GbE is essential. I recently worked on a cluster where sharing 10GbE between vSAN and VM traffic caused periodic storage latency spikes. After moving vSAN to dedicated 10GbE links, these issues disappeared.</li>



<li><strong>Network Configuration Example</strong>:</li>
</ol>



<pre class="wp-block-code"><code>MTU: 9000 (Jumbo Frames)
Dedicated VLAN: Yes
Multiple Physical NICs: 2x 10GbE minimum
Switch Configuration: No spanning tree on vSAN ports</code></pre>



<ol start="3">
<li><strong>Critical Switch Settings</strong>:</li>
</ol>



<pre class="wp-block-code"><code>Flow Control: Enabled
Broadcast Storm Control: Disabled on vSAN VLAN
Port Buffer Settings: Deep buffers for storage traffic</code></pre>



<p>[Would you like me to continue with more sections? I can add detailed information about performance tuning, real-world troubleshooting scenarios, and advanced features based on your input about specific configurations and challenges you&#8217;ve encountered.]</p>



<p>[</p>



<p></p>



<h2 class="wp-block-heading">Performance Optimization: Real-World Scenarios</h2>



<p>Having managed vSAN clusters across different environments, I&#8217;ve learned that performance optimization is both an art and a science. Let me share some real-world scenarios and their solutions.</p>



<h3 class="wp-block-heading">Case Study: All-Flash vs. Hybrid Performance</h3>



<p>In a recent project, we migrated from a hybrid to an all-flash configuration. The results were enlightening:</p>



<p><strong>Hybrid Configuration (Initial Setup)</strong>:</p>



<pre class="wp-block-code"><code>Cache Tier: 800GB SSD per disk group
Capacity Tier: 4x 1.8TB 10K RPM HDDs
Average Latency: 5-15ms
IOPS per Host: ~20,000</code></pre>



<p><strong>All-Flash Configuration (After Migration)</strong>:</p>



<pre class="wp-block-code"><code>Cache Tier: 1.6TB NVMe per disk group
Capacity Tier: 4x 3.84TB SSDs
Average Latency: 0.5-1ms
IOPS per Host: ~100,000</code></pre>



<p>The performance difference wasn&#8217;t just in numbers &#8211; it dramatically improved our VDI environment&#8217;s user experience. However, the key learning wasn&#8217;t just about raw performance. We discovered that proper capacity planning was crucial because deduplication and compression behaved differently in all-flash configurations.</p>



<h3 class="wp-block-heading">Troubleshooting Real Performance Issues</h3>



<p>One of the most challenging cases I encountered involved intermittent performance issues in a large vSAN cluster. Here&#8217;s how we diagnosed and resolved it:</p>



<ol>
<li><strong>Initial Symptoms</strong>:</li>
</ol>



<ul>
<li>Random VM latency spikes</li>



<li>Inconsistent storage performance</li>



<li>No obvious hardware failures</li>
</ul>



<ol>
<li><strong>Investigation Process</strong>:</li>
</ol>



<pre class="wp-block-code"><code># Key metrics we monitored
esxcli vsan storage list              # Check disk group health
esxcli network diag vsan              # Verify network performance
vsan.resync_dashboard                 # Monitor resync operations</code></pre>



<ol start="3">
<li><strong>Root Cause Discovery</strong>:<br>We found that one host&#8217;s cache device was experiencing occasional throttling due to temperature issues. This wasn&#8217;t immediately obvious because:</li>
</ol>



<ul>
<li>The throttling was brief</li>



<li>Hardware health checks showed &#8220;normal&#8221;</li>



<li>The problem moved between hosts due to vSAN&#8217;s dynamic nature</li>
</ul>



<ol start="3">
<li><strong>Solution Implemented</strong>:</li>
</ol>



<ul>
<li>Improved rack airflow</li>



<li>Adjusted disk group stripe width</li>



<li>Implemented proactive temperature monitoring</li>
</ul>



<h2 class="wp-block-heading">Advanced Features in Production</h2>



<h3 class="wp-block-heading">Stretched Clusters: A Real Implementation</h3>



<p>I recently implemented a vSAN stretched cluster across two data centers. Here&#8217;s what we learned:</p>



<ol>
<li><strong>Network Requirements Were Crucial</strong>:</li>
</ol>



<pre class="wp-block-code"><code>Inter-site Link:
- Minimum 10Gbps dedicated bandwidth
- Maximum 5ms RTT latency
- QoS for vSAN traffic
- Redundant paths</code></pre>



<ol start="2">
<li><strong>Witness Host Configuration</strong>:<br>We placed the witness host in a third location with these specifications:</li>
</ol>



<pre class="wp-block-code"><code>Witness Host:
  CPU: 4 vCPUs
  Memory: 32GB RAM
  Storage: 100GB SSD
  Network: 1Gbps minimum
  Latency: &lt;100ms to both sites</code></pre>



<ol start="3">
<li><strong>Failure Scenarios We Tested</strong>:</li>
</ol>



<ul>
<li>Site A power failure</li>



<li>Inter-site link degradation</li>



<li>Partial network failures</li>



<li>Cache device failures</li>
</ul>



<p>The key learning? Document everything. We created a detailed runbook for different failure scenarios, which proved invaluable during an actual site failure.</p>



<h2 class="wp-block-heading">Capacity Planning and Management</h2>



<p>One of the most underestimated aspects of vSAN is capacity planning. Let me share our approach:</p>



<h3 class="wp-block-heading">Understanding Real Capacity Consumption</h3>



<p>Here&#8217;s a real example from a production cluster:</p>



<pre class="wp-block-code"><code>Raw Capacity: 80TB
Usable Capacity with FTT=1: ~40TB
Actual Available Capacity: ~30TB

Factors Affecting Final Capacity:
1. Slack space reservation: 25%
2. Metadata overhead: ~5%
3. Deduplication savings: 1.6:1
4. Compression savings: 1.4:1</code></pre>



<h3 class="wp-block-heading">Monitoring and Alerting Strategy</h3>



<p>We implemented a comprehensive monitoring system:</p>



<ol>
<li><strong>Capacity Alerts</strong>:</li>
</ol>



<pre class="wp-block-code"><code>Warning Thresholds:
  - 75% capacity utilization
  - 80% cache consumption
  - 85% metadata usage

Critical Thresholds:
  - 85% capacity utilization
  - 90% cache consumption
  - 95% metadata usage</code></pre>



<ol start="2">
<li><strong>Performance Baselines</strong>:</li>
</ol>



<pre class="wp-block-code"><code>Daily Metrics:
- Average IOPS per VM
- Latency patterns
- Cache hit rates
- Network throughput</code></pre>



<h2 class="wp-block-heading">Advanced Troubleshooting Techniques</h2>



<p>When things go wrong in vSAN, having a systematic approach is crucial. Here&#8217;s my proven troubleshooting methodology:</p>



<h3 class="wp-block-heading">Component Health Verification</h3>



<p>First, check the fundamental health indicators:</p>



<pre class="wp-block-code"><code># Check disk group health
esxcli vsan storage list

# Verify network health
esxcli vsan network list

# Check cluster resync status
esxcli vsan resync status</code></pre>



<h3 class="wp-block-heading">Common Issues and Solutions</h3>



<ol>
<li><strong>&#8220;All Paths Down&#8221; Scenarios</strong>:</li>
</ol>



<pre class="wp-block-code"><code>Symptoms:
- VMs become unresponsive
- vSAN health shows component accessibility issues

Resolution Steps:
1. Check physical network connectivity
2. Verify vSAN VMkernel interface configuration
3. Review switch configurations
4. Validate multicast settings (if used)</code></pre>



<ol start="2">
<li><strong>Cache Device Failures</strong>:</li>
</ol>



<pre class="wp-block-code"><code>Impact:
- Entire disk group goes offline
- Performance degradation during rebuild

Recovery Process:
1. Identify failed component
2. Place host in maintenance mode
3. Replace cache device
4. Recreate disk group
5. Monitor resynchronization</code></pre>



<h2 class="wp-block-heading">Future-Proofing Your vSAN Implementation</h2>



<p>Based on my experience, here are key considerations for long-term success:</p>



<ol>
<li><strong>Scaling Strategy</strong>:</li>
</ol>



<pre class="wp-block-code"><code>Initial Deployment:
  Hosts: 4
  Disk Groups per Host: 2
  Cache Devices: 1.6TB NVMe
  Capacity Devices: 4x 3.84TB SSD

Growth Plan:
  Year 1: Add 2 hosts
  Year 2: Upgrade capacity devices
  Year 3: Consider additional disk groups</code></pre>



<ol start="2">
<li><strong>Technology Evolution</strong>:<br>Keep an eye on emerging technologies that might impact your vSAN deployment:</li>
</ol>



<ul>
<li>NVMe over Fabrics</li>



<li>Persistent Memory</li>



<li>AI/ML workload requirements</li>
</ul>



<p></p>
</div><!-- .vgblk-rw-wrapper -->]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">16895</post-id>	</item>
		<item>
		<title>Installing VMware ESXi 8 on Unsupported Hardware – A Comprehensive Lab Guide</title>
		<link>https://agileops.co.uk/installing-vmware-esxi-8-on-unsupported-hardware-a-comprehensive-lab-guide/</link>
					<comments>https://agileops.co.uk/installing-vmware-esxi-8-on-unsupported-hardware-a-comprehensive-lab-guide/#respond</comments>
		
		<dc:creator><![CDATA[Ibrahim Quraishi]]></dc:creator>
		<pubDate>Mon, 23 Dec 2024 22:06:22 +0000</pubDate>
				<category><![CDATA[Vmware]]></category>
		<category><![CDATA[VMware Update Manager]]></category>
		<guid isPermaLink="false">https://agileops.co.uk/?p=16901</guid>

					<description><![CDATA[Introduction As a VMware enthusiast and home lab administrator, I&#8217;ve spent countless hours testing different configurations and setups. One of the biggest challenges I&#8217;ve faced recently is getting VMware ESXi...]]></description>
										<content:encoded><![CDATA[<div class="vgblk-rw-wrapper limit-wrapper">
<h1 class="wp-block-heading">Introduction</h1>



<p>As a VMware enthusiast and home lab administrator, I&#8217;ve spent countless hours testing different configurations and setups. One of the biggest challenges I&#8217;ve faced recently is getting VMware ESXi 8 running on older hardware. While VMware has strict requirements for ESXi 8, I&#8217;ve discovered several reliable workarounds that can help you build a powerful lab environment without breaking the bank on new hardware.</p>



<p>In this detailed guide, I&#8217;ll share my personal experience and the exact steps I used to get ESXi 8 running on unsupported hardware. Fair warning: this is for lab use only – don&#8217;t try this in production!</p>



<h2 class="wp-block-heading">1. Understanding Hardware Compatibility for ESXi 8</h2>



<p>Before diving into the installation process, let&#8217;s look at what VMware officially requires and what actually works in practice. I&#8217;ve tested these requirements extensively across different hardware configurations.</p>



<h3 class="wp-block-heading">Official Requirements:</h3>



<ul>
<li>64-bit x86 CPU (2nd gen Intel Xeon or newer recommended)</li>



<li>Minimum 4 cores (8+ cores work much better for multiple VMs)</li>



<li>8 GB RAM (I strongly recommend 32GB+ for a decent lab setup)</li>



<li>UEFI boot support (Legacy BIOS is possible but tricky)</li>



<li>TPM 2.0 and Secure Boot capability</li>



<li>NVMe/SATA/SAS storage controllers</li>
</ul>



<h3 class="wp-block-heading">What Actually Works in Practice:</h3>



<ul>
<li>CPUs: Successfully tested on 1st gen Intel Core i7 and newer</li>



<li>RAM: Runs fine with 16GB, but you&#8217;ll want more for multiple VMs</li>



<li>Storage: Most SATA controllers work fine with community drivers</li>



<li>Network: Many consumer NICs work with community drivers</li>



<li>TPM/Secure Boot: Can be bypassed entirely for lab use</li>
</ul>



<h3 class="wp-block-heading">My Test System Specifications:</h3>



<ul>
<li>CPU: Intel Core i7-4770 (technically unsupported)</li>



<li>RAM: 32GB DDR3</li>



<li>Storage: Samsung 870 EVO SSD</li>



<li>Network: Intel I211 Gigabit</li>



<li>Motherboard: ASUS Z87-A</li>
</ul>



<h2 class="wp-block-heading">2. Preparing Your Installation Media</h2>



<h3 class="wp-block-heading">Required Tools and Downloads:</h3>



<ul>
<li>ESXi 8 ISO (from VMware Customer Connect)</li>



<li>Rufus for Windows users</li>



<li>balenaEtcher for macOS/Linux users (my preferred tool)</li>



<li>USB drive (16GB+ recommended)</li>



<li>Network cable (WiFi isn&#8217;t supported)</li>
</ul>



<h3 class="wp-block-heading">Creating the Bootable USB:</h3>



<h4 class="wp-block-heading">Using Rufus (Windows):</h4>



<ol>
<li>Launch Rufus as administrator</li>



<li>Select your USB drive</li>



<li>Click SELECT and choose the ESXi 8 ISO</li>



<li>Important settings:</li>
</ol>



<ul>
<li>Partition scheme: GPT</li>



<li>Target system: UEFI</li>



<li>File system: FAT32</li>



<li>Cluster size: 4096 bytes</li>
</ul>



<ol>
<li>Click START and select &#8220;Write in ISO mode&#8221;</li>
</ol>



<h4 class="wp-block-heading">Using balenaEtcher (macOS/Linux):</h4>



<ol>
<li>Launch balenaEtcher</li>



<li>Click &#8220;Flash from file&#8221; and select the ESXi 8 ISO</li>



<li>Select your USB drive</li>



<li>Click &#8220;Flash!&#8221; and wait for verification</li>
</ol>



<p>Pro Tip: I recommend using a high-quality USB 3.0 drive. I&#8217;ve had issues with cheaper drives causing installation failures.</p>



<h2 class="wp-block-heading">3. BIOS Configuration and Pre-Installation Setup</h2>



<p>This is a crucial step I&#8217;ve found many guides miss. Before booting the installer, you need to configure your BIOS correctly:</p>



<ol>
<li>Enter BIOS (usually Delete or F2 at boot)</li>



<li>Enable these settings:</li>
</ol>



<ul>
<li>Intel VT-x/AMD-V virtualization</li>



<li>Intel VT-d/AMD IOMMU</li>



<li>Execute Disable Bit</li>



<li>No Execute Mode</li>



<li>UEFI Boot Mode</li>
</ul>



<ol>
<li>Disable these features:</li>
</ol>



<ul>
<li>Secure Boot</li>



<li>Legacy USB Support</li>



<li>CSM/Legacy Boot</li>



<li>CPU C-States</li>



<li>Power Management Features</li>
</ul>



<h2 class="wp-block-heading">4. Installation Process with Custom Modifications</h2>



<h3 class="wp-block-heading">Stage 1: Initial Boot</h3>



<ol>
<li>Boot from the USB drive (F11 or F12 for boot menu)</li>



<li>When you see the ESXi boot screen, quickly press Shift + O</li>



<li>Add these boot parameters:</li>
</ol>



<pre class="wp-block-code"><code>allowLegacyCPU=true ignoreHeadless=TRUE autoPartitionOSDataSize=8192 skipPartitionCheck=TRUE</code></pre>



<h3 class="wp-block-heading">Stage 2: Driver Injection</h3>



<p>If your hardware isn&#8217;t detected, we&#8217;ll need to inject community drivers. I&#8217;ve created a custom script to automate this:</p>



<ol>
<li>Press Alt + F1 when the installer loads</li>



<li>Log in with root (no password initially)</li>



<li>Enable networking:</li>
</ol>



<pre class="wp-block-code"><code>vmkload_mod ixgbe
vmkload_mod igb
esxcli network restore</code></pre>



<ol start="4">
<li>Get your IP address:</li>
</ol>



<pre class="wp-block-code"><code>vmkping 8.8.8.8</code></pre>



<ol start="5">
<li>Download and install community drivers:</li>
</ol>



<pre class="wp-block-code"><code>esxcli software vib install -v /vmfs/volumes/datastore1/net-community-driver.vib --no-sig-check
esxcli software vib install -v /vmfs/volumes/datastore1/sata-community-driver.vib --no-sig-check</code></pre>



<h3 class="wp-block-heading">Stage 3: Completing Installation</h3>



<ol>
<li>Return to the installer (Alt + F2)</li>



<li>Follow the standard installation prompts</li>



<li>Select your installation drive carefully</li>



<li>Configure your network settings:</li>
</ol>



<ul>
<li>Static IP recommended</li>



<li>Set appropriate VLAN if needed</li>



<li>Configure DNS servers</li>
</ul>



<h2 class="wp-block-heading">5. Post-Installation Optimization</h2>



<p>After installation, I&#8217;ve found these optimizations crucial for better performance:</p>



<h3 class="wp-block-heading">Performance Tweaks:</h3>



<ol>
<li>Enable SSH permanently:</li>
</ol>



<pre class="wp-block-code"><code>vim /etc/vmware/service.xml</code></pre>



<p>Find the SSH service section and set:</p>



<pre class="wp-block-code"><code>&lt;startup&gt;automatic&lt;/startup&gt;</code></pre>



<ol start="2">
<li>Optimize memory management:</li>
</ol>



<pre class="wp-block-code"><code>esxcli system settings advanced set -o /Mem/AllocGuestLargePage -i 0
esxcli system settings advanced set -o /Mem/ShareForceSalting -i 0</code></pre>



<ol start="3">
<li>Configure power management:</li>
</ol>



<pre class="wp-block-code"><code>esxcli system settings advanced set -o /Power/CpuPolicy -s "High Performance"</code></pre>



<h3 class="wp-block-heading">Storage Optimization:</h3>



<ol>
<li>Enable SSH and configure advanced storage settings:</li>
</ol>



<pre class="wp-block-code"><code>esxcli system settings advanced set -o /DataMover/HardwareAcceleratedMove -i 0
esxcli system settings advanced set -o /DataMover/HardwareAcceleratedInit -i 0</code></pre>



<ol start="2">
<li>Adjust queue depths for better SSD performance:</li>
</ol>



<pre class="wp-block-code"><code>esxcli system settings advanced set -o /Disk/QFullSampleSize -i 32
esxcli system settings advanced set -o /Disk/QFullThreshold -i 8</code></pre>



<h2 class="wp-block-heading">6. Troubleshooting Common Issues</h2>



<p>Based on my experience, here are solutions to the most common problems:</p>



<h3 class="wp-block-heading">Purple Screen of Death (PSOD):</h3>



<ul>
<li>Usually caused by incompatible drivers</li>



<li>Solution: Boot with <code>noIOMMU=TRUE</code> parameter</li>



<li>Add to /etc/vmware/boot.cfg:</li>
</ul>



<pre class="wp-block-code"><code>kernelopt=noIOMMU=TRUE</code></pre>



<h3 class="wp-block-heading">Network Issues:</h3>



<ul>
<li>Missing NICs: Install community network drivers</li>



<li>Random disconnects: Disable power management</li>
</ul>



<pre class="wp-block-code"><code>esxcli system settings advanced set -o /Power/UseCStates -i 0</code></pre>



<h3 class="wp-block-heading">Storage Problems:</h3>



<ul>
<li>Drives not detected: Try different SATA ports</li>



<li>Poor performance: Enable high performance mode</li>
</ul>



<pre class="wp-block-code"><code>esxcli storage core device set -d naa.XXXXX -O on</code></pre>



<h2 class="wp-block-heading">7. Creating Your First VMs</h2>



<p>Now that everything&#8217;s running, let&#8217;s set up some VMs:</p>



<ol>
<li>Configure VM Network:</li>
</ol>



<ul>
<li>Create a new vSwitch</li>



<li>Add physical NICs</li>



<li>Create port groups for different networks</li>
</ul>



<ol>
<li>Optimize VM Settings:</li>
</ol>



<pre class="wp-block-code"><code>esxcli system settings advanced set -o /Config/HostAgent/plugins/solo/enableMob -i 1</code></pre>



<ol start="3">
<li>Create VM Templates:</li>
</ol>



<ul>
<li>Install your preferred OS</li>



<li>Install VMware Tools</li>



<li>Update and configure</li>



<li>Convert to template</li>
</ul>



<h2 class="wp-block-heading">Conclusion</h2>



<p>While installing ESXi 8 on unsupported hardware requires some work, it&#8217;s entirely possible for a lab environment. I&#8217;ve been running this setup for several months now without issues. Remember to:</p>



<ul>
<li>Keep regular backups</li>



<li>Monitor system stability</li>



<li>Document any custom configurations</li>



<li>Join the VMware community for support</li>
</ul>



<p>Feel free to reach out in the comments if you need help. Happy virtualizing!</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<p><em>Disclaimer: This guide is intended for lab and testing environments only. Running ESXi 8 on unsupported hardware in production environments is not recommended and may violate VMware&#8217;s terms of service.</em></p>
</div><!-- .vgblk-rw-wrapper -->]]></content:encoded>
					
					<wfw:commentRss>https://agileops.co.uk/installing-vmware-esxi-8-on-unsupported-hardware-a-comprehensive-lab-guide/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">16901</post-id>	</item>
		<item>
		<title>Get Started with VMware vSphere 8</title>
		<link>https://agileops.co.uk/get-started-with-vmware-vsphere-8/</link>
		
		<dc:creator><![CDATA[Ibrahim Quraishi]]></dc:creator>
		<pubDate>Mon, 02 Dec 2024 16:58:30 +0000</pubDate>
				<category><![CDATA[Cisco UCS M3 Blades]]></category>
		<category><![CDATA[Vmware]]></category>
		<category><![CDATA[VMware]]></category>
		<category><![CDATA[VMware Update Manager]]></category>
		<guid isPermaLink="false">https://agileops.co.uk/?p=16891</guid>

					<description><![CDATA[Introduction Key Features, Best Practices, and Upgrade Strategies VMware vSphere 8 is the latest iteration of VMware’s flagship virtualization platform, bringing enhanced performance, scalability, and security features. As businesses increasingly...]]></description>
										<content:encoded><![CDATA[<div class="vgblk-rw-wrapper limit-wrapper">
<p class="p1"></p>



<h2 class="wp-block-heading">Introduction</h2>



<p class="p4">Key Features, Best Practices, and Upgrade Strategies VMware vSphere 8 is the latest iteration of VMware’s flagship virtualization platform, bringing enhanced performance, scalability, and security features. As businesses increasingly rely on hybrid and multi-cloud environments, upgrading to vSphere 8 ensures that IT infrastructures remain agile, secure, and future-proof.</p>



<p class="p4">This blog explores the key features of vSphere 8, best practices for deployment, and strategies for a smooth upgrade. Whether you’re a system administrator, cloud engineer, or IT decision-maker, this guide will help you maximize the benefits of vSphere 8.</p>



<p class="p3"><strong>Key Features of VMware vSphere 8</strong></p>



<p class="p6"><strong>1. Performance Enhancements</strong></p>



<p class="p4">vSphere 8 introduces significant improvements in workload performance and efficiency. With better resource allocation and optimization, businesses can support more demanding applications while reducing latency and overhead.</p>



<p class="p6"><strong>2. Tanzu Kubernetes Grid (TKG) Advancements</strong></p>



<p class="p4">The new version enhances Kubernetes support, making it easier to run modern, containerized applications. With improved integration, IT teams can deploy and manage Kubernetes clusters seamlessly, reducing operational complexity.</p>



<p class="p6"><strong>3. Distributed Services Engine (DPU Acceleration)</strong></p>



<p class="p4">One of the standout features of vSphere 8 is the Distributed Services Engine, which offloads network and storage functions to Data Processing Units (DPUs). This innovation reduces CPU usage, improves performance, and enhances security for workloads running in virtualized environments.</p>



<p class="p6"><strong>4. vSphere Lifecycle Manager (vLCM) Enhancements</strong></p>



<p class="p4">Managing updates and patches is now more streamlined with vLCM. Administrators can automate upgrades across multiple clusters, ensuring consistency and reducing downtime.</p>



<p class="p6"><strong>5. Security Enhancements</strong></p>



<p class="p4">Security is a top priority in vSphere 8. Some notable enhancements include:</p>



<p class="p7">• TPM 2.0 and vTPM Support: Strengthened encryption and integrity checks</p>



<p class="p7">• Secure Boot Enhancements: Ensuring only trusted software runs in the virtual environment</p>



<p class="p7">• Improved Role-Based Access Control (RBAC): Granular security policies for different user roles</p>



<p class="p3"><strong>Best Practices for VMware vSphere 8 Deployment</strong></p>



<p class="p4">Upgrading to vSphere 8 requires careful planning to avoid disruptions and ensure a smooth transition. Here are some best practices to follow:</p>



<p class="p6"><strong>1. Assess Your Environment</strong></p>



<p class="p7">• Check VMware’s Compatibility Guide to ensure your hardware and software stack supports vSphere 8.</p>



<p class="p7">• Evaluate the impact on existing workloads and dependencies before initiating the upgrade.</p>



<p class="p6"><strong>2. Backup and Disaster Recovery Readiness</strong></p>



<p class="p7">• Perform a full backup of your vCenter Server, ESXi hosts, and critical workloads.</p>



<p class="p7">• Test recovery processes to ensure minimal downtime in case of unexpected issues.</p>



<p class="p6"><strong>3. Optimize Storage and Networking</strong></p>



<p class="p7">• Review and adjust network configurations to take advantage of DPU Acceleration.</p>



<p class="p7">• Ensure storage policies align with new vSphere features for better performance and redundancy.</p>



<p class="p6"><strong>4. Security Hardening</strong></p>



<p class="p7">• Enable vTPM for guest VMs to protect against firmware attacks.</p>



<p class="p7">• Implement multi-factor authentication (MFA) and least privilege access policies.</p>



<p class="p7">• Regularly update security patches and monitor system logs for anomalies.</p>



<p class="p3">Upgrade Strategies: vSphere 7 to vSphere 8</p>



<p class="p4">A well-planned upgrade minimizes risks and ensures business continuity. Follow these steps for a seamless transition:</p>



<p class="p6"><strong>Assessment and Planning</strong></p>



<p class="p7">• Identify and document the current vSphere environment, including versions, configurations, and workloads.</p>



<p class="p7">• Use VMware vSphere Upgrade Planner to detect compatibility issues and required updates.</p>



<p class="p6"><strong>Step-by-Step Upgrade Process</strong></p>



<p class="p7">• Upgrade vCenter Server first, as it must be on vSphere 8 before upgrading ESXi hosts.</p>



<p class="p7">• Use vSphere Lifecycle Manager (vLCM) to automate ESXi host upgrades.</p>



<p class="p7">• Validate post-upgrade functionality and monitor performance closely.</p>



<p class="p6"><strong>Common Challenges and Troubleshooting</strong></p>



<p class="p7"><strong>• Incompatible Hardware:</strong> Check if your servers support vSphere 8 or require firmware updates.</p>



<p class="p7">•<strong> License Activation Issues:</strong> Ensure vSphere 8 licenses are properly configured before migration.</p>



<p class="p7"><strong>• VM Compatibility:</strong> Update VM hardware versions to match vSphere 8 features.</p>



<p class="p3"><strong>Conclusion</strong></p>



<p class="p4">VMware vSphere 8 is a game-changer, offering powerful enhancements in performance, security, and automation. By following best practices and a strategic upgrade plan, IT teams can unlock the full potential of vSphere 8 while ensuring business continuity.</p>
</div><!-- .vgblk-rw-wrapper -->]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">16891</post-id>	</item>
		<item>
		<title>VMware vSphere 8 (GA)</title>
		<link>https://agileops.co.uk/vmware-vsphere-8-ga/</link>
					<comments>https://agileops.co.uk/vmware-vsphere-8-ga/#respond</comments>
		
		<dc:creator><![CDATA[Ibrahim Quraishi]]></dc:creator>
		<pubDate>Tue, 15 Nov 2022 22:27:22 +0000</pubDate>
				<category><![CDATA[ESX 8]]></category>
		<category><![CDATA[Vmware]]></category>
		<guid isPermaLink="false">https://agileops.co.uk/?p=16788</guid>

					<description><![CDATA[VMware has recently announced the General Availability (GA) of vSphere 8, as always we have a lot of new features and a whole new look to the web interface. You...]]></description>
										<content:encoded><![CDATA[<div class="vgblk-rw-wrapper limit-wrapper">
<p>VMware has recently announced the General Availability (GA) of vSphere 8, as always we have a lot of new features and a whole new look to the web interface. </p>



<p>You can download the new vSphere 8 now from VMware <a href="https://customerconnect.vmware.com/en/downloads/info/slug/datacenter_cloud_infrastructure/vmware_vsphere/8_0">https://customerconnect.vmware.com/en/downloads/info/slug/datacenter_cloud_infrastructure/vmware_vsphere/8_0</a></p>



<p>As with all the new versions of VMware products VMware raises the bar for the maximum limits and I think in this new release they have outdone themself again. To check out the Maximum values that vSphere 8. I am particularly surprised by the Host&#8217;s maximum Logical CPU limit. </p>



<div class="wp-block-image"><figure class="aligncenter size-large"><img fetchpriority="high" decoding="async" width="557" height="619" data-attachment-id="16790" data-permalink="https://agileops.co.uk/vmware-vsphere-8-ga/image-4-7/" data-orig-file="https://agileops.co.uk/wp-content/uploads/2022/10/image-4.png" data-orig-size="557,619" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="image-4" data-image-description="" data-image-caption="" data-medium-file="https://agileops.co.uk/wp-content/uploads/2022/10/image-4-270x300.png" data-large-file="https://agileops.co.uk/wp-content/uploads/2022/10/image-4.png" tabindex="0" role="button" src="https://agileops.co.uk/wp-content/uploads/2022/10/image-4.png" alt="" class="wp-image-16790" srcset="https://agileops.co.uk/wp-content/uploads/2022/10/image-4.png 557w, https://agileops.co.uk/wp-content/uploads/2022/10/image-4-270x300.png 270w, https://agileops.co.uk/wp-content/uploads/2022/10/image-4-466x518.png 466w, https://agileops.co.uk/wp-content/uploads/2022/10/image-4-350x389.png 350w" sizes="(max-width: 557px) 100vw, 557px" /></figure></div>



<p>You can visit <a href="https://configmax.esp.vmware.com/guest?vmwareproduct=vSphere&amp;release=vSphere%208.0&amp;categories=2-0">https://configmax.esp.vmware.com/guest?vmwareproduct=vSphere&amp;release=vSphere%208.0&amp;categories=2-0</a></p>



<p>Let&#8217;s have a quick look what&#8217;s new.</p>



<p>VMware has introduced a cool new feature Data Processing Unit ( DPU), This is available in the hardware similar to GPU, PCI or any NIC what VMware has done is they are now going to run the hypervisor within the DPU to offload the networking traffic. ( So, we will be having two instances of vSphere on one hardware). The good thing is this is all managed by vSphere and we VMware Adminis, will not behave over the head of upgrading or updating this as it&#8217;s going be managed by the Life Cycle Manager.  </p>



<p></p>



<figure class="wp-block-image"><img decoding="async" src="https://images.core.vmware.com/sites/default/files/about_dpu_1.png" alt=""/></figure>



<p><a href="https://core.vmware.com/resource/whats-new-vsphere-8#sec21112-sub1">https://core.vmware.com/resource/whats-new-vsphere-8#sec21112-sub1</a></p>



<p>Meet the vSphere Distributed Services Engine, this will be working on the DPU Isolation Layer and will be responsible for the Network and Security </p>



<figure class="wp-block-image"><img decoding="async" src="https://images.core.vmware.com/sites/default/files/about_dpu_2.png" alt="ESXi on DPU"/></figure>



<p></p>



<p>We can easily select the option to offload the network traffic by a simple dropdown selection as shown below:</p>



<figure class="wp-block-image"><img decoding="async" src="https://images.core.vmware.com/sites/default/files/about_dpu_3.png" alt="DPU on VDS"/></figure>



<p>Check out this quick session which gives you a good overview of the vSphere 8 </p>



<figure class="wp-block-embed-youtube wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe title="What&#039;s new in vSphere 8" width="1400" height="788" src="https://www.youtube.com/embed/1jlLPYU2g-w?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div></figure>
</div><!-- .vgblk-rw-wrapper -->]]></content:encoded>
					
					<wfw:commentRss>https://agileops.co.uk/vmware-vsphere-8-ga/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">16788</post-id>	</item>
		<item>
		<title>End of year reflection 2020 and Welcome 2021</title>
		<link>https://agileops.co.uk/end-of-year-reflection-2020-and-welcome-2021/</link>
					<comments>https://agileops.co.uk/end-of-year-reflection-2020-and-welcome-2021/#respond</comments>
		
		<dc:creator><![CDATA[Ibrahim Quraishi]]></dc:creator>
		<pubDate>Fri, 01 Jan 2021 03:55:03 +0000</pubDate>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Vmware]]></category>
		<category><![CDATA[VMware vExpert]]></category>
		<guid isPermaLink="false">https://agileops.co.uk/?p=16459</guid>

					<description><![CDATA[Hey All, I hope you all are having a good time and recharging yourself for the new year. I always like to look back and review what I have done...]]></description>
										<content:encoded><![CDATA[<div class="vgblk-rw-wrapper limit-wrapper">
<p>Hey All,</p>



<p>I hope you all are having a good time and recharging yourself for the new year. I always like to look back and review what I have done in the past year to learn and improve from the experience. We sure had the crazy year 2020.</p>



<p>These are some of the activities I had done in my personal time, which involved contributing to the vCommunity.</p>



<p>The first thing that comes to my mind is the launch of my new blog <a rel="noreferrer noopener" href="https://www.agileops.co.uk/" target="_blank">www.agileops.co.uk</a>  and guess what?  I posted 29 blog post. </p>



<p>For those of you who know me, would know that I am passionate about sharing knowledge, hence why I started my YouTube Channel back in 2019 <a rel="noreferrer noopener" href="https://www.youtube.com/c/ibrahimquraishiagileop" target="_blank">https://www.youtube.com/c/ibrahimquraishiagileop</a>s grown the subscribers to<strong> 3700+ </strong>in just over a year. </p>



<p>I found today that I have posted 81 Videos Sessions in 2020, and subscribers growth in 2020 was <strong>2800 subscribers,</strong> this is all thanks to the vCommunity.</p>



<p>so a big thanks to all who have subscribed and encouraged me in creating more content. </p>



<p>I become vExpert for the second time 2020, by the way, the applications for <strong>vExpert 2021</strong> are open if you wish to apply here is the link: <a href="https://vexpert.vmware.com/apply">https://vexpert.vmware.com/apply</a>  </p>



<p>There are a lot of benefits of becoming vExpert, I have mentioned some here to lure you into applying, </p>



<h2 class="wp-block-heading">vExpert Program Benefits</h2>



<ul><li>Invite to our private #Slack channel</li><li>vExpert certificate signed by our CEO Pat Gelsinger.</li><li>Private forums on communities.vmware.com.</li><li>Permission to use the vExpert logo on cards, website, etc for one year</li><li>Access to a private directory for networking, etc.</li><li>Exclusive gifts from various VMware partners.</li><li>Private webinars with VMware partners as well as NFRs.</li><li>Access to private betas (subject to admission by beta teams).</li><li>365-day eval licenses for most products for home lab/cloud providers.</li><li>Private pre-launch briefings via our blogger briefing pre-VMworld (subject to admission by product teams)</li><li>Blogger early access program for vSphere and some other products.</li><li>Featured in a public vExpert online directory.</li><li>Access to vetted VMware &amp; Virtualization content for your social channels.</li><li>Yearly vExpert parties at both VMworld US and VMworld Europe events.</li><li>Identification as a vExpert at both VMworld US and VMworld EU.</li></ul>



<p> If you are thinking about applying for the first time and if you need any help with your application, you can contact me or you can also reach out to any of the vExpert Pro’s for help. <a href="https://vexpert.vmware.com/directory/pro">https://vexpert.vmware.com/directory/pro</a> </p>



<p>Last year I attended quite a few online events like VMUGs, VMworld and vRetret which were very insightful and I am sure most of you have attended some of theses too.</p>



<p>I was invited as a guest speaker by <a href="https://kemptechnologies.com/">Kemp Technology</a>  for a webinar  <strong>Unlocking the Modern Application Experience: Fireside Chat with Industry Experts </strong>If you missed the session you can see it <a href="https://www.linkedin.com/video/live/urn:li:ugcPost:6692088460347482112/">here  </a>it was live on Linkedin or you can watch it on my Channel </p>



<figure class="wp-block-embed-youtube wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe title="Unlocking the Modern Application Experience  Fireside Chat with Industry Experts" width="1400" height="788" src="https://www.youtube.com/embed/8Zcu0T204lY?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div></figure>



<p>Look forward to sharing a lot of new content with you in 2021. Wish you all a happy, safe and prosperous new year. </p>
</div><!-- .vgblk-rw-wrapper -->]]></content:encoded>
					
					<wfw:commentRss>https://agileops.co.uk/end-of-year-reflection-2020-and-welcome-2021/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">16459</post-id>	</item>
		<item>
		<title>Oracle Cloud VMware Solution</title>
		<link>https://agileops.co.uk/oracle-cloud-vmware-solution/</link>
					<comments>https://agileops.co.uk/oracle-cloud-vmware-solution/#respond</comments>
		
		<dc:creator><![CDATA[Ibrahim Quraishi]]></dc:creator>
		<pubDate>Tue, 29 Dec 2020 02:31:04 +0000</pubDate>
				<category><![CDATA[Oracle Cloud VMware Solution]]></category>
		<category><![CDATA[Vmware]]></category>
		<category><![CDATA[VMware vExpert]]></category>
		<guid isPermaLink="false">https://agileops.co.uk/?p=16443</guid>

					<description><![CDATA[Hope you all are enjoying the Xmas and New Year holidays. I have taken some time off to enjoy the holidays with my family, however, I always enjoy listening to...]]></description>
										<content:encoded><![CDATA[<div class="vgblk-rw-wrapper limit-wrapper">
<p>Hope you all are enjoying the Xmas and New Year holidays. I have taken some time off to enjoy the holidays with my family, however, I always enjoy listening to a podcast or watch a good webinar, especially if it is related to VMware. I want to share with you some of my thoughts around a recent webinar that I watched <strong>Using VMware in the Public Cloud – Oracle Community RoundTable</strong>. This one had a good mix of amazing VMware vExperts from different geographical locations around the VMware community, which made it very interesting. The webinar was hosted by John Troyer – <a href="https://twitter.com/jtroyer">@jtroyer</a>, Principal Product Manager – Oracle and He was joined by Thom Greene, Principal Cloud Solutions Architect – Oracle. The panel was moderated by<a href="https://twitter.com/PatrickRedknap"> Patrick Redknap</a> .</p>



<p> Community Guests included: </p>



<p> Abdullah Abdullah &#8211; <a href="https://twitter.com/do0dzZZ">@do0dzZZ</a> </p>



<p>Barry Coombs &#8211; <a href="https://twitter.com/VirtualisedReal">@VirtualisedReal</a> </p>



<p>Erik Bussink &#8211; <a href="https://twitter.com/ErikBussink">@ErikBussink </a></p>



<p>Jens-Henrik Soeldner &#8211; <a href="https://twitter.com/JensSoeldner">@JensSoeldner </a></p>



<p>Kim Bottu &#8211;<a href="https://twitter.com/Kim_Bottu"> @Kim_Bottu </a></p>



<p>Romain Decker &#8211; <a href="https://twitter.com/woueb">@woueb</a> </p>



<p>Needless to say, this was an open discussion for VMware on Public cloud, the session is available for you to view here:</p>



<p><strong>Watch the Webinar: <a href="https://go.oracle.com/LP=103896?elqCampaignId=261811">Using VMware in the Public Cloud</a></strong></p>



<p>Some of the topics discussed was around the following, procurement, security, networks and cloud-native. </p>



<p>Procurement is an interesting subject where normally for any company to procure hardware we see a 90 to 120 day, some of the use cases for moving on-prem datacenter to VMware public cloud, is due to the long waiting for procurement. Drive for some other companies might be due to the hardware refresh, another interesting point mentioned by John was datacenter lease renewal which makes customers move to cloud instead of investing a lot of CapEX directly investing it in OPEX. </p>



<p>Another use case are legacy applications which cant become cloud-native it makes sense to move them directly to the cloud and connect it to an existing on-prem datacenter. </p>



<p> Abdullah mentioned one interesting point, the company do not need to re-invest in training their staff as the skill set of the VMware Administrator can be leveraged as VMware core concepts remain the same and as they extend their operations they can start picking up new skills from cloud providers.  The core component being SDDC using VCF4 components vSphere, vCenter, HCX, NSX-T, vSAN.</p>



<p>Cloud is not new today, and security is no longer an issue, however, it’s important to know who has to key to our infrastructure. We are seeing government organizations moving their workload to the cloud too.</p>



<p>With already existing AI platforms and machine learning systems on the cloud, customers can leverage instead of creating it from the scratch on their in infrastructure, saving time and effort.</p>



<p>Oracle Cloud has been focussing on 3 main themes that were most important to customers </p>



<ol><li><strong>Control
and Security </strong></li><li><strong>Global
availability </strong></li><li><strong>Enterprise
technical support</strong></li></ol>



<p> Oracle Cloud VMware Solution is available globally in all&nbsp;<a href="https://www.oracle.com/cloud/architecture-and-regions.html">19 commercial cloud regions</a> You can read more about this<strong> <a href="https://blogs.oracle.com/cloud-infrastructure/announcing-the-global-availability-of-oracle-cloud-vmware-solution">here</a> </strong><br> <strong><br> </strong>You may ask what differentiates the Solution from Other Offerings? Here&#8217;s a comparison between Oracle Cloud VMware Solution and other cloud VMware offerings in the market. *</p>



<figure class="wp-block-table"><table class=""><thead><tr><th>&nbsp;</th><th>Oracle</th><th>AWS</th><th>Azure</th><th>GCP</th></tr></thead><tbody><tr><td>Features</td><td>NSX-T, vSphere, vSAN, vCenter, HCX</td><td>NSX-T, vSphere, vSAN, vCenter, HCX</td><td>NSX-T, vSphere, vSAN, vCenter, HCX</td><td>NSX-T, vSphere, vSAN, vCenter, HCX</td></tr><tr><td>Security</td><td>Customer owns root credentials. Oracle doesn&#8217;t have access to root credentials or metadata.</td><td><a href="https://www.vmware.com/content/dam/digitalmarketing/vmware/en/pdf/partners/vmware-cloudtm-on-aws-technical-overview.pdf?source=:ow:lp:cpo:::rc_wwmk200731p00266:lpd400113295,:ow:lp:cpo::" rel="noreferrer noopener" target="_blank">AWS retains root credentials and metadata perpetually.</a></td><td><a href="https://docs.microsoft.com/en-us/azure/azure-vmware/faq?source=:ow:lp:cpo:::rc_wwmk200731p00266:lpd400113295,:ow:lp:cpo::" rel="noreferrer noopener" target="_blank">Azure retains root credentials and metadata perpetually.</a></td><td><a href="https://cloud.google.com/vmware-engine/docs/concepts-permission-model?source=:ow:lp:cpo:::rc_wwmk200731p00266:lpd400113295,:ow:lp:cpo::" rel="noreferrer noopener" target="_blank">GCP retains root credentials and metadata perpetually.</a></td></tr><tr><td>Billing</td><td>Consolidated</td><td><a href="https://www.vmware.com/content/dam/digitalmarketing/vmware/en/pdf/support/vmw-cloud-aws-service-description.pdf?source=:ow:lp:cpo:::rc_wwmk200731p00266:lpd400113295,:ow:lp:cpo::" rel="noreferrer noopener" target="_blank">Separate bills from AWS and VMware</a></td><td>Unspecified</td><td><a href="https://cloud.google.com/blog/topics/hybrid-cloud/google-cloud-vmware-engine-is-generally-available?source=:ow:lp:cpo:::rc_wwmk200731p00266:lpd400113295,:ow:lp:cpo::" rel="noreferrer noopener" target="_blank">Consolidated</a></td></tr><tr><td>Support</td><td>Oracle</td><td><a href="https://cloud.vmware.com/vmc-aws/faq?source=:ow:lp:cpo:::rc_wwmk200731p00266:lpd400113295,:ow:lp:cpo::" rel="noreferrer noopener" target="_blank">VMware and AWS</a></td><td>Third-party support</td><td>Third-party support</td></tr><tr><td>Updates, patches, and upgrades</td><td>Customer controls when and whether to upgrade.</td><td><a href="https://www.vmware.com/content/dam/digitalmarketing/vmware/en/pdf/support/vmw-cloud-aws-service-description.pdf?source=:ow:lp:cpo:::rc_wwmk200731p00266:lpd400113295,:ow:lp:cpo::" rel="noreferrer noopener" target="_blank">AWS controls and decides.</a></td><td><a href="https://docs.microsoft.com/en-us/azure/azure-vmware/faq?source=:ow:lp:cpo:::rc_wwmk200731p00266:lpd400113295,:ow:lp:cpo::" rel="noreferrer noopener" target="_blank">Azure controls and decides.</a></td><td><a href="https://cloud.google.com/vmware-engine/docs/concepts-vmware-components?source=:ow:lp:cpo:::rc_wwmk200731p00266:lpd400113295,:ow:lp:cpo::" rel="noreferrer noopener" target="_blank">GCP controls and decides.</a></td></tr><tr><td>Availability</td><td>19 Oracle Cloud regions, Dedicated Region Cloud@Customer</td><td><a href="https://aws.amazon.com/vmware/faqs/?source=:ow:lp:cpo:::rc_wwmk200731p00266:lpd400113295,:ow:lp:cpo::" rel="noreferrer noopener" target="_blank">Limited to 17 AWS regions</a></td><td>In Preview in 3 Azure regions</td><td>Limited to 2 GCP regions</td></tr><tr><td>Maximum hosts per SDDC</td><td>64</td><td><a href="https://configmax.vmware.com/guest?vmwareproduct=VMware%20Cloud%20on%20AWS&amp;release=VMware%20Cloud%20on%20AWS&amp;categories=68-0,52-0,3-0,53-0,54-0,55-0,56-0,57-0,58-0,75-0,76-0&amp;source=:ow:lp:cpo:::rc_wwmk200731p00266:lpd400113295,:ow:lp:cpo::" rel="noreferrer noopener" target="_blank">16</a></td><td><a href="https://docs.microsoft.com/en-us/azure/azure-vmware/faq?source=:ow:lp:cpo:::rc_wwmk200731p00266:lpd400113295,:ow:lp:cpo::" rel="noreferrer noopener" target="_blank">16</a></td><td>64</td></tr><tr><td>SDDC vCenter access</td><td>Full Administrator access</td><td><a href="https://docs.vmware.com/en/VMware-Cloud-on-AWS/services/com.vmware.vmc-aws-operations/GUID-7458E592-FC6E-43A8-B0BE-505B1435D12D.html?source=:ow:lp:cpo:::rc_wwmk200731p00266:lpd400113295,:ow:lp:cpo::" rel="noreferrer noopener" target="_blank">Restricted access</a></td><td><a href="https://docs.microsoft.com/en-us/azure/azure-vmware/faq?source=:ow:lp:cpo:::rc_wwmk200731p00266:lpd400113295,:ow:lp:cpo::" rel="noreferrer noopener" target="_blank">Restricted access</a></td><td><a href="https://cloud.google.com/vmware-engine/docs/concepts-permission-model?source=:ow:lp:cpo:::rc_wwmk200731p00266:lpd400113295,:ow:lp:cpo::" rel="noreferrer noopener" target="_blank">Restricted access</a></td></tr></tbody></table></figure>



<p>Find out more about Oracle Cloud VMware Solution:</p>



<ul><li><a href="https://www.oracle.com/cloud/compute/vmware/">Oracle Cloud VMware Solution main web page </a></li><li> <a href="https://blogs.oracle.com/cloud-infrastructure/announcing-the-global-availability-of-oracle-cloud-vmware-solution?source=:ow:lp:cpo:::RC_WWMK200731P00266:LPD400113295&amp;intcmp=:ow:lp:cpo:::RC_WWMK200731P00266:LPD400113295&amp;elqTrackId=aa096043501e4f8eab69a0a3984b3463&amp;elqaid=103896&amp;elqat=2&amp;source=:ow:lp:cpo::">Announcing the Global Availability of Oracle Cloud VMware Solution</a></li><li><a href="https://blogs.oracle.com/cloud-infrastructure/comparing-vmware-solutions-in-the-cloud-oracle-is-the-most-consistent-experience?source=:ow:lp:cpo:::RC_WWMK200731P00266:LPD400113295&amp;intcmp=:ow:lp:cpo:::RC_WWMK200731P00266:LPD400113295&amp;elqTrackId=1080b88832724f828969a8c22e64c144&amp;elqaid=103896&amp;elqat=2&amp;source=:ow:lp:cpo::">Comparisons of VMware-based solutions in public clouds, Keith Townsend, CTO Advisor</a></li><li><a href="https://www.oracle.com/cloud/compute/vmware/solutions/vmware-cloud/?source=:ow:lp:cpo:::RC_WWMK200731P00266:LPD400113295&amp;intcmp=:ow:lp:cpo:::RC_WWMK200731P00266:LPD400113295"> Overview webinar (reg required) </a></li></ul>



<p>Until next time, wish you all a happy, safe and prosperous new year 2021</p>



<p>References:</p>



<p>* <a href="https://blogs.oracle.com/cloud-infrastructure/announcing-the-global-availability-of-oracle-cloud-vmware-solution">https://blogs.oracle.com/cloud-infrastructure/announcing-the-global-availability-of-oracle-cloud-vmware-solution</a></p>
</div><!-- .vgblk-rw-wrapper -->]]></content:encoded>
					
					<wfw:commentRss>https://agileops.co.uk/oracle-cloud-vmware-solution/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">16443</post-id>	</item>
		<item>
		<title>VMware Update Manager</title>
		<link>https://agileops.co.uk/vmware-update-manager/</link>
					<comments>https://agileops.co.uk/vmware-update-manager/#respond</comments>
		
		<dc:creator><![CDATA[Ibrahim Quraishi]]></dc:creator>
		<pubDate>Sun, 23 Feb 2020 23:20:00 +0000</pubDate>
				<category><![CDATA[Vmware]]></category>
		<category><![CDATA[VMware Update Manager]]></category>
		<category><![CDATA[ESX Host patching]]></category>
		<category><![CDATA[Patching]]></category>
		<category><![CDATA[Upgrading ESX host]]></category>
		<category><![CDATA[Upgrading vCenter Server]]></category>
		<category><![CDATA[VUM]]></category>
		<guid isPermaLink="false">https://agileops.co.uk/?p=15456</guid>

					<description><![CDATA[In this session, we will focus on patching an Esx host with a live demo showing how I patch 2 ESXi host. Agenda Step process for updating the Esxi host....]]></description>
										<content:encoded><![CDATA[<div class="vgblk-rw-wrapper limit-wrapper">
<p>In this session, we will focus on patching an Esx host with a live demo showing how I patch 2 ESXi host. <br />
Agenda<br />
Step process for updating the Esxi host.<br />
Configuration<br />
Download the updates<br />
Download the ISO to upgrade old host<br />
Create a baseline or baseline group<br />
Attach a baseline or baseline group<br />
Scan a baseline<br />
Review the Scan<br />
Stage the patches <br />
Remediate the patches.</p>



<p>The VMware Update Manager is built into the vCenter Server Appliance (VCSA) since 6.5<br />
This is automatically enabled on the vCenter once it&#8217;s installed.<br />
VUM allows you to Install ESX from version 6 to 6.5 or 6.5 to 6.7 <br />
VUM allows you to patch the ESXi host for a bug fix.</p>



<p>Note: it&#8217;s important to understand the patches so read the release notes before deploying it.</p>



<figure class="wp-block-embed-youtube wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe loading="lazy" title="VMware Tutorial for Beginners | Session 31 VMware Update Manager VUM Demo" width="1400" height="788" src="https://www.youtube.com/embed/UIxwzEODl_U?feature=oembed" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div><figcaption>Get started with VMware Update Manager</figcaption></figure>



<ol><li>Configuration<br />
Configure the Update Manager Download sources<br />
Sources from the internet<br />
From a shared repository <br />
Manual upload ( import patches) and extensions pac files and zip files.</li><li>Download the updates<br />
Download the host patches extensions<br />
Default settings are VUM contacts, Vmware or third-party sources to gather the latest information (metadata) about available updates, patches and extensions</li><li>Import ISO to upgrade old Host<br />
You can upgrade the hosts in your environment to ESXi 6.7 by using host upgrade baselines. <br />
To create a host upgrade baseline, you must first upload at least one ESXi 6.7 .iso image to the Update Manager repository</li><li>Create baselines<br />
Baselines contain a collection of one or more patches, extensions, service packs, bug fixes, or upgrades, and can be classified as a patch, extension, or upgrade baselines. <br />
There are two types of baselines <br />
Baseline<br />
and <br />
Baseline Group</li><li>Attach a baseline to object <br />
To use baselines and baseline groups, you must attach them to selected inventory objects such as container objects, virtual machines, or hosts</li><li>Scan the vSphere Object<br />
Scanning is the process in which attributes of a set of hosts or virtual machines are evaluated against all patches, extensions, and upgrades from an attached baseline or baseline group, depending on the type of scan you select</li><li>Review the Scan<br />
Update Manager scans vSphere objects to determine how they comply with baselines and baseline groups that you attach. </li><li>Staging the patches and extension<br />
You can stage patches and extensions before remediation to ensure that the patches and extensions are downloaded to the host. <br />
Note: Staging patches and extensions is an optional step that can reduce the time during which hosts are in maintenance mode.</li><li>Remediate the patches<br />
Remediation is the process in which Update Manager applies for patches, extensions, and upgrades to ESXi hosts and virtual machines after a scan is complete.</li></ol>



<figure class="wp-block-embed-youtube wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe loading="lazy" title="VMware Tutorial for Beginners | Session 33 updating or patching a ESXi host" width="1400" height="788" src="https://www.youtube.com/embed/ilhocBFKi2Y?feature=oembed" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div><figcaption>Upgrading ESX host from 6.5 to 6.7 </figcaption></figure>



<p>Reach me out on twitter @ibrahimquraishi <br />
My blog: www.agileops.co.uk<br />
Questions of the day?</p>



<p>What is the acronym of VMware Update Manager?</p>



<p>Leave a comment with your response.</p>



<p>Don’t forget to #subscribe Enjoy watching and keep #sharing!</p>



<p>#VMware #vSphere #vExpert #vCommunity </p>



<p>Ref:https://docs.vmware.com/en/VMware-vSp…</p>
</div><!-- .vgblk-rw-wrapper -->]]></content:encoded>
					
					<wfw:commentRss>https://agileops.co.uk/vmware-update-manager/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">15456</post-id>	</item>
		<item>
		<title>VMUG User/Con</title>
		<link>https://agileops.co.uk/vmug-user-con/</link>
					<comments>https://agileops.co.uk/vmug-user-con/#respond</comments>
		
		<dc:creator><![CDATA[Ibrahim Quraishi]]></dc:creator>
		<pubDate>Thu, 05 Dec 2019 10:01:16 +0000</pubDate>
				<category><![CDATA[UK VMUG]]></category>
		<category><![CDATA[VMUG UserCon]]></category>
		<category><![CDATA[Vmware]]></category>
		<category><![CDATA[VMware vExpert]]></category>
		<category><![CDATA[duncan epping]]></category>
		<category><![CDATA[Frank Denneman]]></category>
		<category><![CDATA[NAKIVO Backup & Replication]]></category>
		<category><![CDATA[UKVMUG]]></category>
		<category><![CDATA[UserCon]]></category>
		<category><![CDATA[VMUG]]></category>
		<guid isPermaLink="false">https://agileops.co.uk/?p=15325</guid>

					<description><![CDATA[Hi All, Last month I attended two important events VMworld Europe and on 27 Nov I have attended VMUG UserCon this was in Leasture at the National SpaceCenter. This was...]]></description>
										<content:encoded><![CDATA[<div class="vgblk-rw-wrapper limit-wrapper">Hi All,</p>
<p>Last month I attended two important events VMworld Europe and on 27 Nov I have attended VMUG UserCon this was in Leasture at the National SpaceCenter.</p>
<p>This was my first time attending VMUG event in the UK, and this was the best experience as I had an opportunity to attain some great session and meet quite a lot of vExperts under one roof.</p>
<p>Apart from the sessions i really enjoyed the round table meeting i attended few of them.</p>
<p><img loading="lazy" decoding="async" data-attachment-id="15330" data-permalink="https://agileops.co.uk/vmug-user-con/img_9269-jpg/" data-orig-file="https://agileops.co.uk/wp-content/uploads/2019/12/img_9269.jpg" data-orig-size="2316,3088" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.2&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;iPhone XR&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1574847199&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;2.87&quot;,&quot;iso&quot;:&quot;64&quot;,&quot;shutter_speed&quot;:&quot;0.0089285714285714&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="img_9269.jpg" data-image-description="&lt;p&gt;VMUG UserCon National Space Center&lt;/p&gt;
" data-image-caption="&lt;p&gt;VMUG UserCon National Space Center&lt;/p&gt;
" data-medium-file="https://agileops.co.uk/wp-content/uploads/2019/12/img_9269-225x300.jpg" data-large-file="https://agileops.co.uk/wp-content/uploads/2019/12/img_9269-768x1024.jpg" tabindex="0" role="button" class="size-full wp-image-15330" src="https://agileops.co.uk/wp-content/uploads/2019/12/img_9269.jpg" width="2316" height="3088" srcset="https://agileops.co.uk/wp-content/uploads/2019/12/img_9269.jpg 2316w, https://agileops.co.uk/wp-content/uploads/2019/12/img_9269-225x300.jpg 225w, https://agileops.co.uk/wp-content/uploads/2019/12/img_9269-768x1024.jpg 768w, https://agileops.co.uk/wp-content/uploads/2019/12/img_9269-1400x1867.jpg 1400w, https://agileops.co.uk/wp-content/uploads/2019/12/img_9269-700x933.jpg 700w, https://agileops.co.uk/wp-content/uploads/2019/12/img_9269-466x621.jpg 466w, https://agileops.co.uk/wp-content/uploads/2019/12/img_9269-933x1244.jpg 933w, https://agileops.co.uk/wp-content/uploads/2019/12/img_9269-350x467.jpg 350w" sizes="(max-width: 2316px) 100vw, 2316px" /></p>
<figure><figcaption>National Space Center &#8211; VMUG UserCon</figcaption></figure>
<p><img loading="lazy" decoding="async" data-attachment-id="15333" data-permalink="https://agileops.co.uk/vmug-user-con/img_9279-jpg/" data-orig-file="https://agileops.co.uk/wp-content/uploads/2019/12/img_9279.jpg" data-orig-size="4032,3024" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;1.8&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;iPhone XR&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1574855732&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;4.25&quot;,&quot;iso&quot;:&quot;400&quot;,&quot;shutter_speed&quot;:&quot;0.04&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="img_9279.jpg" data-image-description="" data-image-caption="" data-medium-file="https://agileops.co.uk/wp-content/uploads/2019/12/img_9279-300x225.jpg" data-large-file="https://agileops.co.uk/wp-content/uploads/2019/12/img_9279-1024x768.jpg" tabindex="0" role="button" class="size-full wp-image-15333" src="https://agileops.co.uk/wp-content/uploads/2019/12/img_9279.jpg" width="4032" height="3024" srcset="https://agileops.co.uk/wp-content/uploads/2019/12/img_9279.jpg 4032w, https://agileops.co.uk/wp-content/uploads/2019/12/img_9279-300x225.jpg 300w, https://agileops.co.uk/wp-content/uploads/2019/12/img_9279-768x576.jpg 768w, https://agileops.co.uk/wp-content/uploads/2019/12/img_9279-1024x768.jpg 1024w, https://agileops.co.uk/wp-content/uploads/2019/12/img_9279-1400x1050.jpg 1400w, https://agileops.co.uk/wp-content/uploads/2019/12/img_9279-700x525.jpg 700w, https://agileops.co.uk/wp-content/uploads/2019/12/img_9279-466x350.jpg 466w, https://agileops.co.uk/wp-content/uploads/2019/12/img_9279-933x700.jpg 933w, https://agileops.co.uk/wp-content/uploads/2019/12/img_9279-350x263.jpg 350w" sizes="(max-width: 4032px) 100vw, 4032px" /><img loading="lazy" decoding="async" data-attachment-id="15331" data-permalink="https://agileops.co.uk/vmug-user-con/img_9293-jpg/" data-orig-file="https://agileops.co.uk/wp-content/uploads/2019/12/img_9293.jpg" data-orig-size="4032,3024" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;1.8&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;iPhone XR&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1574860225&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;4.25&quot;,&quot;iso&quot;:&quot;400&quot;,&quot;shutter_speed&quot;:&quot;0.04&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="img_9293.jpg" data-image-description="" data-image-caption="" data-medium-file="https://agileops.co.uk/wp-content/uploads/2019/12/img_9293-300x225.jpg" data-large-file="https://agileops.co.uk/wp-content/uploads/2019/12/img_9293-1024x768.jpg" tabindex="0" role="button" class="size-full wp-image-15331" src="https://agileops.co.uk/wp-content/uploads/2019/12/img_9293.jpg" width="4032" height="3024" srcset="https://agileops.co.uk/wp-content/uploads/2019/12/img_9293.jpg 4032w, https://agileops.co.uk/wp-content/uploads/2019/12/img_9293-300x225.jpg 300w, https://agileops.co.uk/wp-content/uploads/2019/12/img_9293-768x576.jpg 768w, https://agileops.co.uk/wp-content/uploads/2019/12/img_9293-1024x768.jpg 1024w, https://agileops.co.uk/wp-content/uploads/2019/12/img_9293-1400x1050.jpg 1400w, https://agileops.co.uk/wp-content/uploads/2019/12/img_9293-700x525.jpg 700w, https://agileops.co.uk/wp-content/uploads/2019/12/img_9293-466x350.jpg 466w, https://agileops.co.uk/wp-content/uploads/2019/12/img_9293-933x700.jpg 933w, https://agileops.co.uk/wp-content/uploads/2019/12/img_9293-350x263.jpg 350w" sizes="(max-width: 4032px) 100vw, 4032px" /><img loading="lazy" decoding="async" data-attachment-id="15334" data-permalink="https://agileops.co.uk/vmug-user-con/img_9301-jpg/" data-orig-file="https://agileops.co.uk/wp-content/uploads/2019/12/img_9301.jpg" data-orig-size="3088,2316" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.2&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;iPhone XR&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1574864688&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;2.87&quot;,&quot;iso&quot;:&quot;320&quot;,&quot;shutter_speed&quot;:&quot;0.03030303030303&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="img_9301.jpg" data-image-description="" data-image-caption="" data-medium-file="https://agileops.co.uk/wp-content/uploads/2019/12/img_9301-300x225.jpg" data-large-file="https://agileops.co.uk/wp-content/uploads/2019/12/img_9301-1024x768.jpg" tabindex="0" role="button" class="size-full wp-image-15334" src="https://agileops.co.uk/wp-content/uploads/2019/12/img_9301.jpg" width="3088" height="2316" srcset="https://agileops.co.uk/wp-content/uploads/2019/12/img_9301.jpg 3088w, https://agileops.co.uk/wp-content/uploads/2019/12/img_9301-300x225.jpg 300w, https://agileops.co.uk/wp-content/uploads/2019/12/img_9301-768x576.jpg 768w, https://agileops.co.uk/wp-content/uploads/2019/12/img_9301-1024x768.jpg 1024w, https://agileops.co.uk/wp-content/uploads/2019/12/img_9301-1400x1050.jpg 1400w, https://agileops.co.uk/wp-content/uploads/2019/12/img_9301-700x525.jpg 700w, https://agileops.co.uk/wp-content/uploads/2019/12/img_9301-466x350.jpg 466w, https://agileops.co.uk/wp-content/uploads/2019/12/img_9301-933x700.jpg 933w, https://agileops.co.uk/wp-content/uploads/2019/12/img_9301-350x263.jpg 350w" sizes="(max-width: 3088px) 100vw, 3088px" /><img loading="lazy" decoding="async" data-attachment-id="15329" data-permalink="https://agileops.co.uk/vmug-user-con/img_9303-jpg/" data-orig-file="https://agileops.co.uk/wp-content/uploads/2019/12/img_9303.jpg" data-orig-size="3088,2316" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.2&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;iPhone XR&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1574869954&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;2.87&quot;,&quot;iso&quot;:&quot;320&quot;,&quot;shutter_speed&quot;:&quot;0.03030303030303&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="img_9303.jpg" data-image-description="" data-image-caption="" data-medium-file="https://agileops.co.uk/wp-content/uploads/2019/12/img_9303-300x225.jpg" data-large-file="https://agileops.co.uk/wp-content/uploads/2019/12/img_9303-1024x768.jpg" tabindex="0" role="button" class="size-full wp-image-15329" src="https://agileops.co.uk/wp-content/uploads/2019/12/img_9303.jpg" width="3088" height="2316" srcset="https://agileops.co.uk/wp-content/uploads/2019/12/img_9303.jpg 3088w, https://agileops.co.uk/wp-content/uploads/2019/12/img_9303-300x225.jpg 300w, https://agileops.co.uk/wp-content/uploads/2019/12/img_9303-768x576.jpg 768w, https://agileops.co.uk/wp-content/uploads/2019/12/img_9303-1024x768.jpg 1024w, https://agileops.co.uk/wp-content/uploads/2019/12/img_9303-1400x1050.jpg 1400w, https://agileops.co.uk/wp-content/uploads/2019/12/img_9303-700x525.jpg 700w, https://agileops.co.uk/wp-content/uploads/2019/12/img_9303-466x350.jpg 466w, https://agileops.co.uk/wp-content/uploads/2019/12/img_9303-933x700.jpg 933w, https://agileops.co.uk/wp-content/uploads/2019/12/img_9303-350x263.jpg 350w" sizes="(max-width: 3088px) 100vw, 3088px" /><img loading="lazy" decoding="async" data-attachment-id="15332" data-permalink="https://agileops.co.uk/vmug-user-con/img_9304-jpg/" data-orig-file="https://agileops.co.uk/wp-content/uploads/2019/12/img_9304.jpg" data-orig-size="4032,3024" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;1.8&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;iPhone XR&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1574870925&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;4.25&quot;,&quot;iso&quot;:&quot;400&quot;,&quot;shutter_speed&quot;:&quot;0.04&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="img_9304.jpg" data-image-description="" data-image-caption="" data-medium-file="https://agileops.co.uk/wp-content/uploads/2019/12/img_9304-300x225.jpg" data-large-file="https://agileops.co.uk/wp-content/uploads/2019/12/img_9304-1024x768.jpg" tabindex="0" role="button" class="size-full wp-image-15332" src="https://agileops.co.uk/wp-content/uploads/2019/12/img_9304.jpg" width="4032" height="3024" srcset="https://agileops.co.uk/wp-content/uploads/2019/12/img_9304.jpg 4032w, https://agileops.co.uk/wp-content/uploads/2019/12/img_9304-300x225.jpg 300w, https://agileops.co.uk/wp-content/uploads/2019/12/img_9304-768x576.jpg 768w, https://agileops.co.uk/wp-content/uploads/2019/12/img_9304-1024x768.jpg 1024w, https://agileops.co.uk/wp-content/uploads/2019/12/img_9304-1400x1050.jpg 1400w, https://agileops.co.uk/wp-content/uploads/2019/12/img_9304-700x525.jpg 700w, https://agileops.co.uk/wp-content/uploads/2019/12/img_9304-466x350.jpg 466w, https://agileops.co.uk/wp-content/uploads/2019/12/img_9304-933x700.jpg 933w, https://agileops.co.uk/wp-content/uploads/2019/12/img_9304-350x263.jpg 350w" sizes="(max-width: 4032px) 100vw, 4032px" /><img loading="lazy" decoding="async" data-attachment-id="15335" data-permalink="https://agileops.co.uk/vmug-user-con/img_9317-jpg/" data-orig-file="https://agileops.co.uk/wp-content/uploads/2019/12/img_9317.jpg" data-orig-size="3088,2316" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.2&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;iPhone XR&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1574873262&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;2.87&quot;,&quot;iso&quot;:&quot;640&quot;,&quot;shutter_speed&quot;:&quot;0.058823529411765&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="img_9317.jpg" data-image-description="" data-image-caption="" data-medium-file="https://agileops.co.uk/wp-content/uploads/2019/12/img_9317-300x225.jpg" data-large-file="https://agileops.co.uk/wp-content/uploads/2019/12/img_9317-1024x768.jpg" tabindex="0" role="button" class="size-full wp-image-15335" src="https://agileops.co.uk/wp-content/uploads/2019/12/img_9317.jpg" width="3088" height="2316" srcset="https://agileops.co.uk/wp-content/uploads/2019/12/img_9317.jpg 3088w, https://agileops.co.uk/wp-content/uploads/2019/12/img_9317-300x225.jpg 300w, https://agileops.co.uk/wp-content/uploads/2019/12/img_9317-768x576.jpg 768w, https://agileops.co.uk/wp-content/uploads/2019/12/img_9317-1024x768.jpg 1024w, https://agileops.co.uk/wp-content/uploads/2019/12/img_9317-1400x1050.jpg 1400w, https://agileops.co.uk/wp-content/uploads/2019/12/img_9317-700x525.jpg 700w, https://agileops.co.uk/wp-content/uploads/2019/12/img_9317-466x350.jpg 466w, https://agileops.co.uk/wp-content/uploads/2019/12/img_9317-933x700.jpg 933w, https://agileops.co.uk/wp-content/uploads/2019/12/img_9317-350x263.jpg 350w" sizes="(max-width: 3088px) 100vw, 3088px" /><img loading="lazy" decoding="async" data-attachment-id="15336" data-permalink="https://agileops.co.uk/vmug-user-con/img_9298-jpg/" data-orig-file="https://agileops.co.uk/wp-content/uploads/2019/12/img_9298.jpg" data-orig-size="3088,2316" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.2&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;iPhone XR&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1574863318&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;2.87&quot;,&quot;iso&quot;:&quot;500&quot;,&quot;shutter_speed&quot;:&quot;0.058823529411765&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="img_9298.jpg" data-image-description="" data-image-caption="" data-medium-file="https://agileops.co.uk/wp-content/uploads/2019/12/img_9298-300x225.jpg" data-large-file="https://agileops.co.uk/wp-content/uploads/2019/12/img_9298-1024x768.jpg" tabindex="0" role="button" class="size-full wp-image-15336" src="https://agileops.co.uk/wp-content/uploads/2019/12/img_9298.jpg" width="3088" height="2316" srcset="https://agileops.co.uk/wp-content/uploads/2019/12/img_9298.jpg 3088w, https://agileops.co.uk/wp-content/uploads/2019/12/img_9298-300x225.jpg 300w, https://agileops.co.uk/wp-content/uploads/2019/12/img_9298-768x576.jpg 768w, https://agileops.co.uk/wp-content/uploads/2019/12/img_9298-1024x768.jpg 1024w, https://agileops.co.uk/wp-content/uploads/2019/12/img_9298-1400x1050.jpg 1400w, https://agileops.co.uk/wp-content/uploads/2019/12/img_9298-700x525.jpg 700w, https://agileops.co.uk/wp-content/uploads/2019/12/img_9298-466x350.jpg 466w, https://agileops.co.uk/wp-content/uploads/2019/12/img_9298-933x700.jpg 933w, https://agileops.co.uk/wp-content/uploads/2019/12/img_9298-350x263.jpg 350w" sizes="(max-width: 3088px) 100vw, 3088px" /></div>
<p><!-- .vgblk-rw-wrapper --></p>
]]></content:encoded>
					
					<wfw:commentRss>https://agileops.co.uk/vmug-user-con/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">15325</post-id>	</item>
		<item>
		<title>VMware Removing 2-year VCP Recertification Requirement!</title>
		<link>https://agileops.co.uk/vmware-removing-2-year-vcp-recertification-requirement/</link>
					<comments>https://agileops.co.uk/vmware-removing-2-year-vcp-recertification-requirement/#respond</comments>
		
		<dc:creator><![CDATA[Ibrahim Quraishi]]></dc:creator>
		<pubDate>Wed, 06 Feb 2019 19:45:13 +0000</pubDate>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Vmware]]></category>
		<category><![CDATA[VMware Removing 2-year VCP Recertification Requirement]]></category>
		<category><![CDATA[VMware Removing 2 year requirement]]></category>
		<guid isPermaLink="false"></guid>

					<description><![CDATA[
				<![CDATA[]]>		]]></description>
										<content:encoded><![CDATA[<div class="vgblk-rw-wrapper limit-wrapper">
				<![CDATA[<script async="" src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<script><br />
  (adsbygoogle = window.adsbygoogle || []).push({<br />
    google_ad_client: "ca-pub-9905384192895993",<br />
    enable_page_level_ads: true<br />
  });<br />
</script>

Hello everyone I have some exiting news for you.&nbsp; It has been nearly 2 years since I got my VCP 6.0 Certification, hence I was in a process for re-certification for my VCP 6.7. I have also been considering for the VPC in NSX track for a change.

However to my surprise, I got an email yesterday 5th Feb 2019 from VMware confirming that effective immediately VMware is removing the requirement for every two year VCP re-certification!

As much I like to keep my certification valid its a good move that VMware has taken to give us the control when we chose to re-certify. Of course I will love to get another VCP in NSX , I wont be stressing myself to getting it done over a tight deadline.

Check out the official blog <a href="httpss://blogs.vmware.com/education/2019/02/04/vmware-certification-recertification-is-changing-and-what-it-means-to-you/" target="_blank" rel="noopener noreferrer">VMware Official blog</a>
VMware Education Services blog
VMware Certification: Recertification Is Changing and What It Means to You
httpss://blogs.vmware.com/education/2019/02/04/vmware-certification-recertification-is-changing-and-what-it-means-to-you

Check out the new book VMware vSphere 6.7 Clustering Deep Dive&nbsp;Kindle Edition&nbsp;by&nbsp;<span class="author notFaded" data-width="159"><a class="a-link-normal" href="httpss://www.amazon.co.uk/s/ref=dp_byline_sr_ebooks_1?ie=UTF8&amp;text=Frank+Denneman&amp;search-alias=digital-text&amp;field-author=Frank+Denneman&amp;sort=relevancerank">Frank Denneman</a>&nbsp;<span class="contribution"><span class="a-color-secondary">(Author),&nbsp;</span></span></span><span class="author notFaded" data-width="148"><a class="a-link-normal" href="httpss://www.amazon.co.uk/s/ref=dp_byline_sr_ebooks_2?ie=UTF8&amp;text=Duncan+Epping&amp;search-alias=digital-text&amp;field-author=Duncan+Epping&amp;sort=relevancerank">Duncan Epping</a>&nbsp;<span class="contribution"><span class="a-color-secondary">(Author),&nbsp;</span></span></span><span class="author notFaded" data-width="149"><span class="a-declarative" data-action="a-popover" data-a-popover="{&quot;closeButtonLabel&quot;:&quot;Close Author Dialogue Popver&quot;,&quot;name&quot;:&quot;contributor-info-B072XVL1ZV&quot;,&quot;position&quot;:&quot;triggerBottom&quot;,&quot;popoverLabel&quot;:&quot;Author Dialogue Popover&quot;,&quot;allowLinkDefault&quot;:&quot;true&quot;}"><a class="a-link-normal contributorNameID" href="httpss://www.amazon.co.uk/Niels-Hagoort/e/B072XVL1ZV/ref=dp_byline_cont_ebooks_3" data-asin="B072XVL1ZV">Niels Hagoort</a>&nbsp;<i class="a-icon a-icon-popover"></i>&nbsp;</span><span class="contribution"><span class="a-color-secondary">(Author) I got this book signed by them when I was in VMWorld 2018&nbsp;</span></span></span>

<a href="httpss://www.amazon.co.uk/gp/product/B07GBXZ2Q1/ref=as_li_ss_il?pf_rd_m=A3P5ROKL5A1OLE&amp;storeType=ebooks&amp;pageType=STOREFRONT&amp;pf_rd_p=08e56733-e766-4ffb-b3bd-a52c77778795&amp;pf_rd_r=X0EHRZDWW1WXQ3QKRBTK&amp;pd_rd_wg=fMIqo&amp;pf_rd_s=merchandised-search-3&amp;pf_rd_t=40901&amp;ref_=dbs_f_r_shv_cp_08e56733-e766-4ffb-b3bd-a52c77778795_0&amp;pd_rd_w=I5rJH&amp;pf_rd_i=341689031&amp;pd_rd_r=76b9af0c-536c-4b29-9161-b79639dbc664&amp;linkCode=li3&amp;tag=wwwibrahimqur-21&amp;linkId=c65e45649d368a9e3940fbab1e256fd3&amp;language=en_GB" target="_blank" rel="noopener"><img decoding="async" src="//ws-eu.amazon-adsystem.com/widgets/q?_encoding=UTF8&amp;ASIN=B07GBXZ2Q1&amp;Format=_SL250_&amp;ID=AsinImage&amp;MarketPlace=GB&amp;ServiceVersion=20070822&amp;WS=1&amp;tag=wwwibrahimqur-21&amp;language=en_GB" border="0"></a><img loading="lazy" decoding="async" style="border: none !important; margin: 0px !important;" src="httpss://ir-uk.amazon-adsystem.com/e/ir?t=wwwibrahimqur-21&amp;language=en_GB&amp;l=li3&amp;o=2&amp;a=B07GBXZ2Q1" alt="" width="1" height="1" border="0">]]&gt;		</div>
<p><!-- .vgblk-rw-wrapper --></p>
]]></content:encoded>
					
					<wfw:commentRss>https://agileops.co.uk/vmware-removing-2-year-vcp-recertification-requirement/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">994</post-id>	</item>
		<item>
		<title>Troubleshooting The vMotion migration failed because the ESX host were not able to connect over the vMotion network.</title>
		<link>https://agileops.co.uk/troubleshooting-the-vmotion-migration-failed-error/</link>
					<comments>https://agileops.co.uk/troubleshooting-the-vmotion-migration-failed-error/#comments</comments>
		
		<dc:creator><![CDATA[Ibrahim Quraishi]]></dc:creator>
		<pubDate>Mon, 10 Nov 2014 22:02:26 +0000</pubDate>
				<category><![CDATA[cisco ucs sd card]]></category>
		<category><![CDATA[cisco ucs server]]></category>
		<category><![CDATA[CISCO UCS Unified Computing System]]></category>
		<category><![CDATA[Hardware Virtualization]]></category>
		<category><![CDATA[Hosted Virtualization]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[VCenter]]></category>
		<category><![CDATA[vCenter Server]]></category>
		<category><![CDATA[virtualized]]></category>
		<category><![CDATA[vMotion]]></category>
		<category><![CDATA[VMware]]></category>
		<category><![CDATA[Vmware]]></category>
		<category><![CDATA[Cisco Systems Inc]]></category>
		<category><![CDATA[dvport]]></category>
		<category><![CDATA[esxcfg]]></category>
		<category><![CDATA[esxcfg-nics]]></category>
		<category><![CDATA[esxcfg-nics -l]]></category>
		<category><![CDATA[esxcfg-vmknic]]></category>
		<category><![CDATA[esxcfg-vmknic -l]]></category>
		<category><![CDATA[migration]]></category>
		<category><![CDATA[service profile]]></category>
		<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[ucs]]></category>
		<category><![CDATA[vmkping]]></category>
		<category><![CDATA[vmotion]]></category>
		<category><![CDATA[vMotion migration failed Troubleshooting]]></category>
		<guid isPermaLink="false">https://quraishi.wordpress.com/?p=883</guid>

					<description><![CDATA[
				<![CDATA[]]>		]]></description>
										<content:encoded><![CDATA[<div class="vgblk-rw-wrapper limit-wrapper"><p>Hi All,</p>
<p>Today I will take you thought the troubleshooting for vMotion using CLI, If you have not done network troubleshooting on esx host you will find some really good esxi commands on this post. And if you are using a converged infrastructure its important to understand end to end connectivity especially if you have different vlans for each service like vMotion FT, Management traffic and VM-Traffic.</p>
<p>I build a brand new Data Center and after configuring the dv switch I decided to test the vMotion first and this is the error I saw on the first attempt the vm was stuck at 14 % and after a while it gave the below error message.</p>
<p>as shown below:</p>
<p><a href="https://quraishi.files.wordpress.com/2014/10/vmotion-error_task.png"><img loading="lazy" decoding="async" class="size-full wp-image-886" src="https://quraishi.files.wordpress.com/2014/10/vmotion-error_task.png" alt="vmotion error_task" width="604" height="55" /></a></p>
<p> </p>
<p>Migrate virtual machine error message</p>
<p style="text-align: justify;"><a href="https://quraishi.files.wordpress.com/2014/10/vmotion-error.png"><img loading="lazy" decoding="async" class="size-full wp-image-885" src="https://quraishi.files.wordpress.com/2014/10/vmotion-error.png" alt="vmotion error" width="604" height="181" /></a></p>
<p>If you read the above error message you will find the IP&#8217;s of the host which I am migrating from and to.</p>
<p>for example lets consider the below two host this troubleshooting is done on esx-02. vmnic2 is FT vmnic3 is vMotion so I am comparing the mac address of booth the host on the ucs service profile to compare tht the vnic template has the right mac address and if they are connected to the right vlan.<span id="more-883"></span></p>
<p><em>esx-01</em></p>
<p><em>vmnic2 0000:08:00.00 enic Up 20000Mbps Full xx:xx:xx:b3:01:0d 9000 Cisco Systems Inc Cisco VIC Ethernet NIC</em><br /><em> vmnic3 0000:09:00.00 enic Up 20000Mbps Full xx:xx:xx:b3:01:0c 9000 Cisco Systems Inc Cisco VIC Ethernet NIC</em></p>
<p><em> esx-02</em></p>
<p><em><span style="font-size: 13px;">vmnic2 0000:08:00.00 enic Up 20000Mbps Full xx:xx:xx:b3:01:19 9000 Cisco Systems Inc Cisco VIC Ethernet NIC</span></em></p>
<p><em> vmnic3 0000:09:00.00 enic Up 20000Mbps Full xx:xx:xx:b3:01:18 9000 Cisco Systems Inc Cisco VIC Ethernet NIC</em></p>
<ol>
<li>check the mac address on ucs and on the esx host for the vmnic2 ( ft) vmnic3 (vmotion)</li>
<li>check the mtu it should be 9000 although this shuld not affect but I have changed them from 1500 mtu to 9000 mtu.</li>
<li> check the nics with mac address<br /><span style="color: #ff9900;">esxcfg-nics -l</span></li>
<li> check the vmkernal nics<br /><span style="color: #ff9900;">esxcfg-vmknic -l</span></li>
<li> ping from the vnic using<br /># <span style="color: #ff9900;">vmkping -I vmk2 192.168.242.1</span> this is using vmk2 interface which is for vmotion<br />you will notice its failing initially because the uplink on the dv switch was first given to both the ft and vmotion nics<br />I then moved the dvuplink_1 to unused as I and it was my mistake which is why it was not working agian.</li>
<li><span style="color: #ff9900;"> vmkping -I vmk2 192.168.242.1</span> the ping test failed again<br />then I moved the dvuplink_1 in active and moved dvuplink_2 to unused and the result is</li>
</ol>
<p>The time and date of this login have been sent to the system logs.</p>
<p>VMware offers supported, powerful system administration tools. Please<br />see www.vmware.com/go/sysadmintools for details.<!--more--></p>
<p>The ESXi Shell can be disabled by an administrative user. See the<br />vSphere Security documentation for more information.<br />~ # esxcfg-nics<br />esxcfg-nics &lt;options&gt; [nic]<br />-s|&#8211;speed &lt;speed&gt; Set the speed of this NIC to one of 10/100/1000/10000.<br />Requires a NIC parameter.<br />-d|&#8211;duplex &lt;duplex&gt; Set the duplex of this NIC to one of &#8216;full&#8217; or &#8216;half&#8217;.<br />Requires a NIC parameter.<br />-a|&#8211;auto Set speed and duplexity automatically. Requires a NIC parameter.<br />-l|&#8211;list Print the list of NICs and their settings.<br />-r|&#8211;restore Restore the nics configured speed/duplex settings (INTERNAL ONLY)<br />-h|&#8211;help Display this message.</p>
<p><a href="https://quraishi.files.wordpress.com/2014/10/cli.png"><img loading="lazy" decoding="async" class="size-full wp-image-888" src="https://quraishi.files.wordpress.com/2014/10/cli.png" alt="cli" width="604" height="268" /></a></p>
<p style="text-align: justify;"> </p>
<p><strong><span style="color: #ff9900;">~ # esxcfg-nics -l</span></strong><br />Name PCI Driver Link Speed Duplex MAC Address MTU Description<br />vmnic0 0000:06:00.00 enic Up 20000Mbps Full xx:xx:xx:a3:01:14 1500 Cisco Systems Inc Cisco VIC Ethernet NIC<br />vmnic1 0000:07:00.00 enic Up 20000Mbps Full xx:xx:xx:b3:01:1a 1500 Cisco Systems Inc Cisco VIC Ethernet NIC<br />vmnic10 0000:10:00.00 enic Up 20000Mbps Full xx:xx:xx:a3:01:10 9000 Cisco Systems Inc Cisco VIC Ethernet NIC<br />vmnic11 0000:11:00.00 enic Up 20000Mbps Full xx:xx:xx:b3:01:11 9000 Cisco Systems Inc Cisco VIC Ethernet NIC<br /><span style="color: #ff0000;">vmnic12 0000:12:00.00 enic Up 20000Mbps Full xx:xx:xx:a3:01:0f 9000 Cisco Systems Inc Cisco VIC Ethernet NIC</span><br /><span style="color: #ff0000;"> vmnic13 0000:13:00.00 enic Up 20000Mbps Full xx:xx:xx:b3:01:10 9000 Cisco Systems Inc Cisco VIC Ethernet NIC</span><br />vmnic14 0000:14:00.00 enic Up 20000Mbps Full xx:xx:xx:a3:01:0c 9000 Cisco Systems Inc Cisco VIC Ethernet NIC<br />vmnic15 0000:15:00.00 enic Up 20000Mbps Full xx:xx:xx:b3:01:0f 9000 Cisco Systems Inc Cisco VIC Ethernet NIC<br />vmnic2 0000:08:00.00 enic Up 20000Mbps Full xx:xx:xx:b3:01:19 9000 Cisco Systems Inc Cisco VIC Ethernet NIC<br />vmnic3 0000:09:00.00 enic Up 20000Mbps Full xx:xx:xx:b3:01:18 9000 Cisco Systems Inc Cisco VIC Ethernet NIC<br />vmnic4 0000:0a:00.00 enic Up 20000Mbps Full xx:xx:xx:a3:01:13 9000 Cisco Systems Inc Cisco VIC Ethernet NIC<br />vmnic5 0000:0b:00.00 enic Up 20000Mbps Full xx:xx:xx:b3:01:17 9000 Cisco Systems Inc Cisco VIC Ethernet NIC<br />vmnic6 0000:0c:00.00 enic Up 20000Mbps Full xx:xx:xx:a3:01:12 9000 Cisco Systems Inc Cisco VIC Ethernet NIC<br />vmnic7 0000:0d:00.00 enic Up 20000Mbps Full xx:xx:xx:b3:01:16 9000 Cisco Systems Inc Cisco VIC Ethernet NIC<br />vmnic8 0000:0e:00.00 enic Up 20000Mbps Full xx:xx:xx:a3:01:11 9000 Cisco Systems Inc Cisco VIC Ethernet NIC<br />vmnic9 0000:0f:00.00 enic Up 20000Mbps Full xx:xx:xx:b3:01:15 9000 Cisco Systems Inc Cisco VIC Ethernet NIC<br /><strong><span style="color: #ff9900;">~ # esxcfg-vmknic -l</span></strong><br />Interface Port Group/DVPort IP Family IP Address Netmask Broadcast MAC Address MTU TSO MSS Enabled Type<br />vmk0 Management Network IPv4 192.168.248.2 255.255.254.0 192.168.249.255 xx:xx:xx:a3:01:14 1500 65535 true STATIC<br /><span style="color: #ff0000;">vmk1 1 IPv4 192.168.240.2 255.255.254.0 192.168.241.255 xx:xx:xx:68:7c:e3 9000 65535 true STATIC</span><br />vmk3 1 IPv4 192.168.237.2 255.255.255.0 192.168.237.255 xx:xx:xx:67:0d:34 1500 65535 true STATIC<br />vmk4 1 IPv4 192.168.245.2 255.255.255.0 192.168.245.255 xx:xx:xx:68:07:a0 1500 65535 true STATIC<br />vmk5 1 IPv4 192.168.244.2 255.255.255.0 192.168.244.255 xx:xx:xx:62:60:66 1500 65535 true STATIC<br />vmk6 129 IPv4 192.168.245.102 255.255.255.0 192.168.245.255 xx:xx:xx:64:9c:a8 1500 65535 true STATIC<br />vmk7 129 IPv4 192.168.244.102 255.255.255.0 192.168.244.255 xx:xx:xx:65:b6:41 1500 65535 true STATIC<br /><span style="color: #ff0000;">vmk2 129 IPv4 192.168.242.2 255.255.254.0 192.168.243.255 xx:xx:xx:65:ff:87 9000 65535 true STATIC</span></p>
<p><span style="color: #ff9900;">~<strong> # vmkping -I vmk2 192.168.242.1 &#8211;  [ping to the esx-01 failed]</strong></span><br />PING 192.168.242.1 (192.168.242.1): 56 data bytes</p>
<p>&#8212; 192.168.242.1 ping statistics &#8212;<br />3 packets transmitted, 0 packets received, 100% packet loss<br /><strong><span style="color: #ff9900;">~ # vmkping -I vmk2 192.168.242.2   &#8211; [ this is the same host I am troubleshooting so its ping is ok.]</span></strong><br />PING 192.168.242.2 (192.168.242.2): 56 data bytes<br />64 bytes from 192.168.242.2: icmp_seq=0 ttl=64 time=0.081 ms<br />64 bytes from 192.168.242.2: icmp_seq=1 ttl=64 time=0.027 ms<br />64 bytes from 192.168.242.2: icmp_seq=2 ttl=64 time=0.055 ms</p>
<p>&#8212; 192.168.242.2 ping statistics &#8212;<br />3 packets transmitted, 3 packets received, 0% packet loss<br />round-trip min/avg/max = 0.027/0.054/0.081 ms<br />~ #<br />~<strong><span style="color: #ff9900;"> # vmkping -I </span><span style="color: #ff0000;">vmk1</span><span style="color: #ff9900;"> 192.168.242.2 [  vmk1 is the vmkernal port of FaultTolarant so it will not ping as its on a different subnet and vlan]</span></strong><br />PING 192.168.242.2 (192.168.242.2): 56 data bytes</p>
<p>&#8212; 192.168.242.2 ping statistics &#8212;<br />2 packets transmitted, 0 packets received, 100% packet loss</p>
<p><strong><span style="color: #ff9900;">~ # vmkping -I vmk1 192.168.240.2</span></strong><br />PING 192.168.240.2 (192.168.240.2): 56 data bytes<br />64 bytes from 192.168.240.2: icmp_seq=0 ttl=64 time=0.084 ms</p>
<p>&#8212; 192.168.240.2 ping statistics &#8212;<br />2 packets transmitted, 2 packets received, 0% packet loss<br />round-trip min/avg/max = 0.039/0.062/0.084 ms<br />~ # vmkping -I vmk1 192.168.240.1<br />PING 192.168.240.1 (192.168.240.1): 56 data bytes</p>
<p>&#8212; 192.168.240.1 ping statistics &#8212;<br />2 packets transmitted, 0 packets received, 100% packet loss</p>
<p>Now it is clear that the MAC and NIC are presented correct from UCS service profile and we have verified the MAC address and pinging from the vmkernal ports proofs that its is still not working.</p>
<p>I have check that they vnic template is connected to the right vlan on ucs. So next thing I have done is check the dvport group and I found that I had two uplinks on active which was wrong as one uplink is only for FT which has vlan 20and the other uplink is for vMotion which is on 21 vlan.</p>
<p>So, I have moved the dvuplink2 to unused as its for FT. on the dvport group which is for vMotion as shown below:</p>
<p><a href="https://quraishi.files.wordpress.com/2014/10/dv_switch.png"><img loading="lazy" decoding="async" class="size-full wp-image-889" src="https://quraishi.files.wordpress.com/2014/10/dv_switch.png" alt="dv_switch" width="604" height="445" /></a></p>
<p>&#8212; 192.168.242.2 ping statistics &#8212;</p>
<p>3 packets transmitted, 3 packets received, 0% packet loss<br />round-trip min/avg/max = 0.040/0.061/0.088 ms<br /><strong><span style="color: #ff9900;">~ # vmkping -I vmk2 192.168.242.1</span></strong><br /><span style="color: #99cc00;">PING 192.168.242.1 (192.168.242.1): 56 data bytes</span><br /><span style="color: #99cc00;"> 64 bytes from 192.168.242.1: icmp_seq=0 ttl=64 time=0.428 ms</span><br /><span style="color: #99cc00;"> 64 bytes from 192.168.242.1: icmp_seq=1 ttl=64 time=0.197 ms</span><br /><span style="color: #99cc00;"> 64 bytes from 192.168.242.1: icmp_seq=2 ttl=64 time=0.219 ms</span></p>
<p><span style="color: #99cc00;">&#8212; 192.168.242.1 ping statistics &#8212;</span></p>
<p><a href="https://quraishi.files.wordpress.com/2014/10/successful_migration1.png"><img loading="lazy" decoding="async" class="size-full wp-image-892" src="https://quraishi.files.wordpress.com/2014/10/successful_migration1.png" alt="successful_migration" width="604" height="20" /></a><br />3 packets transmitted, 3 packets received, 0% packet loss<br />round-trip min/avg/max = 0.197/0.281/0.428 ms</p>


<p></p>
</div><!-- .vgblk-rw-wrapper -->]]></content:encoded>
					
					<wfw:commentRss>https://agileops.co.uk/troubleshooting-the-vmotion-migration-failed-error/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">883</post-id>	</item>
	</channel>
</rss>
