单网卡配置
以配置eth0为例
vim /etc/network/interfaces //添加如下内容
auto eth0
allow-hotplug eth0
iface eth0 inet static
address 192.168.1.100
netmask 255.255.255.0
pre-up ip addr flush dev $IFACE
重启网络服务/etc/init.d/networking restart
检查ip是否生效ifconfig
bond配置
凝思80系统bonding功能ifenslave
版本需要2.9及以上dpkg -l | grep ifenslave
//查看 ifenslave
配置bonding模块开机加载echo "bonding" >> /etc/modules
update-initramfs -u
//更新内核
配置bonding模块
vim /etc/modprobe.d/bonding.conf
options bonding mode=1 max_bonds=2 miimon=100 downdelay=200 updelay=200 primary=eth0
修改配置文件,以bond0使用eth0和eth2网口为例
vim /etc/network/interfaces //添加如下内容
auto bond0
allow-hotplug bond0
iface bond0 inet static
address 192.168.1.100
netmask 255.255.255.0
pre-up ip addr flush dev $IFACE
up ifenslave bond0 eth0 eth2
down ifenslave -d bond0 eth0 eth2
重启网络服务/etc/init.d/networking restart
检查ip是否生效ifconfig
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。