type 속성이 network인 <interface>는 시스템에 설치된 네트워크 인터페이스를 정의합니다. <mac address>에서 네트워크 어댑터에 부여된 하드웨어 주소를 확인할 수 있습니다. <source>에는 가상 게스트의 네트워크 인터페이스가 연결되어 있는 가상 네트워크를 지정합니다.
... <interface type='network'> <mac address='52:54:00:ad:cc:fb'/> <source network='default'/> <model type='virtio'/> <address type='pci' domain='0x0000' bus='0x01' slot='0x00' function='0x0'/> </interface> ...
네트워크 인터페이스 외에도 <devices>에는 마우스(mouse)와 키보드(keyboard)를 비롯한 입력 장치 <input>과 사운드 장치 <sound>, 비디오 어댑터 <video>가 정의되어 있습니다. 확인이 끝나면 편집기를 종료하고 명령 프롬프트로 나갑니다.
... <input type='mouse' bus='ps2'/> <input type='keyboard' bus='ps2'/> <graphics type='spice' autoport='yes'> <listen type='address'/> <image compression='off'/> </graphics> <sound model='ich9'> <address type='pci' domain='0x0000' bus='0x00' slot='0x1b' function='0x0'/> </sound> <video> <model type='qxl' ram='65536' vram='65536' vgamem='16384' heads='1' primary='yes'/> <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x0'/> </video> ... </devices> </domain>