博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ubuntu双网卡bonding配置(转)
阅读量:6281 次
发布时间:2019-06-22

本文共 337 字,大约阅读时间需要 1 分钟。

1.安装软件 

apt-get install ifenslave

 

2.修改配置文件 

/etc/network/interfaces 
auto lo 
iface lo inet loopback

iface eth0 inet dhcp 

iface eth1 inet dhcp

auto bond0 

iface bond0 inet static 
address 64.0.177.20 
netmask 255.255.255.0 
gateway 64.0.177.254 
up ifenslave bond0 eth0 eth1 
down ifenslave -d bond0 eth0 eth1

 

3.加载模块 

vi /etc/modules 
bonding

 

完成!

转自 

转载地址:http://pkiva.baihongyu.com/

你可能感兴趣的文章
用“ICET”轻松诊断 Windows 7 网络连接高级功能
查看>>
在MPAndroidChart库K线图的基础上画均线
查看>>
Gradle 1.12用户指南翻译——第四十四章. 分发插件
查看>>
查询远程或本地计算机的登录账户
查看>>
chk cloud
查看>>
asp.net事件顺序
查看>>
即时数据模块设计 版本V2
查看>>
CCNP-6 OSPF试验2(BSCI)
查看>>
Excel 2013 全新的图表体验
查看>>
openstack 制作大于2TB根分区自动扩容的CENTOS镜像
查看>>
Unbuntu安装遭遇 vmware上的Easy install模式
查看>>
几个常用的ASP木马
查看>>
python分析postfix邮件日志的状态
查看>>
Mysql-5.6.x多实例配置
查看>>
psutil
查看>>
在git@osc上托管自己的代码
查看>>
机器学习算法:朴素贝叶斯
查看>>
小五思科技术学习笔记之扩展访问列表
查看>>
使用Python脚本检验文件系统数据完整性
查看>>
使用MDT部署Windows Server 2003 R2
查看>>