"리눅스 본딩 확인"의 두 판 사이의 차이

잔글 (로봇: 자동으로 텍스트 교체 (-<source lang='dos'> +<source lang='cli'>))
잔글 (로봇: 자동으로 텍스트 교체 (-[root@jmnote +[root@zetawiki))
5번째 줄: 5번째 줄:
==방법 1: bondN 파일==
==방법 1: bondN 파일==
<source lang='cli'>
<source lang='cli'>
[root@jmnote ~]# grep -H ^'Slave Interface'  /proc/net/bonding/bond*
[root@zetawiki ~]# grep -H ^'Slave Interface'  /proc/net/bonding/bond*
/proc/net/bonding/bond0:Slave Interface: eth0
/proc/net/bonding/bond0:Slave Interface: eth0
/proc/net/bonding/bond0:Slave Interface: eth1
/proc/net/bonding/bond0:Slave Interface: eth1
16번째 줄: 16번째 줄:
==방법 2: ifcfg-ethN 파일==
==방법 2: ifcfg-ethN 파일==
<source lang='cli'>
<source lang='cli'>
[root@jmnote ~]# grep -H MASTER= /etc/sysconfig/network-scripts/ifcfg-eth*
[root@zetawiki ~]# grep -H MASTER= /etc/sysconfig/network-scripts/ifcfg-eth*
/etc/sysconfig/network-scripts/ifcfg-eth0:MASTER=bond0
/etc/sysconfig/network-scripts/ifcfg-eth0:MASTER=bond0
/etc/sysconfig/network-scripts/ifcfg-eth1:MASTER=bond0
/etc/sysconfig/network-scripts/ifcfg-eth1:MASTER=bond0

2015년 2월 12일 (목) 02:26 판

리눅스 이더넷 bond 확인
리눅스 bonding 확인
리눅스 bonding 정보 수집

1 방법 1: bondN 파일

[root@zetawiki ~]# grep -H ^'Slave Interface'  /proc/net/bonding/bond*
/proc/net/bonding/bond0:Slave Interface: eth0
/proc/net/bonding/bond0:Slave Interface: eth1
/proc/net/bonding/bond1:Slave Interface: eth2
/proc/net/bonding/bond1:Slave Interface: eth3
→ eth0 + eth1 = bond0
→ eth2 + eth3 = bond1

2 방법 2: ifcfg-ethN 파일

[root@zetawiki ~]# grep -H MASTER= /etc/sysconfig/network-scripts/ifcfg-eth*
/etc/sysconfig/network-scripts/ifcfg-eth0:MASTER=bond0
/etc/sysconfig/network-scripts/ifcfg-eth1:MASTER=bond0
/etc/sysconfig/network-scripts/ifcfg-eth2:MASTER=bond1
/etc/sysconfig/network-scripts/ifcfg-eth3:MASTER=bond1
→ eth0 + eth1 = bond0
→ eth2 + eth3 = bond1

3 같이 보기