Skip to content
Snippets Groups Projects
Commit 52b294db authored by Claude Becker's avatar Claude Becker
Browse files

rm old bonding docs

parent 3b4cb380
No related branches found
No related tags found
No related merge requests found
......@@ -20,7 +20,6 @@ Administrative Tasks
### How-To
* [[How to setup Bonding (Link Aggregation, IEEE 802.3ad)|documentation/How to setup Bonding Link Aggregation IEEE 802.3ad]]
* [[documentation/Setting up a X server for diskless clients]] (X -query)
* [[linux/How to create partitions over 2TB on Linux]]
* [[documentation/How to loopthrough a PCI network card into a Xen DomU]]
......
How to setup Bonding (Link Aggregation, IEEE 802.3ad)
=====================================================
Für das Bonding (Mode=4, LACP) müssen die Switches speziell konfiguriert werden!
Siehe auch [Komcenter-Wiki](https://unlimited.ethz.ch/display/IUI/Link-Aggregation)
Für Bonding sind die Pakete **ifenslave-2.6** und **ethtool** zu installieren
```
aptitude install ifenslave-2.6 ethtool
```
Lege ein Config-File **/etc/modprobe.d/bonding.conf** an und füge nachfolgende zwei Zeilen ein
```
alias bond0 bonding
options bonding mode=4 miimon=100 ad_select=0 lacp_rate=1 xmit_hash_policy=layer2+3
```
In `/etc/network/interfaces` das bond0-Interface anlegen.
Das Interface kann mit DHCP oder Static konfiguriert werden!
_Solange man nichts spezielles definiert, wird die MAC-Adresse des ersten Interfaces verwendet!_
```
# Channel Bonding
auto bond0
iface bond0 inet dhcp
bond-slaves all # oder bond-slaves eth0 eth1 ...
bond-mode 4
bond-miimon 100
```
oder
```
auto bond0
iface bond0 inet static
address 129.132.80.15
netmask 255.255.255.192
network 129.132.80.0
broadcast 129.132.80.63
gateway 129.132.80.1
bond-slaves all # oder bond-slaves eth0 eth1 ...
bond-mode 4
bond-miimon 100
```
Jetzt müssen zuerst die aktiven Interfaces abgestellt werden:
```
ifdown eth0
```
Kommentiere die deaktiverten Interfaces in **/etc/network/interfaces** aus.
```
#auto eth1
#iface eth1 inet dhcp
```
Verbinde die speziell bestellten Patch-Kabel mit den Interfaces.
Aktiviere das bond0-Interface
```
ifup bond0
```
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment