net-stats -l | grep vdrPort
/var/log/proton/nsxapi.log
2024-12-13T13:00:00.626Z INFO providerTaskExecutor-44 GlobalConfigProviderNsxT 8772 POLICY [nsx@6876 comp="nsx-manager" level="INFO" subcomp="manager"] GlobalConfig Id: global-config, Revision: 3. Update GlobalConfig VdrMac from 02:50:56:56:aa:bb to 02:50:56:56:AA:BB. Update GlobalConfig VdrMacNested from 02:50:56:56:44:53 to 02:50:56:56:44:53. Syncing VDR MAC on TransportNodes...
2024-12-13T13:00:00.629
Z INFO providerTaskExecutor-44 VdrMacEventUfoDao 8772 FABRIC [nsx@6876 comp="nsx-manager" level="INFO" subcomp="manager"] Updated to VdrMacEvent [id=GlobalConfig, sourceType=SRC_GLOBAL_CFG, sourceRevision=3]
GET https://<Manager_IP>/policy/api/v1/infra/global-config
{
"mtu" : 8900,
"fips" : {
"lb_fips_enabled" : true,
"tls_fips_enabled" : false
},
"l3_forwarding_mode" : "IPV4_ONLY",
"uplink_mtu_threshold" : 9000,
"vdr_mac" : "02:50:56:56:AA:BB",
"vdr_mac_nested" : "02:50:56:56:44:53",
"allow_changing_vdr_mac_in_use" : false,
"arp_limit_per_gateway" : 50000,
"external_gateway_bfd" : {
"bfd_profile_path" : "/infra/bfd-profiles/default-external-gw-bfd-profile",
"enable" : true
},
"lb_ecmp" : false,
"remote_tunnel_physical_mtu" : 9000,
"physical_uplink_mtu" : 9000,
"global_replication_mode_enabled" : false,
"is_inherited" : false,
"site_infos" : [ ],
"resource_type" : "GlobalConfig",
"id" : "global-config",
"display_name" : "default",
"path" : "/infra/global-config",
"relative_path" : "global-config",
"parent_path" : "/infra",
"remote_path" : "",
"unique_id" : "########-####-####-####-########c7ff",
"realization_id" : "########-####-####-####-########c7ff",
"owner_id" : "########-####-####-####-########
b899",
"marked_for_delete" : false,
"overridden" : false,
"_system_owned" : false,
"_protection" : "NOT_PROTECTED",
"_create_time" : 1729696108706,
"_create_user" : "system",
"_last_modified_time" : 1730049431534,
"_last_modified_user" : "admin",
"_revision" : 3
}
This issue is resolved in VMware NSX-T Data Center 3.2.3 and VMware NSX 4.1.1, available at Broadcom Downloads.
If you are having difficulty finding and downloading software, please review the KB article Download Broadcom products and software.
For a workaround:
GET https://<Manager_IP>/policy/api/v1/infra/global-config
"allow_changing_vdr_mac_in_use": true
Below is a sample payload (note the MAC is not changing, we have only converted the uppercase letters to lowercase letters): {
"vdr_mac" : "02:50:56:56:aa:bb",
"allow_changing_vdr_mac_in_use" : true
}
PATCH https://<Manager_IP>/policy/api/v1/infra/global-config
"allow_changing_vdr_mac_in_use": true
" back to false:{
"allow_changing_vdr_mac_in_use": false
}