-
Notifications
You must be signed in to change notification settings - Fork 2
/
libvirt-cim.conf
57 lines (52 loc) · 2.21 KB
/
libvirt-cim.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#
# libvirt-cim config file
#
# This config file is based on the libconfig format. For more information,
# please check http://www.hyperrealm.com/libconfig/
#
# readonly (boolean)
# Defines if connection to libvirt is read-only or not
# Possible values: {true,false}
# Default value: false
#
# readonly = false;
# migrate_ssh_temp_key (string)
# Defines a temp key file which would be used as ssh key in ssh migration,
# Only when it is set, following methods in VirtualSystemMigrationService
# could be used:
# 1 MigrateSSHKeyCopy, use string property [SSH_Key_Src] to tell which key
# to be copied. It will be copied to [migrate_ssh_temp_key].
# 2 MigrateVirtualSystemToHost and CheckVirtualSystemIsMigratableToHost,
# use bool property [MigrationWithoutRootKey], to tell whether to use the key
# as [migrate_ssh_temp_key].
# 3 MigrateSSHKeyDelete, when it is called [migrate_ssh_temp_key] will be
# deleted.
# Note: migrate_ssh_temp_key must be set in a directory completely owned by
# root from bottom to top, such as /root/A, or /tmp/A.
#
# Possible values: {any path plus filename on host}
# Default value: NULL, that is not set.
#
# migrate_ssh_temp_key = "/root/vm_migrate_tmp_id_rsa";
# disable_kvm (bool)
# When executing in a nested KVM environment libvirt-cim may fail
# unexpectedly with some error. Setting "disable_kvm" option to true
# disables use of KVM and falls back to using QEMU directly.
# Possible values: {true,false}
# Default value: false
#
# disable_kvm = false;
# lldptool_query_options (string)
# Defines the command used in SwitchService to query VEPA support, will be
# used as "lldptool -i [INTERFACE] [OPTIONS]"
#
# lldptool_query_options = "-t -g ncb -V evbcfg";
# vsi_support_key_string (string)
# Defines the string used in SwitchService to search in lldptool's output
# When lldptool updates its output, please set this value and update the
# output set, maximum 8 items. use comma to devide items. If there is
# no need to change the output set, please do not leave it void. Because
# this value has higher level than default.
#
# vsi_support_key_string = "{ supported forwarding mode: (0x40) reflective relay,"
# " supported capabilities: (0x7) RTE ECP VDP}";