Adds how to handle kea service

main
Nicolas Arenas 2025-01-29 18:14:36 +01:00
parent 14072376b8
commit 0221e149ad
1 changed files with 8 additions and 0 deletions

View File

@ -301,15 +301,23 @@ El servicio que se encarga de gestionar el DHCP, basado en kea y está gestionad
```bash
# Arranque
systemctl start nginx
systemctl start kea-dhcp4-server
systemctl start kea-ctrl-agent
# Parada
systemctl stop nginx
systemctl stop kea-dhcp4-server
systemctl stop kea-ctrl-agent
# Restart
systemctl restart nginx
systemctl restart kea-dhcp4-server
systemctl restart kea-ctrl-agent
# Status
systemctl status nginx
systemctl status kea-dhcp4-server
systemctl status kea-ctrl-agent
```