查看网卡数量
#ifconfig -a|grep eth
第一步:配置网卡配置
#cd /etc/sysconfig/network-scripts/
#vi ifcfg-eth0
DEVICE=eth0
ONBOOT=yes #系统启动时自动启用该设备
BOOTPROTO=none #启动时不使用任何协议
#vi ifcfg-eth1
DEVICE=eth1
ONBOOT=yes #系统启动时自动启用该设备
BOOTPROTO=none #启动时不使用任何协议
#vi ifcfg-bond0
DEVICE=bond0 #虚拟网卡名称
BOOTPROTO=static
IPADDR=10.141.8.130 #IP地址
NETMASK=255.255.255.0 #子网掩码
GATEWAY=10.141.8.254 #网关
ONBOOT=yes
TYPE=Ethernet
第二步:配置绑定模式
#cd /etc/modprobe.d/
#vi dist.conf
在后面加入 mode=0是负载模式,mode=1是主备模式
alias bond0 bonding
options bond0 miimon=100 mode=1
第三步:设置开机自动配置双网卡绑定
#vi /etc/rc.local
加入:
ifenslave bond0 eth0 eth1
第四步:重启网络设置
#service network
第五步:关闭Linux防火墙:
执行 service iptables stop
执行 chkconfig iptables off (重启后不启动)
第六步:重启服务器
reboot
第七步:停止守护进程(注:一般操作到第六步后即可实现双网卡绑定。如果没有生效,可以尝试以下步骤!)
#service NetworkManager stop
#chkconfig NetworkManager off
将NM_CONTROLLED改为no。
查看Selinux状态
1、/usr/sbin/sestatus -v 如果SELinux status参数为enabled 即为开启状态
关闭 SELinux:
1、临时关闭(不用重启机器)
Setenforce 0 ##设置SELinux成为permissive模式
Setenforce 1 ##设置SELinux成为enforcing模式
2、修改配置文件需要重启机器
修改 /etc/selinux/config 文件
将SELINUX=enfocring改为SELINUX=disables
配置完成后机器重启再次验证
ethtool 网卡驱动 来显示网卡信息