Ethernet Bonding: come garantire ridondanza e/o massimizzare la banda disponibile: differenze tra le versioni

Vai alla navigazione Vai alla ricerca
Riga 75: Riga 75:
bond_downdelay 200
bond_downdelay 200
bond_updelay 200
bond_updelay 200
slaves eth0 eth1
bond-slaves eth0 eth1
</pre>
</pre>
Fatto questo riavviamo il sistema di networking con:
Fatto questo riavviamo il sistema di networking con:
<pre>
<pre>
# /etc/init.d/networking restart
# /etc/init.d/networking restart
</pre>
==== Sintassi alternativa ====
<pre>
auto bond0
iface bond0 inet static
address <indirizzo_ip>
netmask <subnetmask>
network <indirizzo_di_rete>
gateway <ip_del_gateway>
bond_mode <modalità_di_bonding_preferita>
bond_miimon 100
bond_downdelay 200
bond_updelay 200
bond-slaves none
auto eth0
iface eth0 inet manual
bond-master bond0
auto eth1
iface eth1 inet manual
bond-master bond0
</pre>
</pre>