To have your endpoints automatically use your Windows Active Directory (AD) server (192.168.1.86) as the DNS1 server, you would typically need to configure your DHCP server to provide the AD server's IP address as the DNS server to DHCP clients. Since your router is currently handling DHCP, you would need to configure DHCP options on your router.
Here are the steps to configure DHCP options on many routers:
1. Access your router's web-based management interface. You usually do this by entering the router's IP address (often 192.168.1.1 or similar) in a web browser.
2. Log in to the router's administration console using the router's username and password.
3. Locate the DHCP settings. This might be under a "LAN," "Network," or "DHCP Server" section, depending on your router's firmware.
4. Look for an option to specify DNS servers. You may need to set the primary DNS server to the IP address of your AD server (192.168.1.86).
5. Save your changes and restart the DHCP service on your router if necessary.
By configuring your router's DHCP server to provide the AD server's IP address as the primary DNS server, your endpoints should automatically use the AD server for DNS resolution when they obtain their IP addresses via DHCP.
Regarding your question about VMware ESXi, ESXi itself doesn't handle DHCP services or DNS settings for endpoints unless you have a specific DHCP server running within a virtual machine on the ESXi host. However, if you want to isolate a group of VMs within a specific vCenter folder and have them use different network parameters, you can achieve this through network segmentation:
1. **Create a Separate Port Group**: In your vSphere environment, create a separate port group within your vSwitch or Distributed Switch. Assign this port group to the VMs you want to have different network parameters.
2. **Configure DHCP**: If you want these VMs to use different DHCP settings, configure a DHCP server within this isolated network segment (port group). You can run a DHCP server on a VM within this segment, or if your router supports multiple DHCP scopes, configure a separate scope for this segment.
3. **DNS Configuration**: For DNS settings, you can either configure them manually on the individual VMs or configure the DHCP server in this segment to provide the desired DNS server IP addresses.
By segmenting your network in this way, you can have specific VMs use different network parameters while still being part of the same ESXi host and vCenter environment.