This issue is resolved in VMware Usage Meter 3.6.1 Hot Patch 3, available at
VMware Downloads.
Workaround:
To work around this issue if you do not want to upgrade:
- Get the IP Addresses of the Site Recovery Manager servers.
Note: You may need to run the "sysctl -w net.ipv4.conf.all.route_localnet=1" command to enable the localhost/localnet route processing for your outbound interface.
- Add these configurations to the iptables with these commands, replacing SRM_IP_1 and SRM_IP_2:
For example:
iptables -t nat -A OUTPUT -p tcp --dst SRM_IP_1 --dport 9086 -j DNAT --to-destination SRM_IP_1:443
iptables -t nat -A POSTROUTING -p tcp --dst SRM_IP_1 --dport 9086 -j MASQUERADE
iptables -t nat -A OUTPUT -p tcp --dst SRM_IP_2 --dport 9086 -j DNAT --to-destination SRM_IP_2:443
iptables -t nat -A POSTROUTING -p tcp --dst SRM_IP_2 --dport 9086 -j MASQUERADE
- Add SRM 8.2 and collect from it.
Note: If the appliance restarts, the iptables rules will disappear and you would need to rerun the commands or you can add the commands to execute on system boot. For example: Add the commands from point 2 in the
/root/.bash_profile file.