문서 보기이전 판역링크맨 위로 이 문서는 읽기 전용입니다. 원본을 볼 수는 있지만 바꿀 수는 없습니다. 문제가 있다고 생각하면 관리자에게 문의하세요. {{tag>[linux RHEL bond bonding team teaming]}} ====== bond ====== ===== Example ===== ++++ bond 구성(eth0, eth1 -> bond0) | ''/etc/sysconfig/network/script'' <file text ifcfg-bond0)> DEVICE=bond0 BOOTPROTO=none onBOOT=yes BOOTPROTO=static IPADDR=10.10.10.11 NETMASK=255.255.255.0 GATEWAY=10.10.10.1 </file> * ''BONDING_OPTS="mode=1 miimon=100 primary=eht0'': Active-Standby 설정시 Active 인터페이스 설정 <file text ifcfg-eth0> DEVICE=eth0 BOOTPROTO=none onBOOT=yes MASTER=bond0 SLAVE=yes </file> <file text ifcfg-eth1> DEVICE=eth1 BOOTPROTO=none onBOOT=yes MASTER=bond0 SLAVE=yes </file> ''/etc/modprobe.d/'' <file text bonding.conf> alias bond0 bonding options bond0 mode=4 miimon=100 </file> * ''mode=0'': (default) Round Robin 방식 * ''miimon=100'': 링크 확인 시간(ms) 0은 인터페이스 상태 체크 안함. -> fail over 발생 <code bash> modprobe bonding # 모듈 적재 </code> ++++ ++++ 본드 인터페이스를 게이트웨이로 설정 | ''/etc/sysconfig/'' <file text network> # ... GATEDEV=bond0 </file> 네트워크 다시 시작 필요 ++++ ++++ 본드 확인 | <konsole> cat /proc/net/bonding/bond0 </konsole> /home/u613600155/domains/cli.zerotymer.net/public_html/data/pages/linux/rhel/bond.txt 마지막으로 수정됨: 2023/12/30 15:01저자 writer