LABRAT

Définir une adresse IP statique sur Debian

Par défaut, Debian est configuré pour acquérir une adresse IP dynamique via le service DHCP. Dans le cadre d'une utilisation serveur, il faut lui attribuer une adresse IP statique. Ce tuto décrit seulement la configuration IPv4.

Le fichier de configuration se situe dans :
/etc/network/interfaces

# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

source /etc/network/interfaces.d/*

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
allow-hotplug enp0s3
iface enp0s3 inet dhcp



Configuration statique


Editer le fichier de configuration
nano /etc/network/interfaces


Remplacer
iface enp0s3 inet dhcp

par
iface enp0s3 inet static


Puis définir les différents attributs.
Exemple:

# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

source /etc/network/interfaces.d/*

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
allow-hotplug enp0s3
iface enp0s3 inet static

address 192.168.30.11
netmask 255.255.255.0
gateway 192.168.30.1
network 192.168.30.0
broadcast 192.168.30.255
dns-nameservers 192.168.30.1


Redémarrer ensuite le réseau
/etc/networking/restart


Vérifier la prise en compte de la configuration à l'aide de la commande
ifconfig
| Catégorie: Debian Serveur Système