RHEL 5.11
재부팅 명령을 실행합니다./etc/init.d/networking restart
그런 다음 강제로 종료해야 할 때까지 그대로 유지됩니다.
15:09:11 # /etc/init.d/network restart
Shutting down interface bond0:
상태:
15:08:40 # /etc/init.d/network status
Configured devices:
lo bond0 eth0 eth1 eth2 eth3
Currently active devices:
lo eth0 eth1 eth2 eth3 bond0
유일한 변경 사항은 ifcfg-bond0
세 개의 새로운 하위 인터페이스에 복사한 것 입니다 bond0:0
.bond0:1
bond0:2
답변1
/etc/modprobe.conf
바인딩 모듈을 로드하려면 다음을 편집해야 합니다 .
vi /etc/modprobe.conf
다음 줄을 추가하세요
alias bond0 bonding
alias bond1 bonding
이더넷 인터페이스 구성(프로필 4개)
vi /etc/sysconfig/network-scripts/ifcfg-ethX
다음 예와 같습니다.
DEVICE=ethX
USERCTL=no
ONBOOT=yes
MASTER=bond0
SLAVE=yes
BOOTPROTO=none
, ... ethX
로 교체eth0
eth3
바인딩 구성
두 개의 본드 인터페이스 bond0(eth0 및 eth2) 및 bond1(eth1, eth3)을 생성해야 합니다.
/etc/sysconfig/network-scripts
이더넷 인터페이스와 동일한 경우에 bond0 및 bond1 스크립트를 생성합니다.
touch /etc/sysconfig/network-scripts/ifcfg-bond0
touch /etc/sysconfig/network-scripts/ifcfg-bond1
유형:vi /etc/sysconfig/network-scripts/ifcfg-bond0
이와 같이:
DEVICE=bond0
BOOTPROTO=none
ONBOOT=yes
USERCTL=no
BONDING_OPTS=”max_bonds=2 miimon=100 mode=2 primary=eth0″
NETMASK=255.255.255.0
IPADDR=192.168.0.1
편집하다bond1
vi /etc/sysconfig/network-scripts/ifcfg-bond1
다음 예와 같습니다.
DEVICE=bond1
BOOTPROTO=none
ONBOOT=yes
TYPE=Ethernet
USERCTL=no
BONDING_OPTS=”max_bonds=2 miimon=100 mode=2 primary=eth1″
NETMASK=255.255.255.0
IPADDR=192.168.0.2
초기화 다시 시작
/etc/init.d/network restart
답변2
당신은 그것을 사용할 수 있습니다 :
/etc/init.d/networking force-reload