on a windows 10 host, running vmware workstation 16. would like to 'tcpreplay -i ens33 foo.pcap' on vmware ubuntu 20 guest to another vmware ubuntu 20 guest on the same subnet, and verify packets are received with 'tcpdump -i eth0'
following advice from other posts, i first edited the receiving guests' .vmx file and added the line
ethernet0.noPromisc = "FALSE"
started the guest, and then ran
ifconfig eth0 promisc; netstat -i
iptables is not blocking traffic. I start tcpreplay on sending guest, but receiving guest does not get the packets.
where to go from here?