윈도우 서버 2016 DHCP Role Installation with GUI and PowerShell: Step-by-Step Guide.
Dynamic Host Configuration Protocol (DHCP) is a client/server protocol that automatically provides an Internet Protocol (IP) host with its IP address and other related configuration information such as the subnet mask and default gateway. RFCs 2131 그리고 2132 define DHCP as an Internet Engineering Task Force (IETF) standard based on Bootstrap Protocol (BOOTP), a protocol with which DHCP shares many implementation details. DHCP allows hosts to obtain required TCP/IP configuration information from a DHCP server.
With GUI:
1. Start your system, when Server Manager opens click Add roles and features;
2. 을 위한 Installation Type, click Next;
3. 을 위한 Server Selection, select your server and click Next;
4. 을 위한 Server Roles, select DHCP Server role;
5. In the pop-up window click Add Features;
6. Click Next;
7. 을 위한 Features, click Next;
8. 을 위한 DHCP Server, click Next;
9. 을 위한 Confirmation, click 설치하다;
10. Installation begins;
11. When complete, click 닫다;
12. Click 그만큼 yellow triangle in Server Manager, 그리고 클릭 Complete DHCP configuration;
13. 을 위한 Description, click Next;
14. 을 위한 Authorization, click Commit (also you may select the option Skip AD authorization and do authorization from DHCP console);
15. 을 위한 요약, click 닫다 (you must see Done twice);
16. 달리다 그만큼 DHCP console from the apps list;
With PowerShell:
- 달리다 PowerShell as administrator;
2. Install DHCP Role;
Add-WindowsFeature DHCP
3. Install DHCP console;
Add-WindowsFeature RSAT-DHCP
4. For DHCP authorization enter;
Add-DHCPServerInDC
5. After that go to Server Manager. Click 그만큼 yellow triangle, and click Complete DHCP configuration. For Description, click Next. For Authorization, select the option Skip AD authorization and click Commit;
6. Get all commands for DHCP in PowerShell;
Import-Module dhcpserver
Get-Command -Module dhcpserver