您好,登錄后才能下訂單哦!
這篇文章主要介紹Linux系統如何配置雙網卡綁定,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
系統版本
[root@ ~]# cat /etc/redhat-release CentOS release 6.8 (Final) [root@ ~]# uname -r 2.6.32-642.6.1.el6.x86_64
網卡說明
eth0 192.168.1.8(服務器外網卡)
eth2
eth3
兩塊服務器網卡(內網)
關閉防火墻
[root@ ~]# /etc/init.d/iptables stop [root@ ~]# chkconfig iptables off
關閉selinux
[root@ ~]#setenforce 0 [root@ ~]#sed -i ‘s/SELINUX=enforcing/SELINUX=disabled/‘ /etc/selinux/config
禁用NetworkManager
[root@ ~]# /etc/init.d/NetworkManager stop Stopping NetworkManager daemon: [ OK ] [root@ ~]# chkconfig NetworkManager off [root@ ~]# /etc/init.d/network restart
編輯eth2網卡
[root@ ~]# cd /etc/sysconfig/network-scripts/ [root@ network-scripts\]# cat >ifcfg-eth2 <<EOF DEVICE=eth2 ONBOOT=yes BOOTPROTO=none USERCTL=no MASTER=bind0 EOF
編輯eth3網卡
[root@ network-scripts]# cat >ifcfg-eth3 <<EOF DEVICE=eth3 ONBOOT=yes BOOTPROTO=none USERCTL=no MASTER=bind0 EOF
編輯bind0網卡
[root@ network-scripts]# cat >ifcfg-bind0 <<EOF DEVICE=bind0 TYPE=Ethernet ONBOOT=yes BOOTPROTO=none IPADDR=10.0.0.8 NETMASK=255.255.255.0 GATEWAY=10.0.0.254 IPV6INIT=no USERCTL=no EOF
配置bond參數
[root@ network-scripts]# cat >/etc/modprobe.conf <<EOF alias bind0 bonding options bind0 miimon=100 mode=6 EOF
加入開機自啟動(/etc/rc.local)
[root@ network-scripts]# cat >>/etc/rc.local <<EOF ifenslave bind0 eth2 eth3 EOF
重啟網絡服務
[root@LVS-2 network-scripts]# service network restart Shutting down interface eth0: [ OK ] Shutting down interface eth2: [ OK ] Shutting down interface eth3: [ OK ] Shutting down loopback interface: [ OK ] Bringing up loopback interface: [ OK ] Bringing up interface bind0: WARNING: Deprecated config file /etc/modprobe.conf, all config files belong into /etc/modprobe.d/. WARNING: Deprecated config file /etc/modprobe.conf, all config files belong into /etc/modprobe.d/. Determining if ip address 10.0.0.8 is already in use for device bind0..[ OK ] Bringing up interface eth0: Determining if ip address 192.168.1.8 is already in use for device eth0... [ OK ] Bringing up interface eth2: RTNETLINK answers: File exists [ OK ] Bringing up interface eth3: RTNETLINK answers: File exists [ OK ]
配置使綁定立即生效
[root@LVS-2 network-scripts]# ifenslave bind0 eth2 eth3
測試聯通
[root@LVS-2 network-scripts]# ping 10.0.0.8 PING 10.0.0.8 (10.0.0.8) 56(84) bytes of data. 64 bytes from 10.0.0.8: icmp_seq=1 ttl=64 time=0.089 ms 64 bytes from 10.0.0.8: icmp_seq=2 ttl=64 time=0.046 ms ^C --- 10.0.0.8 ping statistics --- 2 packets transmitted, 2 received, 0% packet loss, time 1921ms rtt min/avg/max/mdev = 0.046/0.067/0.089/0.023 ms
此時會發現系統多一個網卡
[root@LVS-2 network-scripts]# ifconfig bind0 bind0 Link encap:Ethernet HWaddr 00:0C:29:CC:9B:5 inet addr:10.0.0.8 Bcast:10.0.0.255 Mask:255.255.255.0 inet6 addr: fe80::20c:29ff:fecc:9b55/64 Scope:LinkUP BROADCAST RUNNING MASTER MULTICAST MTU:1500 Metric:1 RX packets:151 errors:0 dropped:0 overruns:0 frame:0 TX packets:3 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:0 RX bytes:11826 (11.5 KiB) TX bytes:258 (258.0 b)
以上是Linux系統如何配置雙網卡綁定的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。