Enable DHCP Server Logging on Windows Server 2019

DHCP Server

Problem Sometimes, You want to enable DHCP Server logging to monitor the DHCP server to track down the issue you have. Solution Using PowerShell Command You can enable the DHCP Server log using Set-DhcpServerAuditLog CmdLet. The Set-DhcpServerAuditLog cmdlet sets the Dynamic Host Configuration Protocol (DHCP) server service audit log configuration on the DHCP server service that runs … Read more

Enable address conflict detection on Windows DHCP Server

DHCP Server

IPv4 address conflicts are a common cause of problems with DHCP. No two computers on the network can have the same unicast IP address. If a computer is assigned the same unicast IPv4 address as another, one or both of the computers might become disconnected from the network. In this article, we will enable address … Read more

Install DHCP Server on Windows Server 2016

What is DHCP Dynamic Host Configuration Protocol (DHCP) is an IP standard designed to reduce the complexity of administering address configurations by using a server computer to centrally manage IP addresses and other related configuration details used on your network. Before you install and configure the DHCP server, make sure you have set the static … Read more

Migrating an existing DHCP Server to another server

This article will provide the information on How to migrate an existing DHCP server to another DHCP server. Using NETSH command Log in to the DHCP server that you want to migrate and open Command Prompt with elevated permission. Run the following command on the Command Prompt. netsh dhcp server export c:\dhcp.txt all You can … Read more