Le réseau sur un raspberry 3

Configuration du réseau ip fixe en raspberry 3

le réseau

Exemple

On ajoute une ip fixe via le fichier /etc/dhcpcd.conf

1
# It is possible to fall back to a static IP if DHCP fails:
2
# define static profile
3
profile static_eth0
4
static ip_address=192.168.1.254/24
5
static routers=192.168.1.1
6
static domain_name_servers=192.168.1.1
7