Step 1: Creating Internal NAT Virtual Switch: To create NAT switch, we need to run the below command on Windows Administrator PowerShell and check the status. PS C:\> New-VMSwitch -Name NATSWITCH -SwitchType Internal After running the command you will get the display shown below. Run the Get-NetAdapter command to get the ifindex (connected interface) and Virtual Switch details. Step 2: Run the below command to configure NAT Gateway IP. PS C:\> New-NetIPAddress –IPAddress 192.168.103.185 -PrefixLength 24 -InterfaceIndex 14 For above command: NAT Switch IP Address is: 192.168.103.185(NAT GATEWAY IP) Prefix Length: 24 (Subnet mask) Interface Index: 14 Connected interfaces (See above screenshot for interfaces) After running this command and it displays the required brief details, refer below screenshot. Step3: Now run the below command in order to configure NAT Network. To assign NAT IP segment(192.168.103.0/24), we have to use Host Machine VMs. PS C:\> New-NetNat -Name NATS...