본문 바로가기
  • AI (Artificial Intelligence)
Skills/Unix, Linux

linux 브릿지 설정 brctl

by 로샤스 2014. 7. 29.

리눅스에서 브리지를 추가하는 명령어이다.
사용법은 다음과 같다.

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












댓글