Automatically assign ip address to bridged network in VMWare Workstation?
If you are using bridge connection your router will assign IP from the DHCP pool. check for file /etc/sysconfig/network-scripts/ifcfg-ens33
. If file does not exist then create one and put the content like
DEVICE="ens33"
BOOTPROTO="dhcp"
ONBOOT="yes"
TYPE="Ethernet"
PERSISTENT_DHCLIENT="yes"
and restart the network via systemctl restart network.service
.