Diferencia entre revisiones de «Configurar IP estática en Debian»
Ir a la navegación
Ir a la búsqueda
([feat] Add information Configurar IP estática en Debian) |
|||
Línea 19: | Línea 19: | ||
Reiniciamos el servicio: | Reiniciamos el servicio: | ||
sudo systemctl restart | sudo systemctl restart networking |
Revisión actual - 09:55 29 jul 2023
Configurar
Teclear lo siguiente:
sudo nano /etc/network/interfaces
Agregar o cambiar:
allow-hotplug ens3 iface ens3 inet static address 192.168.122.113 netmask 255.255.255.0 network 192.168.122.0 broadcast 192.168.122.255 gateway 192.168.122.1
Después de terminar lo anterior guardamos los cambios (control + o) y luego cerramos el editor (control + x).
Reiniciamos el servicio:
sudo systemctl restart networking