Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
readme
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
isgphys
readme
Commits
52b294db
Commit
52b294db
authored
1 month ago
by
Claude Becker
Browse files
Options
Downloads
Patches
Plain Diff
rm old bonding docs
parent
3b4cb380
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
audience/administrator_at_isg.markdown
+0
-1
0 additions, 1 deletion
audience/administrator_at_isg.markdown
documentation/how_to_setup_bonding_link_aggregation_ieee_802.3ad.markdown
+0
-71
0 additions, 71 deletions
...w_to_setup_bonding_link_aggregation_ieee_802.3ad.markdown
with
0 additions
and
72 deletions
audience/administrator_at_isg.markdown
+
0
−
1
View file @
52b294db
...
...
@@ -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]]
...
...
This diff is collapsed.
Click to expand it.
documentation/how_to_setup_bonding_link_aggregation_ieee_802.3ad.markdown
deleted
100644 → 0
+
0
−
71
View file @
3b4cb380
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
```
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment