Friday, February 14, 2020

ping between VMs on same distributed port group / virtual switch doesn't work


Check if they are on the same physical hosts in ESXi. If not, move them to the same host and see if ping works. If it does, then the problem is on the physical switch connecting the 2 hosts. For example, VLAN not added in the trunk.

test

import os import argparse import json def load_json_file(filepath):     with open(filepath, 'r') as f:         return json.load(f) d...