Paso 4: Configurar el servidor DHCP
A continuación editaremos/etc/dhcp/dhcpd.conf, un archivo que instala nuestro servidor DHCP - esto permite conexiones wifi obtener automáticamente direcciones IP, DNS, etc..
Ejecutar este comando para editar el archivo
option domain-name "example.org";option domain-name-servers ns1.example.org, ns2.example.org;
Encontrar las líneas que dicen
#option domain-name "example.org";#option domain-name-servers ns1.example.org, ns2.example.org;
y cambiarlos para agregar un # al principio eso dicen
# If this DHCP server is the official DHCP server for the local<br># network, the authoritative directive should be uncommented. #authoritative;
Encontrar las líneas que dicen
# If this DHCP server is the official DHCP server for the local # network, the authoritative directive should be uncommented. authoritative;
y eliminar el # dice
subnet 192.168.42.0 netmask 255.255.255.0 { range 192.168.42.10 192.168.42.50; option broadcast-address 192.168.42.255; option routers 192.168.42.1; default-lease-time 600; max-lease-time 7200; option domain-name "local"; option domain-name-servers 8.8.8.8, 8.8.4.4; }
Desplácese hacia abajo y añadir las siguientes líneas
sudo nano /etc/default/isc-dhcp-server
Guarde el archivo escribiendo en Control-X luego Y luego volver
Ejecutar
sudo if down wlan0
y desplácese hacia abajo para INTERFACES = "" y actualizarlo a decir INTERFACES = "wlan0"
cierre y guarde el archivo