-
Notifications
You must be signed in to change notification settings - Fork 389
LACP - Resilience update changes #8833
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: develop
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| --- | ||
| title: How to Configure Your NIC for OVHcloud Link Aggregation in Debian 9 to 11 | ||
| title: How to configure your NIC for OVHcloud Link Aggregation in Debian 9 to 11 | ||
| excerpt: "Enable OVHcloud Link Aggregation in your Debian server (from Debian 9 to Debian11)" | ||
| updated: 2024-11-26 | ||
| --- | ||
|
|
@@ -24,6 +24,13 @@ OVHcloud Link Aggregation (OLA) technology is designed by our teams to increase | |
| > ``` | ||
| > | ||
|
|
||
| > [!primary] | ||
| > | ||
| > This guide provides instructions for configuring network interface bonding specifically using `ifupdown`. It also applies to the rescue system. | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Préciser que ifupdown = /etc/network/interfaces car l'utilisateur ne connaît souvent que ce nom |
||
| > | ||
| > If your system's network configuration uses `netplan` instead, please refer to [this guide](/pages/bare_metal_cloud/dedicated_servers/lacp-enable-netplan). | ||
| > | ||
|
|
||
| ## Instructions | ||
|
|
||
| Because you have a private-private configuration for your NICs in OLA, you will be unable to SSH into the server. Thus, you will need to leverage the IPMI tool to access the server. | ||
|
|
@@ -58,6 +65,7 @@ This will open an empty text file. To configure the bond interface, insert the f | |
| auto bond0 | ||
| iface bond0 inet static | ||
| address 10.0.0.1/24 | ||
| hwaddress ether 00:11:22:33:44:55 | ||
| bond-mode 802.3ad | ||
| bond-slaves eno1 eno2 | ||
| bond-lacp-rate fast | ||
|
|
@@ -66,6 +74,11 @@ iface bond0 inet static | |
| up ip -6 addr add fc10:0000:0000:0001::/64 dev bond0 | ||
| ``` | ||
|
|
||
| > [!primary] | ||
| > | ||
| > For the `hwaddress` parameter, we recommend using the smaller of the two MAC addresses of your NICs, as it belongs to the LACP fallback interface. | ||
| > | ||
|
|
||
| > [!primary] | ||
| > | ||
| > You only need to add the last line to this file if you are planning on configuring private networking via IPv6. | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -352,6 +352,14 @@ chroot /mnt/ | |
|
|
||
| You should now be able now apply all necessary changes to your system, for example to [regain server access](#gofurther). | ||
|
|
||
| ### Link Aggregation configuration in rescue mode | ||
|
|
||
| Link Aggregation (LACP) is highly beneficial, as it increases your server's total bandwidth while providing network redundancy in case a network interface fails. | ||
|
|
||
| Although rescue mode is based on the Debian 12 operating system, its network configuration relies on the *ifupdown* utility. | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Est-ce qu'il faut dire "rescue mode" ou "the rescue mode" ? |
||
|
|
||
| If you have a server that supports link aggregation and you wish to configure it in rescue mode, please refer to [this guide](/pages/bare_metal_cloud/dedicated_servers/ola-enable-debian9). | ||
|
|
||
| ### Exiting rescue mode | ||
|
|
||
| If relevant, return to the rescue mode login shell by entering: | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tu peux ajouter une mention du fait que le rescue aussi reçoit les offres DHCP sur cette interface ? Il n'y a pas que l'OS installé sur disque.