리눅스에서 브리지를 추가하는 명령어이다.
사용법은 다음과 같다.
eth0와 eth1을 br0로 묶는 방법이다.
1. #brctl addbr br0 : br0 인터페이스를 추가한다.
2. #brctl addif eth0 : eth0 추가
3. #brctl addif eth1 : eth1 추가
4. #ifconfig eth0 0.0.0.0 : eth0 down
5. #ifconfig eth1 0.0.0.0 : eth1 down
6. #ifconfig br0 10.10.10.10 netmask 255.255.255.0
설정 완료
7. sysctl -a | grep forward : forward 설정 확인
8. sysctl -w 항목=1 : forward enable
ifcfg 파일 설정
9. ifcfg-br0
DEVICE=br0
ONBOOT=on
TYPE=Bridge
BOOTPROTO=static
IPADDR=10.10.10.10
NETMASK=255.255.255.0
USRCTL=no
10. ifcfg-eth0
DEVICE=eth5
HWADDR=00:30:DB:43:62:1B
ONBOOT=yes
BOOTPROTO=none
BRIDGE=br0
USRCTL=no
11. DEVICE=eth1
HWADDR=00:30:DB:43:62:1C
ONBOOT=yes
BOOTPROTO=none
BRIDGE=br0
USRCTL=no
출처 : http://siamdaarc.tistory.com/107
'Skills > Unix, Linux' 카테고리의 다른 글
Configure Linux Virtual Local Area Network (VLAN) (0) | 2014.07.31 |
---|---|
Linux VLAN configuration (0) | 2014.07.31 |
Wireshark 설치하기 (0) | 2014.07.14 |
Device eth0 does not seem to be present, delaying initialization (1) | 2014.07.09 |
[강추]리눅스 스태틱 라우팅 설정 (0) | 2014.07.03 |
댓글