From 52b294db4541d7e49c05e22a2979bb7ca52daa29 Mon Sep 17 00:00:00 2001 From: Claude Becker <becker@phys.ethz.ch> Date: Fri, 7 Feb 2025 13:02:52 +0100 Subject: [PATCH] rm old bonding docs --- audience/administrator_at_isg.markdown | 1 - ...ing_link_aggregation_ieee_802.3ad.markdown | 71 ------------------- 2 files changed, 72 deletions(-) delete mode 100644 documentation/how_to_setup_bonding_link_aggregation_ieee_802.3ad.markdown diff --git a/audience/administrator_at_isg.markdown b/audience/administrator_at_isg.markdown index 4334f228..77a166f5 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 a28a0d80..00000000 --- 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 -``` -- GitLab