<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>ssorellwj Tracker</title>
    <link>https://communities.vmware.com/wbsdv95928/tracker</link>
    <description>ssorellwj Tracker</description>
    <pubDate>Thu, 23 Nov 2023 13:45:48 GMT</pubDate>
    <dc:date>2023-11-23T13:45:48Z</dc:date>
    <item>
      <title>Re: V2T migration - Host won't be migrated because NSXV is not installed on it</title>
      <link>https://communities.vmware.com/t5/Networking-Members/V2T-migration-Host-won-t-be-migrated-because-NSXV-is-not/m-p/2967071#M311</link>
      <description>&lt;P&gt;I think you will run into problems with the migration if you just accept those specific warnings. I imagine if it thinks NSX-V isn't installed it won't run the uninstall-V / install-T process correctly as part of the migration coordinator.&lt;/P&gt;&lt;P&gt;Which versions of NSX-V and NSX-T are you running/migrating to? The migration coordinator is limited to NSX-V versions 6.4.4, 6.4.5, 6.4.6, 6.4.8 and above. &lt;A href="https://docs.vmware.com/en/VMware-NSX-T-Data-Center/3.1/migration/GUID-8C3E2019-D5A9-48F6-B9EC-A9E91B0A6649.html" target="_blank"&gt;https://docs.vmware.com/en/VMware-NSX-T-Data-Center/3.1/migration/GUID-8C3E2019-D5A9-48F6-B9EC-A9E91B0A6649.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 05 May 2023 23:19:04 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/Networking-Members/V2T-migration-Host-won-t-be-migrated-because-NSXV-is-not/m-p/2967071#M311</guid>
      <dc:creator>ssorellwj</dc:creator>
      <dc:date>2023-05-05T23:19:04Z</dc:date>
    </item>
    <item>
      <title>Re: Export Version of Distributed Firewall Filter on Hosts Script</title>
      <link>https://communities.vmware.com/t5/ESXi-Discussions/Export-Version-of-Distributed-Firewall-Filter-on-Hosts-Script/m-p/2894370#M280321</link>
      <description>&lt;P&gt;You can use this as a basis if you like? It uses Posh-SSH and minimum PowerShell version 5.1.&lt;/P&gt;&lt;LI-CODE lang="java"&gt;# Gets Firewall Export Version prior to upgrade to T
# https://docs.vmware.com/en/VMware-NSX-T-Data-Center/3.1/migration/GUID-993AB7A8-C560-43C0-B7B0-B5A58EC6884D.html

$csv_path = "$($env:LogPath)\HostFwExportVersions_$(Get-Date -F "yyyyMMdd_HHmmss").csv"
$esxiCreds = Get-Credential -Username "root" -Message "Please enter ESXI root password"
$vcsaCreds = Get-Credential -Message "Please enter your vcsa admin username and password"

Connect-ViServer -server "" -credential $vcsaCreds
$vmhosts = Get-VMHost
$dfw_filter_exports = @()

foreach ($vmhost in $vmhosts) {

    # Start SSH session on host (saved pwd)
    $sshService = Get-VMHostService $vmhost | where Key -eq 'TSM-SSH'
    Start-VMHostService -HostService $sshService | out-null
    $session = New-SSHSession -ComputerName $vmhost -credential $esxiCreds -AcceptKey

    $dfw_filters = Invoke-SSHCommand -SessionId $session.sessionid -command "vsipioctl getfilters | grep 'Filter Name' | grep 'sfw.2' | awk -F': ' '{print`$2}'"
    foreach ($filter in $dfw_filters.output) {
        $result = Invoke-SSHCommand -SessionId $session.sessionid -command "vsipioctl getexportversion -f $filter | awk -F': ' '{print`$2}'"
        $dfw_filter_exports += [PSCustomObject]@{
            Host            = $result.host
            FilterName      = $filter
            ExportVersion   = $result.output[0]
        }
    }

    #Cleanup
    Remove-SshSession -session $session.sessionid
    Stop-VMHostService -HostService $sshService -confirm:$false | out-null

}

$dfw_filter_exports | Export-Csv $csv_path -notypeinformation&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There's also this script which could be modified to just export the info. They use Posh-SSH as well.&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/Datacenter-Dennisch/PowerCLI-scripts/blob/master/NSXt%20scripts/NSXV2T_ExportVersion_to_1000.ps1" target="_blank"&gt;PowerCLI-scripts/NSXV2T_ExportVersion_to_1000.ps1 at master · Datacenter-Dennisch/PowerCLI-scripts · GitHub&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Feb 2022 22:22:52 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/ESXi-Discussions/Export-Version-of-Distributed-Firewall-Filter-on-Hosts-Script/m-p/2894370#M280321</guid>
      <dc:creator>ssorellwj</dc:creator>
      <dc:date>2022-02-18T22:22:52Z</dc:date>
    </item>
  </channel>
</rss>

