Voila j'ai configurer mon channel bonding en active-backup sur mon serveur Debian.
Tout marche très bien: internet, le remplacement de NIC en cas de problèmes.....
Cependant lors du chargement je constate qu'il y a des erreurs.
Voici un extrait du probleme affiché lors du démarrage:
Code :
- Configuring network interfaces:
- Something broke setting the slave's address: Invalid Argument
- Error setting the slave (eth0) with SIOCSIFDSTADDR: Invalid Argument
- Something broke setting the slave (eth0) broadcast address: Invalid Argument
- Something broke setting the slave (eth0) netmask: Invalid Argument
- Configuring network interfaces: Something broke setting the slave's address: Invalid Argument
- Error setting the slave (eth1) with SIOCSIFDSTADDR: Invalid Argument
- Something broke setting the slave (eth1) broadcast address: Invalid Argument
- Something broke setting the slave (eth1) netmask: Invalid Argument
|
Voila sinon tout marche très bien je le rapelle et dans les logs je ne retrouve pas ces erreurs.
Mon fichier /etc/network/interfaces:
Code :
- auto lo
- iface lo inet loopback
- auto eth0
- iface eth0 inet static
- address 192.168.0.10
- netmask 255.255.255.0
- network 192.168.0.0
- broadcast 192.168.0.255
- gateway 192.168.0.1
- auto eth1
- iface eth1 inet static
- address 192.168.0.10
- netmask 255.255.255.0
- network 192.168.0.0
- broadcast 192.168.0.255
- gateway 192.168.0.1
- auto bond0
- iface bond0 inet static
- address 192.168.0.10
- netmask 255.255.255.0
- network 192.168.0.0
- broadcast 192.168.0.255
- gateway 192.168.0.1
- up route del -net 192.168.0.0 netmask 255.255.255.0 dev eth0
- up route del -net 192.168.0.0 netmask 255.255.255.0 dev eth1
- pre-up ifenslave -E bond0 eth0 eth1
- post-down ifconfig eth0 down
- post-down ifconfig eth1 down
|
Et mon fichier /etc/modules:
Code :
- 3c59x
- bonding mode=1 miimon=100
|
Voila il y a tout!