ifenslave를 통한 channel bonding은
modprobe 시에 mode=0 과 같은 옵션을 주어 수행한다는데..
일단 기본값으로는 0번(round robin)이 되어 있고 다음과 같이 숫자를 주어 다른 모드로 시작할 수 있다.
modprobe 시에 mode=0 과 같은 옵션을 주어 수행한다는데..
일단 기본값으로는 0번(round robin)이 되어 있고 다음과 같이 숫자를 주어 다른 모드로 시작할 수 있다.
# modprobe bonding mode=6 # cat /proc/net/bonding/bond0
Ethernet Channel Bonding Driver: v3.5.0 (November 4, 2008)
Bonding Mode: adaptive load balancing
Primary Slave: None
Currently Active Slave: eth0
MII Status: up
MII Polling Interval (ms): 100
Up Delay (ms): 0
Down Delay (ms): 0
Slave Interface: eth1
MII Status: up
Link Failure Count: 1
Permanent HW addr: 00:00:00:00:00:00
Slave Interface: eth0
MII Status: up
Link Failure Count: 0
Permanent HW addr: 00:00:00:00:00:00 |
만약 작동중에 mode를 변경하고 싶다면
다음과 같이 /sys/class/net/bond0/bonding/mode 파일에 원하는 mode 값을 넣어주면 된다.
다음과 같이 /sys/class/net/bond0/bonding/mode 파일에 원하는 mode 값을 넣어주면 된다.
To configure bond0 for balance-alb mode:
# ifconfig bond0 down
# echo 6 > /sys/class/net/bond0/bonding/mode
- or -
# echo balance-alb > /sys/class/net/bond0/bonding/mode
NOTE: The bond interface must be down before the mode can be changed.
|
'Linux > Ubuntu' 카테고리의 다른 글
Ubuntu 화면 동영상 캡쳐용 프로그램 (0) | 2011.12.20 |
---|---|
여러개의 업링크 / 인터넷 업체를 사용할 경우 라우팅 설정하기 (0) | 2011.12.17 |
ethtool - 리눅스에서 네트워크 링크 상태 / 속도 확인하기 (0) | 2011.12.11 |
ubuntu motd (0) | 2011.12.11 |
ubuntu gdm 자동시작 하지 않도록 설정하기 (disable gdm startup) (0) | 2011.12.11 |