Configuration interface reseau

Salut,

J’ai configurer mon interface eth0 dans /etc/network/interfaces:

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

# The loopback network interface
auto lo
iface lo inet loopback

iface eth0 inet static
address 192.168.10.1
netmask 255.255.255.0
broadcast 192.168.10.255
auto eth0

Au démarrage ma carte est bien configuré mais ca ping pas :open_mouth: . Alors que si je vire tous dans le fichier interfaces je reboot et je configure a la main avec un

ifconfig eth0 192.168.10.1 netmask 255.255.255.0

Ca marche, si on peut m’expliquer la…

Pour info, t’as pas besoin de redémarrer ta machine entière pour redémarrer le net :

suffit :wink:

Ensuite, dans ta configuration, ça serait pas plutôt :

auto eth0 iface eth0 inet static address 192.168.10.1 netmask 255.255.255.0 broadcast 192.168.10.255

à savoir le auto eth0 au début? tente pour voir :wink:

@+