2016-11-09 9 views
-1

PXE VM 설정에 문제가 있습니다. DHCP 요청을 보내고 서버가 응답을 보내고 있지만 VM이 응답을 처리하지 않는 것 같습니다. 나는 그 원인을 확신하지 못합니다.libvirt 호스트에서 DHCP가 실패합니다.

나는 물리적 인 기계가 동일한 DHCP와 PXE 설정으로 잘 작동하고 DHCP 요청과 응답이 VM과 동일하다는 것을 확인했다.

DHCP 서버는 MaaS에서 제공하며 호스트에 있습니다.

다음은 오류의 이미지입니다. DHCP 요청이

auto br0 
iface br0 inet static 
    address 192.168.10.2 
    network 192.168.10.0 
    broadcast 192.168.10.255 
    netmask 255.255.255.0 
    gateway 192.168.10.1 
    dns-nameservers 192.168.10.2 
    bridge_ports bond0 
    bridge_stp off 
    bridge_fd 0 
    bridge_maxwait 0 


auto bond0 
iface bond0 inet manual 
    mtu 1500 
    bond-miimon 100 
    bond-downdelay 200 
    bond-updelay 200 
    bond-mode 0 
    bond-slaves none 
    post-up ifenslave bond0 eno1 eno2 eno3 eno4 
    pre-down ifenslave bond0 eno1 eno2 eno3 eno4 
... 

:

error

VM이 함께 생성되어 같은 virt-install --name=maas-node-1 --connect=qemu:///system --ram=15360 --vcpus=8 --hvm --virt-type=kvm --pxe --boot network,hd --os-variant=ubuntu16.04 --graphics vnc --os-type=linux --accelerate --disk=/var/lib/libvirt/images/maas-node-1.qcow2,bus=virtio,format=qcow2,cache=none,sparse=true,size=60 --network=bridge:br0,model=virtio

네트워크가 구성된

steel.maas.bootpc > 255.255.255.255.bootps: [udp sum ok] BOOTP/DHCP, Request from 18:03:73:f8:ea:c9 (oui Unknown), length 257, xid 0xf97e014f, Flags [Broadcast] (0x8000) 
     Client-Ethernet-Address 18:03:73:f8:ea:c9 (oui Unknown) 
     Vendor-rfc1048 Extensions 
     Magic Cookie 0x63825363 
     DHCP-Message Option 53, length 1: Discover 
     Client-ID Option 61, length 6: ieee1394 03:73:f8:ea:c9 
     Parameter-Request Option 55, length 3: 
      Default-Gateway, Subnet-Mask, Domain-Name-Server 

DHCP의 응답은 다음

,174,
steel.maas.bootps > 255.255.255.255.bootpc: [udp sum ok] BOOTP/DHCP, Reply, length 300, xid 0xf97e014f, Flags [Broadcast] (0x8000) 
     Your-IP steel.maas 
     Server-IP steel.maas 
     Client-Ethernet-Address 18:03:73:f8:ea:c9 (oui Unknown) 
     file "pxelinux.0" 
     Vendor-rfc1048 Extensions 
     Magic Cookie 0x63825363 
     DHCP-Message Option 53, length 1: Offer 
     Server-ID Option 54, length 4: steel.maas 
     Lease-Time Option 51, length 4: 600 
     Subnet-Mask Option 1, length 4: 255.255.255.0 
     Default-Gateway Option 3, length 4: 192.168.10.1 
     Domain-Name-Server Option 6, length 4: steel.maas 

답변