각 컨테이너가 고유한 개인 IP 주소를 가질 수 있도록 각 LXC 컨테이너에 대한 네트워크 인터페이스를 설정하는 방법을 알려주실 수 있는 분이 계십니까?
/etc/network/interfaces
내 호스트 노드의 파일은 다음과 같습니다.
# Generated by SolusVM
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet static
address 160.201.10.167
gateway 160.201.8.1
netmask 255.255.252.0
dns-nameservers 8.8.8.8 8.8.4.4
auto eth0:0
iface eth0:0 inet static
address 160.201.8.32
gateway 160.201.8.1
netmask 255.255.252.0
dns-nameservers 8.8.8.8 8.8.4.4
auto eth0:1
iface eth0:1 inet static
address 160.201.8.36
gateway 160.201.8.1
netmask 255.255.252.0
dns-nameservers 8.8.8.8 8.8.4.4
auto eth0:2
iface eth0:2 inet static
address 160.201.8.37
gateway 160.201.8.1
netmask 255.255.252.0
dns-nameservers 8.8.8.8 8.8.4.4
내 LXC 컨테이너 구성 파일은 다음과 같습니다.
lxc.include = /usr/share/lxc/config/ubuntu.common.conf
lxc.rootfs = /var/lib/lxc/francis/rootfs
lxc.mount = /var/lib/lxc/francis/fstab
lxc.utsname = francis
lxc.arch = amd64
lxc.network.type = veth
lxc.network.flags = up
lxc.network.link = eth0
lxc.network.hwaddr = 00:16:3e:de:53:6f
lxc.network.ipv4 = 160.201.8.32
lxc.cgroup.memory.limit_in_bytes = 256M
lxc.cgroup.memory.memsw.limit_in_bytes = 256M
예를 들어, "프란시스" 컨테이너에 자체 공용 IP 주소를 제공하는 방법을 알려주실 수 있는 분 계신가요 160.201.8.32
?
내 호스트 노드는 Ubuntu 14.04 Server를 실행하고 있습니다.