Servidor Windows 2016 Instalación de roles de DHCP con GUI y PowerShell: Guía paso a paso.
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 y 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.
Con interfaz gráfica de usuario:
1. Start your system, when Administrador del servidor opens click Add roles and features;
2. Para Installation Type, hacer clic Próximo;
3. Para Server Selection, select your server and click Próximo;
4. Para Server Roles, seleccionar DHCP Server role;
5. In the pop-up window click Agregar características;
6. Hacer clic Próximo;
7. Para Características, hacer clic Próximo;
8. Para DHCP Server, hacer clic Próximo;
9. Para Confirmation, hacer clic Instalar;
10. Installation begins;
11. Cuando se complete, hacer clic Cerca;
12. Hacer clic el yellow triangle in Server Manager, y haga clic Complete DHCP configuration;
13. Para Descripción, hacer clic Próximo;
14. Para Authorization, hacer clic Commit (also you may select the option Skip AD authorization and do authorization from DHCP console);
15. Para Resumen, hacer clic Cerca (you must see Hecho twice);
16. Correr el DHCP console from the apps list;
Con PowerShell:
- Correr 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 Administrador del servidor. Hacer clic el 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