suse15sp2配置双网卡绑定
时间: 2024-10-12 09:14:02 浏览: 33
SUSE Linux Enterprise 15 SP2 配置双网卡绑定(通常称为网络负载均衡或者Bonding)主要是为了提高系统的可用性和带宽利用率。以下是在SLES 15 SP2上设置bonding的一般步骤:
1. **安装必要的软件包**:
```sh
zypper install net-tools bonding kernel-module-bonding
```
2. **创建bonding设备**:
编辑 `/etc/sysconfig/network-scripts` 文件夹下的 `ifcfg-ethX` (X为你的网卡编号),比如 `ifcfg-ens33` 和 `ifcfg-ens34`。然后为它们添加bonding信息,例如:
```
DEVICE=ens33
ONBOOT=yes
TYPE=bond
BONDING_MODE=balance-rr # round-robin模式,其他还有active-backup等
DEVICE=ens34
ONBOOT=yes
SLAVE=yes
```
创建一个新的配置文件,如 `ifcfg-bond0` 或 `ifcfg-bond1`,用于管理主bond设备:
```
NAME=bond0
DEVICE=bond0
ONBOOT=yes
MASTER=ens33
SLAVE=ens34
```
3. **启用并激活bonding**:
```sh
systemctl restart network
```
4. **验证设置**:
使用 `ip addr show` 或 `ethtool` 命令检查新的bond设备是否已正确配置。
阅读全文