QEMU 2 as a versatile virtualization platform

QEMU for Advance Users

As with comparable virtualization solutions, the guest and host can establish reciprocal network connections. But, of course, this also works between guests, assuming you are running multiple instances. All you need to do to accomplish this is to configure the virtual network card with the -net nic option:

qemu-system-x86_64 first_instance.img -net nic

The info network command lets you retrieve information about the instance's VLANs and the matching devices, as in the following example:

(qemu) info network
VLAN 0 devices: user.0: net=10.0.2.0, restricted=ne1000.0: model=e1000,mac-addr=44:55:00:12:34:56

QEMU has an integrated DHCP server, which supports automatic network configuration of the guest systems on the user mode network stack. For example, all network-capable guest operating systems can establish an external connection immediately after provisioning. If you enable the -net nic -net user options, this gives you an internal DHCP server (10.0.2.2) and a DNS server (10.0.2.3) on the internal network (10.0.2.0).

Another special feature of QEMU 2 is its support for live migration, which involves transferring running virtual machines from one host system to another. The QEMU developers recommend using an identical hardware configuration on the source and target systems.

A live migration comprises three steps. First, you need to execute the source instance on the source host. Second, you start a new instance on the target host using the same parameters. The important thing to remember here is to use the -incoming tcp:ip:port option. Third, you need to run the migrate -d tcp:ip:port command in QEMU Monitor on the source host.

Conclusions

QEMU 2 gives users an excellent virtualization environment that does justice to even the strictest requirements for stability and flexibility. The program impresses in particular in performance, with another bonus in the comprehensive documentation on the project website.

Buy this article as PDF

Express-Checkout as PDF
Price $2.95
(incl. VAT)

Buy Linux Magazine

SINGLE ISSUES
 
SUBSCRIPTIONS
 
TABLET & SMARTPHONE APPS
Get it on Google Play

US / Canada

Get it on Google Play

UK / Australia

Related content

  • KVM

    KVM brings the kernel into the virualization game. We’ll explain why the Linux world is so interested in this promising virtualization alternative.

  • QEMU and Qemu Manager

    Carry a virtual Linux machine with you wherever you go.

  • QEMU System Emulation

    Do you ever wish you could run Linux within Linux? Or how about DOS within Linux? QEMU is an open source application that lets you emulate a complete hardware environment within your Linux system.

  • Qemu Flaw Lets the Guest Escape

    Xen project announces a privilege escalation problem for Qemu host systems

  • KVM Front Ends

    If you want to care for a zoo full of exotic KVM guest systems on your desktop, you could use a little help from a graphical front end.

comments powered by Disqus
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters

Support Our Work

Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.

Learn More

News