Created
September 25, 2017 19:37
-
-
Save cdesch/985558e85f4da166829f0dc3876deba0 to your computer and use it in GitHub Desktop.
Network Interfaces Config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This file describes the network interfaces available on your system | |
# and how to activate them. For more information, see interfaces(5). | |
source /etc/network/interfaces.d/* | |
# The loopback network interface | |
auto lo | |
iface lo inet loopback | |
# The primary network interface | |
auto ens33 | |
iface ens33 inet manual | |
bond-master bond0 | |
bond-primary ens33 | |
auto ens38 | |
iface ens38 inet manual | |
bond-master bond0 | |
auto bond0 | |
iface bond0 inet dhcp | |
bond-mode 6 | |
bond-miimon 100 | |
bond-lacp-rate 1 | |
bond-slaves ens33 ens38 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment