Skip to content

Instantly share code, notes, and snippets.

@xergio
Forked from LuisPalacios/dhcpcd.conf
Created June 3, 2025 20:08
Show Gist options
  • Save xergio/7f539dbb7d53ae4d3f3f33444c14a7de to your computer and use it in GitHub Desktop.
Save xergio/7f539dbb7d53ae4d3f3f33444c14a7de to your computer and use it in GitHub Desktop.
Servidor Norte: /etc/dhcpcd.conf
##
## Fichero /etc/dhcpcd.conf para Raspberry Pi OS 64 bits
## Servidor ‘norte’
##
## Este fichero está relacionado con este apunte:
## https://www.luispa.com/linux/2014/10/19/bridge-ethernet.html
##
## Configuración IP:
## `eth0` con una dirección IP fija.
## `eth1` inicialmente sin servicio.
##
## Parámetros estándar
##
hostname
clientid
persistent
option rapid_commit
option domain_name_servers, domain_name, domain_search, host_name
option classless_static_routes
option interface_mtu
require dhcp_server_identifier
slaac private
## Interfaz eth1 inicialmente desactivada.
##
denyinterfaces eth1
## Interfaz eth0 con una dirección IP fija.
##
interface eth0
static ip_address=192.168.1.2/24
static routers=192.168.1.1
static domain_name_servers=80.58.61.250 80.58.61.254
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment