diff --git a/audience/administrator_at_isg.markdown b/audience/administrator_at_isg.markdown index 4334f2287e827ec88593e7792c50edc9c4c6f5dc..77a166f55909af69b6bc51dd2a3b7c5b69bd36dc 100644 --- a/audience/administrator_at_isg.markdown +++ b/audience/administrator_at_isg.markdown @@ -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]] diff --git a/documentation/how_to_setup_bonding_link_aggregation_ieee_802.3ad.markdown b/documentation/how_to_setup_bonding_link_aggregation_ieee_802.3ad.markdown deleted file mode 100644 index a28a0d80739575eba443215f8f80f247f5ca6233..0000000000000000000000000000000000000000 --- a/documentation/how_to_setup_bonding_link_aggregation_ieee_802.3ad.markdown +++ /dev/null @@ -1,71 +0,0 @@ -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 -```