VyOS: Configurar un Servidor DHCP con Ejemplos Prácticos

VyOS incluye un servidor DHCP completo basado en ISC DHCP. La configuración vive bajo set service dhcp-server y sigue el mismo modelo jerárquico que el resto del sistema: se edita en modo configuración, se valida con commit y se persiste con save. Este post parte del escenario definido en VyOS: Primera Configuración y agrega DHCP para la LAN principal y dos VLANs. Escenario de referencia Internet │ eth0 (WAN) │ [VyOS] │ eth1 LAN principal — 192.168.1.1/24 eth1.10 VLAN 10 Servidores — 10.10.10.1/24 eth1.20 VLAN 20 Usuarios — 10.10.20.1/24 Cada segmento necesita su propio servidor DHCP, porque VyOS actúa como gateway de cada red. ...

April 11, 2026 · 7 min · Francisco Valladolid

Subnetting: From First Principles to VLSM

Subnetting is one of those skills that seems intimidating until it clicks, and then it feels obvious. This post builds from first principles — binary representation, masks, and block sizes — through variable-length subnet masking (VLSM) and summarization. IP Address Structure An IPv4 address is 32 bits divided into two logical parts: network and host. 192.168.10.25 = 11000000.10101000.00001010.00011001 The subnet mask defines the split. A 255.255.255.0 mask (or /24 in CIDR) means the first 24 bits identify the network, the last 8 identify the host. ...

April 7, 2026 · 4 min · Francisco Valladolid