🕸️Définir une adresse IP statique

Raspberry Pi 5 sous Raspberry Pi OS Bookworm

On identifie le nom de l'interface pour lequel on veut déterminer une adresse IP statique :

ifconfig

On crée ou modifie le fichier de configuration pour l'interface correspondante :

sudo nano /etc/network/interfaces.d/<INTERFACE>
allow-hotplug <INTERFACE>
iface <INTERFACE> inet static
address <ADRESSE IP STATIQUE>
network <ADRESSE IP DU RÉSEAU>
netmask <MASQUE DE SOUS-RÉSEAU>
gateway <ADRESSE IP DE LA PASSERELLE>

On (re)configure DHCPCD :

sudo nano /etc/dhcpcd.conf
interface eth0
static ip_address=<ADRESSE IP STATIQUE EN NOTATION CIDR>
static routers=<ADRESSE IP DE LA PASSERELLE>
static domain_name_servers=<ADRESSE IP DE LA PASSERELLE>

On redémarre le Raspberry pour appliquer les changements :

sudo reboot

Dernière mise à jour