This issue is resolved in VMware NSX-T Data Center 2.5.3.0
This issue is resolved in VMware NSX-T Data Center 3.1.1.0
This issue is resolved in VMware NSX-T Data Center 3.2.0
Workaround:
The Service Insertion(SI) dvfilter is removed from the Edge vNic by placing it on the SI exclusion list.
The SI exclusion list is comprised of a list of NSGroups.
Therefore, to add the Edge VM to the SI exclusion list it must first be part of an NSGroup.
Versions prior to 2.5.2:
Edge VMs were not part of a default NSGroup and so must first be added to an NSGroup.
1) On the UI, create a new NSGroup and note its UUID
2) On the UI, add the Edge to the NSGroup using the logical ports of the VM
3) Via API, add the new NSGroup to the SI exclusion list as below
POST https://<Manager-ip>/api/v1/serviceinsertion/excludelist?action=add_member
Body:
{
"target_id" : "<UUID found from step 1>",
"target_type" : "NSGroup"
}
4) Confirm slot 12 has been removed from the VM at the ESXi level by running, the VM interface should not be listed in the output
#summarize-dvfilter
NSX-T 2.5.2/3.0.0 and above:
Edge VMs are already part of a default system NSGroup called Edge_NSGroup.
1) Via API, identify the UUID of the Edge_NSGroup
GET https://<Manager-ip>/api/v1/ns-groups
2) Via API, add Edge_NSGroup to the SI exclusion list as below
POST https://<Manager-ip>/api/v1/serviceinsertion/excludelist?action=add_member
Body:
{
"target_id" : "<UUID found from step 1>",
"target_type" : "NSGroup"
}
3) Confirm slot 12 has been removed from the VM at the ESXi level by running, the VM interface should not be listed in the output
#summarize-dvfilter