KVM Notes: Difference between revisions

From MikroTik Wiki
Jump to navigation Jump to search
m (spelling ....)
 
(12 intermediate revisions by 2 users not shown)
Line 5: Line 5:


====Choosing hardware====
====Choosing hardware====
When selecting hardware check if it really supports virtualization as that is required for KVM to work. Double check corresponding settings in BIOS, if it is enabled, if it still does not work - check weather motherboard BIOS upgrade is available.
When selecting hardware check if it really supports virtualization as that is required for KVM to work. Double check corresponding settings in BIOS, if it is enabled, if it still does not work - check whether motherboard BIOS upgrade is available.


list of CPUs supporting virtualization:
list of CPUs supporting virtualization:
Line 18: Line 18:


Correct setting for multi CPU support is <em>kernel="/boot/vmlinuz-smp"</em>
Correct setting for multi CPU support is <em>kernel="/boot/vmlinuz-smp"</em>
====Migrating from XEN to KVM====
When changing to newer RouterOS eventually you will have to migrate from XEN to KVM, to do that you will have to reinstall your RouterOS completely to remove XEN package. Even when you remove XEN package, there are some residual files left that cannot be removed in any other way but through re-installation of host system as these files will prevent KVM to work.
====Packet flow====
from one RouterOS KVM guest to another packets will always go through RouterOS host system.


====Performance considerations====
====Performance considerations====
When planning using KVM guests, consider that host system will have to handle all the packets that are passing through, so still, host systems ''packets per second'' is important.
When planning using KVM guests, consider that host system will have to handle all the packets that are passing through, so still, host systems ''packets per second'' is important.
====XEN and KVM on same host====
If you have situation that XEN and KVM are both installed in same router only way to correct the problem is reinstall the router without XEN package.


==See also==
==See also==
[[Kvm]]
* [[M:Virtualization | Virtualization in general]]
* [[M:KVM | KVM]]
 
 
[[Category:Virtualization]]

Latest revision as of 10:41, 24 November 2011

Summary

This document contains useful notes from user experience.

Notes

Choosing hardware

When selecting hardware check if it really supports virtualization as that is required for KVM to work. Double check corresponding settings in BIOS, if it is enabled, if it still does not work - check whether motherboard BIOS upgrade is available.

list of CPUs supporting virtualization: Wikipedia about virtualization support on x86 CPUs

In short: If buying Intel CPU double-check if you are getting correct model, if AMD, all new CPUs will support virtualization.

KVM guest multi CPU

When using RouterOS os primary OS on the router changing /system hardware settings will change kernel that is loaded at boot time effectively enabling or disabling SMP support in RouterOS. But using this setting in KVM guest does not work as intended, because in KVM guest configuration user can explicitly point what kernel to use, default setting is kernel="/boot/vmlinuz" that loads guest with non-SMP kernel.

Correct setting for multi CPU support is kernel="/boot/vmlinuz-smp"

Migrating from XEN to KVM

When changing to newer RouterOS eventually you will have to migrate from XEN to KVM, to do that you will have to reinstall your RouterOS completely to remove XEN package. Even when you remove XEN package, there are some residual files left that cannot be removed in any other way but through re-installation of host system as these files will prevent KVM to work.

Packet flow

from one RouterOS KVM guest to another packets will always go through RouterOS host system.

Performance considerations

When planning using KVM guests, consider that host system will have to handle all the packets that are passing through, so still, host systems packets per second is important.

XEN and KVM on same host

If you have situation that XEN and KVM are both installed in same router only way to correct the problem is reinstall the router without XEN package.

See also