Salut,
alors, les fichiers de conf...
tu as /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
# The primary network interface
auto eth0
iface eth0 inet static
address 172.16.0.1
netmask 255.255.255.0
broadcast 172.16.0.255
network 172.16.5.0
gateway 172.16.5.254
auto eth1
iface eth1 inet static
address 192.168.0.1
netmask 255.255.255.0
broadcast 192.168.0.255
network 192.168.0.0
gateway 192.168.0.254
pour limiter les adresses a 16 et / ou 24 et comprendre ce que tu fais, tu suis ce qu'indiques la premiere ligne...
man interfaces
ensuite, il faut redémarrer le réseau
/etc/init.d/networking restart
Phiphi