Подключить сервер к сети

2 500 руб. за проект
27 апреля 2024, 02:39 • 2 отклика • 41 просмотр
Необходимо подключить выделенный сервер к сети через IPMI


https://ahelpme.com/linux/how-to-enable-linux-bonding-without-ifenslave/


Bonding Settings

apt update
apt upgrade
apt-get install ifenslave
modprobe bonding
echo 'bonding' | tee -a /etc/modules
nano /etc/network/interfaces

# First interface enp45s0f0
auto enp45s0f0
iface enp45s0f0 inet manual

# Second interface enp45s0f1
auto enp45s0f1
iface enp45s0f1 inet manual

#The Bond Configuration
auto bond0
iface bond0 inet static
address ip
netmask ip
gateway ip
dns-nameservers 1.1.1.1 8.8.8.8
bond-slaves enp45s0f0 enp45s0f1
bond-mode 802.3ad
bond-lacp-rate 1
bond-miimon 100
bond-downdelay 200
bond-updelay 200
bond-xmit-hash-policy layer3+4


after that download ifenslave