mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-10 23:07:44 +00:00
58a48cff84
Add an option to allow the admin to requet a higher minimum SSF for connections than the built-in default. The current default is 56 (single DES equivalent, to support old kerberos) and will be raised to 112 in the future. https://bugzilla.redhat.com/show_bug.cgi?id=1431589 Signed-off-by: Ján Tomko <jtomko@redhat.com> Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
70 lines
2.4 KiB
Plaintext
70 lines
2.4 KiB
Plaintext
module Test_@DAEMON_NAME@ =
|
|
@CONFIG@
|
|
|
|
test @DAEMON_NAME_UC@.lns get conf =
|
|
@CUT_ENABLE_IP@
|
|
{ "listen_tls" = "0" }
|
|
{ "listen_tcp" = "1" }
|
|
{ "tls_port" = "16514" }
|
|
{ "tcp_port" = "16509" }
|
|
{ "listen_addr" = "192.168.0.1" }
|
|
@END@
|
|
{ "unix_sock_group" = "libvirt" }
|
|
{ "unix_sock_ro_perms" = "0777" }
|
|
{ "unix_sock_rw_perms" = "0770" }
|
|
{ "unix_sock_admin_perms" = "0700" }
|
|
{ "unix_sock_dir" = "@runstatedir@/libvirt" }
|
|
{ "auth_unix_ro" = "@default_auth@" }
|
|
{ "auth_unix_rw" = "@default_auth@" }
|
|
@CUT_ENABLE_IP@
|
|
{ "auth_tcp" = "sasl" }
|
|
{ "auth_tls" = "none" }
|
|
{ "tcp_min_ssf" = "112" }
|
|
@END@
|
|
{ "access_drivers"
|
|
{ "1" = "polkit" }
|
|
}
|
|
@CUT_ENABLE_IP@
|
|
{ "key_file" = "@sysconfdir@/pki/libvirt/private/serverkey.pem" }
|
|
{ "cert_file" = "@sysconfdir@/pki/libvirt/servercert.pem" }
|
|
{ "ca_file" = "@sysconfdir@/pki/CA/cacert.pem" }
|
|
{ "crl_file" = "@sysconfdir@/pki/CA/crl.pem" }
|
|
{ "tls_no_sanity_certificate" = "1" }
|
|
{ "tls_no_verify_certificate" = "1" }
|
|
{ "tls_allowed_dn_list"
|
|
{ "1" = "DN1"}
|
|
{ "2" = "DN2"}
|
|
}
|
|
{ "tls_priority" = "NORMAL" }
|
|
@END@
|
|
{ "sasl_allowed_username_list"
|
|
{ "1" = "joe@EXAMPLE.COM" }
|
|
{ "2" = "fred@EXAMPLE.COM" }
|
|
}
|
|
{ "max_clients" = "5000" }
|
|
{ "max_queued_clients" = "1000" }
|
|
{ "max_anonymous_clients" = "20" }
|
|
{ "min_workers" = "5" }
|
|
{ "max_workers" = "20" }
|
|
{ "prio_workers" = "5" }
|
|
{ "max_client_requests" = "5" }
|
|
{ "admin_min_workers" = "1" }
|
|
{ "admin_max_workers" = "5" }
|
|
{ "admin_max_clients" = "5" }
|
|
{ "admin_max_queued_clients" = "5" }
|
|
{ "admin_max_client_requests" = "5" }
|
|
{ "log_level" = "3" }
|
|
{ "log_filters" = "1:qemu 1:libvirt 4:object 4:json 4:event 1:util" }
|
|
{ "log_outputs" = "3:syslog:@DAEMON_NAME@" }
|
|
{ "audit_level" = "2" }
|
|
{ "audit_logging" = "1" }
|
|
{ "host_uuid" = "00000000-0000-0000-0000-000000000000" }
|
|
{ "host_uuid_source" = "smbios" }
|
|
{ "keepalive_interval" = "5" }
|
|
{ "keepalive_count" = "5" }
|
|
{ "keepalive_required" = "1" }
|
|
{ "admin_keepalive_required" = "1" }
|
|
{ "admin_keepalive_interval" = "5" }
|
|
{ "admin_keepalive_count" = "5" }
|
|
{ "ovs_timeout" = "5" }
|