Xen implements paravirtualization to allow for software partitioning.
Xen is an hypervisor that allows running several partitions, called “domains”. Each domain is totally independent, virtualized and solated by the Xen hypervisor, which controls access to the hardware and shares the physical resources among all running domains.
There are two domain classes:
- Privileged domain: has some limited access to the hardware, and is used to provide for virtual driver support for all the non-privileged domains. There can only be one privileged domain running on a machine at any time and its called “domain0”.
For example, the privileged domain has access to the video frame buffer and can run an accelerated X server, and has limited access to real devices, like eth0, hda, and so on.
- Unprivileged domain: has no direct hardware access, and all the I/O operations are virtualized by using virtual devices, like the virtual block device or virtual network device, which are in turn hooked to the privileged domain. There can be as many unprivileged domains as system resources allow for.
Unprivileged domains don’t have a video frame buffer and, thus, all GUI support must get implented using software like VNCserver or FreeNX, then remotely controlling the session from another domain or machine.
Xen selects a random hardware MAC address if not specifically told to use a particular one. This causes problems with networking since the MAC address for the domain virtual interface (called vif) changes between domain reboots and switches and computers keep the corresponding entry on their ARP caches for a few minutes.
Let be A a virtual unprivileged domain running under Xen’s control. After A has started, any other domain or real machine, will be unable to talk to A until the moment A forces an ARP cache update by sending out a packet (for example, an ICMP packet).
I see two solutions to this problem:
- When domain A starts, it initiates an ARP cache refresh of other domains or machines.
This can be achieved by sending a gratuitious ARP cache on interface wakeup, which not every Linux distribution does, or send some ICMP echo request packets to force sending ARP requests. This can be easily implemented in init scripts.
- Forcing domain A to use a fixed MAC address.
This can be achieved by using the following line in A domain configuration file:
vif = [ 'mac = XX:XX:XX:XX:XX:XX' ]
The latter solution is the easiest and, usually, the preferred one.
NOTE: This also covered in the Xen FAQ.
Love the sunset pics from Bali.it makes me feel that there is always a hope
There isn’t anything that you can do to get into a trial if the sites don’t accept your dad. You should ask your dad’s oncologist about using some of the 2nd line hormone blocks before going to chemo. Is he on zometa to make his bones less hospitable to further bone met development?
Joel