top of page
Foto del escritorClaudio Magagnotti

Configurar servicio DHCP en un router

DHCP (Dynamic Host Configuration Protocol) es un protocolo usado por los dispositivos en la red para obtener automáticamente los parámetros correctos de red como por ejemplo: Dirección IP, Máscara, Gateway y DNS. Un servidor DHCP es ultra necesario en las redes de hoy en día. Los dispositivos capaces de brindar éste servicio son: S.O como Windows Servers, Linux, Routers y Switches de Capa 3.

¿Cómo configurar el servicio DHCP en un router?

Pasos:

1.0 Habilitar el servicio DHCP. R1(config)#Service dhcp

2.0 Crear el pool DHCP. R1(dhcp-config)#ip dhcp pool [nombre] R1(dhcp-config)#network [IP] [máscara]

3.0 Definir los parámetros que entregará a cada cliente.

#default-router [gateway] #dns-server [IP del principal] [IP del alternativo] #domain-name [nombre] #lease 9 #import all

4.0 Definir las IPs excluidas #ip dhcp excluded-address [inicio] [fin]

5.0 Verificar los cambios # show ip dhcp binding

Configuración realizada

R1(config)#service dhcp R1(config)#ip dhcp pool iproot-net R1(dhcp-config)#network 192.168.1.0 255.255.255.0 R1(dhcp-config)#default-router 192.168.1.1 R1(dhcp-config)#dns-server 192.168.1.1 R1(dhcp-config)#lease 9 R1(dhcp-config)#exit R1(config)#ip dhcp excluded-address 192.168.1.1 192.168.1.10 R1(config)#exit

Troubleshooting #show binding  #show conflict #show database #show import #show pool DHCP #show relay Miscellaneous #show server Miscellaneous


0 visualizaciones

Entradas recientes

Ver todo

BackUp your network devices with Python!

I’ve been busy working that’s why the deelay, but Im here again! I’ve started to learn python some months ago… I think it’s a really...

Comments

Rated 0 out of 5 stars.
No ratings yet

Add a rating
bottom of page