LXC로 bridge 연결
개요
ArchLinux 설치 스크립트를 만들었습니다 - Qiita을 사용하여 설치했습니다.
네트워크 설정
bond0
/etc/netctl/bond0
Description='Bond0 Interface'
Interface='bond0'
Connection=bond
BindsToInterfaces=(enp3s0f0)
/etc/modprobe.d/bonding.conf
options bonding miimon=100
options bonding mode=active-backup
netctl enable bond0
br0
/etc/netctl/br0
Interface=br0
Connection=bridge
BindsToInterfaces=(bond0)
IP=static
Address=('192.168.100.2/24')
Gateway='192.168.100.1'
DNS=('8.8.8.8' '8.8.4.4')
netctl enable br0
다시 시작합니다.
lxc
lxc-create -n centos7 -t centos -- -R 7
/var/lib/lxc/centos7/config
lxc.network.type = veth
lxc.network.flags = up
lxc.network.link = br0
lxc.network.ipv4 = 192.168.100.4/24
lxc.network.ipv4.gateway = 192.168.100.1
lxc.network.name = eth0
lxc-start -n centos7
lxc-attach -n centos7
인터넷에 나올 수 있는지 확인.
br1 추가
br1을 만들고 다음을 추가하면 갈 수 있습니까?
/var/lib/lxc/centos7/config
lxc.network.type = veth
lxc.network.flags = up
lxc.network.link = br1
lxc.network.ipv4 = 192.168.0.4/24
lxc.network.name = eth1
Reference
이 문제에 관하여(LXC로 bridge 연결), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/tukiyo3/items/510307e76e199e64b588텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)