"리눅스 본딩 2개 구성 (다른 게이트웨이 사용)"의 두 판 사이의 차이

잔글 (conf 문법 강조)
잔글 (봇: 자동으로 텍스트 교체 (-==참고 자료== +==참고==))
 
109번째 줄: 109번째 줄:
<references/>
<references/>


==참고 자료==
==참고==
*http://snoopybox.co.kr/1730
*http://snoopybox.co.kr/1730
*http://www.sohailriaz.com/howto-add-multiple-bonding-interface/
*http://www.sohailriaz.com/howto-add-multiple-bonding-interface/

2017년 7월 11일 (화) 04:17 기준 최신판

1 개요[ | ]

리눅스 본딩 2개 구성 (다른 게이트웨이 사용)
  • eth0 + eth1 → bond0
  • eht2 + eth3 → bond1
  • bond0과 bond1이 다른 게이트웨이를 사용하는 경우
  • 아래 파일들 참고하여 설정

2 /etc/modprobe.d/bonding.conf[ | ]

  • 다음 내용으로 파일 생성[1]
alias bond0 bonding
alias bond1 bonding

3 /etc/sysconfig/network-scripts/ifcfg-eth0[ | ]

DEVICE=eth0
MASTER=bond0
SLAVE=yes
ONBOOT=yes
BOOTPROTO=none
USERCTL=no
NM_CONTROLLED=no

4 /etc/sysconfig/network-scripts/ifcfg-eth1[ | ]

DEVICE=eth1
MASTER=bond0
SLAVE=yes
ONBOOT=yes
BOOTPROTO=none
USERCTL=no
NM_CONTROLLED=no

5 /etc/sysconfig/network-scripts/ifcfg-eth2[ | ]

DEVICE=eth2
MASTER=bond1
SLAVE=yes
ONBOOT=yes
BOOTPROTO=none
USERCTL=no
NM_CONTROLLED=no

6 /etc/sysconfig/network-scripts/ifcfg-eth3[ | ]

DEVICE=eth3
MASTER=bond1
SLAVE=yes
ONBOOT=yes
BOOTPROTO=none
USERCTL=no
NM_CONTROLLED=no

7 /etc/sysconfig/network-scripts/ifcfg-bond0[ | ]

DEVICE=bond0
IPADDR=192.168.0.101
NETMASK=255.255.255.0
GATEWAY=192.168.0.1
DNS1=8.8.8.8
DNS2=8.8.4.4
BONDING_OPTS="mode=1 miimon=100"
ONBOOT=yes
BOOTPROTO=none
USERCTL=no
NM_CONTROLLED=no

8 /etc/sysconfig/network-scripts/ifcfg-bond1[ | ]

DEVICE=bond1
IPADDR=10.10.0.101
NETMASK=255.255.255.0
BONDING_OPTS="mode=1 miimon=100"
ONBOOT=yes
BOOTPROTO=none
USERCTL=no
NM_CONTROLLED=no

9 /etc/sysconfig/network-scripts/route-bond1[ | ]

10.10.0.0/16 via 10.10.0.1 dev bond1

10 네트워크 재시작[ | ]

[root@zetawiki ~]# /etc/init.d/network restart
Shutting down interface bond0:                             [  OK  ]
Shutting down interface bond1:                             [  OK  ]
Shutting down loopback interface:                          [  OK  ]
Bringing up loopback interface:                            [  OK  ]
Bringing up interface bond0:                               [  OK  ]
Bringing up interface bond1:                                [  OK  ]

11 같이 보기[ | ]

12 주석[ | ]

  1. bonding.conf 파일 생성하지 않고 /etc/modprobe.conf 하단에 기입해도 되지만 권장되지 않음

13 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}