LXC로 bridge 연결

3019 단어 archLinuxlxc

개요





  • 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
    

    좋은 웹페이지 즐겨찾기