Skip to content

Instantly share code, notes, and snippets.

@LuisPalacios
Last active March 6, 2023 10:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LuisPalacios/0513c8b1c2119da372d2f1e4fcea57d9 to your computer and use it in GitHub Desktop.
Save LuisPalacios/0513c8b1c2119da372d2f1e4fcea57d9 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