#!/usr/bin/perl

use strict;
use warnings;
use Getopt::Long;
use File::Path;
use File::Basename;
use IO::File;
use Cwd;

use JSON;

my $verbose;
my $keep_artifacts;

my $release = '';

my $clicmd = shift or
    die "no command specified\n";

my $data_str = "";
while (<main::DATA>) { $data_str .= $_; }

my $fileinfo = decode_json($data_str);

my $tmpprefix = '.asciidoc-pve-tmp'.$$.'_';

my $adoc_source_dir = "/usr/share/pve-doc-generator";

# inside pve-docs source dir?
if (-f "asciidoc-pve.in" && -f "pve-admin-guide.adoc") {
    $adoc_source_dir = getcwd();
}

my $prepared_files = {};

my $man_target = 'man';
my $env_stack = [];
my $env_skip = 0;

my $online_help_links = {
    'pve_service_daemons' => {
	link => '/pve-docs/index.html#_service_daemons',
	title => 'Service Daemons',
    },
    'pve_documentation_index' => {
	link => '/pve-docs/index.html',
	title => 'Proxmox VE Documentation Index',
    },
    'pve_admin_guide' => {
	link => '/pve-docs/pve-admin-guide.html',
	title => 'Proxmox VE Administration Guide',
    },
};

sub debug {
    my $msg = shift;

    return if !$verbose;

    print STDERR "asciidoc-pve: $msg\n";
}

sub push_environment {
    my ($env, $skip) = @_;

    $skip = 1 if $env_skip;
    $skip = 0 if !defined($skip);

    push @$env_stack, [$env, $skip];

    $env_skip = $skip;
}

sub pop_environment {
    my ($env) = @_;

    my $last_stack_entry = pop @$env_stack;
    die "unable to pop env '$env'" if !defined($last_stack_entry);

    my ($last_env, $skip) = @$last_stack_entry;
    die "environment missmatch (${last_env} != $env)\n" if $last_env ne $env;

    if (!scalar(@$env_stack)) {
	$env_skip = 0;
    } else {
	my (undef, $skip) = @{$env_stack->[-1]};
	$env_skip = $skip;
    }
}

my $files_for_cleanup = [];

sub cleanup {

    return if $keep_artifacts;

    foreach my $file (@$files_for_cleanup) {
	unlink $file;
    }
}

sub replace_wiki_xref {
    my ($blockid, $text) = @_;

    my $link = $fileinfo->{blockid_target}->{wiki}->{$blockid};
    my $reftext = $fileinfo->{reftext}->{wiki}->{$blockid};

    die "unable to resolve wiki link (xref:$blockid)\n"
	if !defined($link);

    $text = $reftext if !length($text);

    die "xref: no text for wiki link '$blockid'\n" if !$text;

    return "$link\[$text\]";
}

sub replace_default_xref {
    my ($blockid, $text) = @_;

    my $link = $fileinfo->{blockid_target}->{default}->{$blockid};
    my $reftext = $fileinfo->{reftext}->{default}->{$blockid};

    die "unable to resolve chapter link (xref:$blockid)\n"
	if !defined($link);

    $text = $reftext if !length($text);

    die "xref: no text for chapter link '$blockid'\n" if !$text;

    return "$link\[$text\]";
}

sub replace_man_xref {
    my ($blockid, $text) = @_;

    my $link = $fileinfo->{blockid_target}->{manvolnum}->{$blockid};
    my $reftext = $fileinfo->{reftext}->{manvolnum}->{$blockid};

    die "unable to resolve man page link (xref:$blockid)\n"
	if !defined($link);

    $text = $reftext if !length($text);

    die "xref: no text for man page link '$blockid'\n" if !$text;

    my $section = $fileinfo->{mansection}->{manvolnum}->{$link};
    if (!defined($section)) {
	warn "link '$blockid' target '$link' is not a manual page, ignoring\n";
	return "$text";
    }


    if ($man_target eq 'html') {
	my $target = $link;
	$target =~ s/\.adoc//;
	$target .= ".$section";
	return "link:${target}.html#${blockid}\[$text\]";
    } elsif ($man_target eq 'man') {
	my $command = $link;
	$command =~ s/\.adoc//;
	return "\*${text}\* (man \*${command}\*($section))";
    } else {
	die "internal error"
    }
}

sub replace_xref {
    my ($env, $blockid, $text) = @_;

    if ($env eq 'wiki') {
	return replace_wiki_xref($blockid, $text);
    } elsif ($env eq 'manvolnum') {
	if (($man_target eq 'man') || ($man_target eq 'html')) {
	    return replace_man_xref($blockid, $text);
	} elsif ($man_target eq 'wiki') {
	    return replace_wiki_xref($blockid, $text);
	} else {
	    die "internal error"
	}
    } elsif ($env eq 'default') {
	return replace_default_xref($blockid, $text);
    } else {
	die "internal error";
    }
}

sub prepare_adoc_file {
    my ($target_env, $filename, $attributes) = @_;

    return $prepared_files->{$filename} if defined($prepared_files->{$filename});

    debug("prepare $filename");

    my $dirname = dirname($filename);
    my $basename = basename($filename);

    my $outfilename = "$dirname/${tmpprefix}$basename";

    $prepared_files->{$filename} = $outfilename;

    my $fh = IO::File->new("$filename", "r") or
	die "unable to open file '$filename' - $!\n";

    my $outfh = IO::File->new("$outfilename", "w") or
	die "unable to open temporary file '$outfilename'\n";

    push @$files_for_cleanup, $outfilename;

    while (defined (my $line = <$fh>)) {
	chomp $line;
	if ($line =~ m/^if(n?)def::(\S+)\[(.*)\]\s*$/) {
	    my ($not, $env, $text) = ($1, $2, $3);
	    die "unsuported ifdef usage - implement me" if $text;

	    my $skip = !exists($attributes->{$env}) ? 1 : 0;
	    $skip = ($skip ? 0 : 1 ) if $not;

	    push_environment($env, $skip);
	    next;
	} elsif ($line =~ m/^endif::(\S+)\[(.*)\]\s*$/) {
	    my ($env, $text) = ($1, $2);
	    die "unsuported ifdef usage - implement me" if $text;
	    pop_environment($env);
	    next;
	}

	next if $env_skip;

	if ($line =~ m/^include::(\S+)(\[.*\]\s*)$/) {
	    my ($fn, $rest) = ($1, $2);
	    debug("include $fn");
	    my $new_fn = prepare_adoc_file($target_env, $fn, $attributes);

	    print $outfh "include::${new_fn}$rest\n";
	    next;
	}

	if ($line =~ m/xref:\S+?\[[^\]]*$/) {
	    die "possible xref spanning multiple lines in '$filename':\n(line $.): $line\n";
	}
	if ($line =~ m/<<((?!\>\>).)*$/) {
	    die "possible xref spanning multiple lines in '$filename':\n(line $.): $line\n";
	}
	# fix xrefs
	$line =~ s/xref:([^\s\[\]]+)\[([^\]]*)\]/replace_xref(${target_env},$1,$2)/ge;

	$line =~ s/<<([^\s,\[\]]+)(?:,(.*?))?>>/replace_xref(${target_env},$1,$2)/ge;

	print $outfh $line . "\n";
    }

    return $outfilename;
}

sub compile_asciidoc {
    my ($env) = @_;

    my $outfile;

    GetOptions (
        "outfile=s" => \$outfile,
        "keep-artifacts" => \$keep_artifacts,
        "verbose"   => \$verbose
    ) or die("Error in command line arguments\n");

    my $infile = shift(@ARGV) or die "no input file specified\n";
    scalar(@ARGV) == 0 or die "too many arguments...\n";

    my $outfilemap = $fileinfo->{outfile}->{$env}->{$infile} ||
	die "no output file mapping for '$infile' ($env)";

    if ($man_target eq 'html') {
	$outfilemap .= '.html';
    } elsif ($man_target eq 'wiki') {
	$outfilemap .= '-plain.html';
    }

    if (defined($outfile)) {
	die "wrong output file name '$outfile != $outfilemap' ($env)" if $outfile ne $outfilemap;
    } else {
	$outfile = $outfilemap;
    }

    defined($fileinfo->{titles}->{$env}) || die "unknown environment '$env'";

    my $title = $fileinfo->{titles}->{$env}->{$infile} or
	die "unable to get title for '$infile'$env\n";

    debug("compile $title");

    my $leveloffset = 0;

    my $doctype = $fileinfo->{doctype}->{$env}->{$infile};

    die "unable to get document type for '$infile'\n"
	if !defined($doctype);

    $leveloffset = - $doctype;

    my $date;
    if (defined($ENV{SOURCE_DATE_EPOCH})) {
	$date = `date -d "\@$ENV{SOURCE_DATE_EPOCH}"`;
    } else {
	$date = `date`;
    }
    chomp $date;

    my $attributes = {
	$env => undef,
	leveloffset => $leveloffset,
	revnumber => $release,
	revdate => $date,
	'footer-style' => 'revdate',
    };

    my $mansection = $fileinfo->{mansection}->{$env}->{$infile};

    if ($env eq 'wiki') {
    } elsif ($env eq 'manvolnum') {
	die "undefined man section" if !defined($mansection);
	$attributes->{manvolnum} = $mansection;
    } elsif ($env eq 'default') {
	die "$infile: wrong doctype\n" if $doctype != 0;
	$attributes->{toc2} = undef;
    }

    if (!defined($outfile)) {
	$outfile = $infile;
	$outfile =~ s/\.adoc$//;
	if ($env eq 'manvolnum') {
	    if (($man_target eq 'html') || ($man_target eq 'wiki')) {
		$outfile .= ".$mansection.html";
	    } else {
		$outfile .= ".$mansection";
	    }
	} else {
	    $outfile .= ".html";
	}
    }

    if (($env eq 'manvolnum') && ($man_target eq 'man')) {

	# asciidoc /etc/asciidoc/docbook-xsl/manpage.xsl skip REFERENCES
	# section like footnotes, so we cannot use a2x.
	# We use xmlto instead.

	my $cmd = [
	    'asciidoc',
	    '-dmanpage',
	    '-b', "$adoc_source_dir/asciidoc/pve-docbook",
	    '-f', "$adoc_source_dir/asciidoc/asciidoc-pve.conf",
	    '-a', 'docinfo1',
	];

	foreach my $key (keys %$attributes) {
	    my $value = $attributes->{$key};
	    if (defined($value)) {
		push @$cmd, '-a', "$key=$value";
	    } else {
		push @$cmd, '-a', $key;
	    }
	}

	push @$cmd, '--verbose' if $verbose;

	my $tmpxmlfile = "${outfile}.xml.tmp";

	push @$cmd, '--out-file', $tmpxmlfile;

	push @$files_for_cleanup, $tmpxmlfile;

	my $new_infile = prepare_adoc_file($env, $infile, $attributes);

	push @$cmd, $new_infile;

	debug("run " . join(' ', @$cmd));

	system(@$cmd) == 0 or die "aciidoc error";

	$cmd = ['xmlto', 'man', $tmpxmlfile];

	push @$cmd, '-v' if $verbose;

	debug("run " . join(' ', @$cmd));

	system(@$cmd) == 0 or die "xmlto error";

    } else {

	$attributes->{icons} = undef;
	$attributes->{'data-uri'} = undef;

	my $cmd = [ 'asciidoc', '-f', "$adoc_source_dir/asciidoc/asciidoc-pve.conf" ];

	if (($env eq 'wiki') ||
	    (($env eq 'manvolnum') && ($man_target eq 'wiki'))) {

	    push @$cmd, '-b', "$adoc_source_dir/asciidoc/mediawiki";
	} else {
	    push @$cmd, '-b', "$adoc_source_dir/asciidoc/pve-html";
	}

	foreach my $key (keys %$attributes) {
	    my $value = $attributes->{$key};
	    if (defined($value)) {
		push @$cmd, '-a', "$key=$value";
	    } else {
		push @$cmd, '-a', $key;
	    }
	}

	push @$cmd, '--verbose' if $verbose;

	push @$cmd, '--out-file', $outfile;

	my $new_infile = prepare_adoc_file($env, $infile, $attributes);

	push @$cmd, $new_infile;

	debug("run " . join(' ', @$cmd));

	system(@$cmd) == 0 or die "aciidoc error";
    }
}

sub get_links {

    my $data = {};

    foreach my $blockid (sort keys %{$fileinfo->{blockid_target}->{default}}) {
	my $link = $fileinfo->{blockid_target}->{default}->{$blockid};
	my $reftitle = $fileinfo->{reftitle}->{default}->{$blockid};
	my $reftext = $fileinfo->{reftext}->{default}->{$blockid};
	die "internal error" if $link !~ m/^link:/;
	$link =~ s/^link://;

	my $file = $fileinfo->{blockid}->{default}->{$blockid};
	die "internal error - no filename" if ! defined($file);
	my $title =  $fileinfo->{titles}->{default}->{$file} ||
	    die "internal error - no title";

	$data->{$blockid}->{title} = $title;
	$data->{$blockid}->{link} = $link;
	my $subtitle = $reftitle || $reftext;
	$data->{$blockid}->{subtitle} = $subtitle
	    if $subtitle && ($title ne $subtitle);
    }

    return $data;
}

sub scan_extjs_file {
    my ($filename, $res_data) = @_;

    my $fh = IO::File->new($filename, "r") ||
	die "unable to open '$filename' - $!\n";

    debug("scan-extjs $filename");

    while(defined(my $line = <$fh>)) {
	if ($line =~ m/\s+onlineHelp:\s*[\'\"]([^{}\[\]\'\"]+)[\'\"]/) {
	    my $blockid = $1;
	    my $link = $fileinfo->{blockid_target}->{default}->{$blockid};
	    die "undefined blockid '$blockid' ($filename, line $.)\n"
		if !(defined($link) || defined($online_help_links->{$blockid}));

	    $res_data->{$blockid} = 1;
	}
    }
}

if ($clicmd eq 'compile-wiki') {

    eval { compile_asciidoc('wiki'); };
    my $err = $@;

    cleanup();

    die $err if $err;

} elsif ($clicmd eq 'compile-chapter') {

    eval { compile_asciidoc('default'); };
    my $err = $@;

    cleanup();

    die $err if $err;

} elsif ($clicmd eq 'compile-man-html') {

    $man_target = 'html';

    eval { compile_asciidoc('manvolnum'); };
    my $err = $@;

    cleanup();

    die $err if $err;

} elsif ($clicmd eq 'compile-man-wiki') {

    $man_target = 'wiki';

    eval { compile_asciidoc('manvolnum'); };
    my $err = $@;

    cleanup();

    die $err if $err;

} elsif ($clicmd eq 'compile-man') {

    eval { compile_asciidoc('manvolnum'); };
    my $err = $@;

    cleanup();

    die $err if $err;

} elsif ($clicmd eq 'print-links') {

    my $outfile;

    GetOptions("outfile=s" => \$outfile,
	       "verbose"   => \$verbose) or
		   die("Error in command line arguments\n");

    scalar(@ARGV) == 0 or
	die "too many arguments...\n";

    my $data = get_links();

    my $res = to_json($data, { pretty => 1,  canonical => 1 } );

    if (defined($outfile)) {
	my $outfh = IO::File->new("$outfile", "w") or
	    die "unable to open temporary file '$outfile'\n";

	print $outfh $res;

    } else {

	print $res;
    }

} elsif ($clicmd eq 'scan-extjs') {

    GetOptions("verbose" => \$verbose) or
	die("Error in command line arguments\n");

    my $link_hash = {};
    my $scanned_files = {};
    while (my $filename = shift) {
	die "got strange file name '$filename'\n"
	    if $filename !~ m/\.js$/;
	next if $scanned_files->{$filename};

	scan_extjs_file($filename, $link_hash);
	$scanned_files->{$filename} = 1;
    }

    my $data = get_links();

    my $res_data = {};

    foreach my $blockid (keys %$link_hash) {
	$res_data->{$blockid} = $data->{$blockid} || $online_help_links->{$blockid} ||
	    die "internal error - no data for '$blockid'";
    }

    my $data_str =  to_json($res_data, { pretty => 1,  canonical => 1 });
    chomp $data_str;

    print "const pveOnlineHelpInfo = ${data_str};\n";

} elsif ($clicmd eq 'chapter-table') {

    print '[width="100%",options="header"]' . "\n";
    print "|====\n";
    print "|Title|Link\n";

    my $filelist = $fileinfo->{outfile}->{default};
    foreach my $sourcefile (sort keys %$filelist) {
	my $target = $filelist->{$sourcefile};
	next if $target eq 'pve-admin-guide.html';
	my $title = $fileinfo->{titles}->{default}->{$sourcefile} ||
	    die "not title for '$sourcefile'";
	print "|$title|link:$target\[\]\n";
    }

    print "|====\n";

} elsif ($clicmd =~ m/^man([158])page-table$/) {

    my $section = $1;
    print '[width="100%",cols="5*d",options="header"]' . "\n";
    print "|====\n";
    print "|Name 3+|Title|Link\n";

    my $filelist = $fileinfo->{outfile}->{manvolnum};
    foreach my $manpage (sort keys %$filelist) {
	next if $section ne $fileinfo->{mansection}->{manvolnum}->{$manpage};
	my $mantitle = $fileinfo->{titles}->{manvolnum}->{$manpage} ||
	    die "not manual title for '$manpage'";
	my $title = $fileinfo->{titles}->{default}->{$manpage} ||
	    die "not title for '$manpage'";

	# hack - remove command name prefix from titles
	$title =~ s/^[a-z]+\s*-\s*//;
	
	my $target = $filelist->{$manpage};
	print "|$mantitle 3+|$title|link:$target.html\[$target\]\n";
    }

    print "|====\n";

} else {

    die "unknown command '$clicmd'\n";

}


exit 0;

__END__
{
   "blockid" : {
      "default" : {
         "Ahmed15" : "pve-bibliography.adoc",
         "Ahmed16" : "pve-bibliography.adoc",
         "Bessen09" : "pve-bibliography.adoc",
         "Bir96" : "pve-bibliography.adoc",
         "Cheng14" : "pve-bibliography.adoc",
         "Goldman16" : "pve-bibliography.adoc",
         "Hertzog13" : "pve-bibliography.adoc",
         "Kreibich10" : "pve-bibliography.adoc",
         "Loeliger12" : "pve-bibliography.adoc",
         "Loshin03" : "pve-bibliography.adoc",
         "Mauerer08" : "pve-bibliography.adoc",
         "Richardson07" : "pve-bibliography.adoc",
         "Singh15" : "pve-bibliography.adoc",
         "Singh16" : "pve-bibliography.adoc",
         "Surber16" : "pve-bibliography.adoc",
         "Walsh10" : "pve-bibliography.adoc",
         "_recommendations_for_a_healthy_ceph_cluster" : "pveceph.adoc",
         "advanced_btrfs_options" : "pve-installation.adoc",
         "advanced_lvm_options" : "pve-installation.adoc",
         "advanced_zfs_options" : "pve-installation.adoc",
         "ballooning-target" : "pvenode.adoc",
         "ceph_rados_block_devices" : "pve-storage-rbd.adoc",
         "chapter_btrfs" : "local-btrfs.adoc",
         "chapter_calendar_events" : "calendar-events.adoc",
         "chapter_firmware_updates" : "firmware-updates.adoc",
         "chapter_gui" : "pve-gui.adoc",
         "chapter_ha_manager" : "ha-manager.adoc",
         "chapter_hyper_converged_infrastructure" : "hyper-converged-infrastructure.adoc",
         "chapter_installation" : "pve-installation.adoc",
         "chapter_lvm" : "local-lvm.adoc",
         "chapter_notifications" : "notifications.adoc",
         "chapter_pct" : "pct.adoc",
         "chapter_pmxcfs" : "pmxcfs.adoc",
         "chapter_pve_firewall" : "pve-firewall.adoc",
         "chapter_pveceph" : "pveceph.adoc",
         "chapter_pvecm" : "pvecm.adoc",
         "chapter_pvesdn" : "pvesdn.adoc",
         "chapter_pvesr" : "pvesr.adoc",
         "chapter_qm_vcpu_list" : "qm-vcpu-list.adoc",
         "chapter_storage" : "pvesm.adoc",
         "chapter_system_administration" : "sysadmin.adoc",
         "chapter_user_management" : "pveum.adoc",
         "chapter_virtual_machines" : "qm.adoc",
         "chapter_vzdump" : "vzdump.adoc",
         "chapter_zfs" : "local-zfs.adoc",
         "cli_general" : "cli-general.adoc",
         "configuration_files" : "configuration-files.adoc",
         "configuration_files_casing" : "configuration-files.adoc",
         "datacenter_configuration_file" : "datacenter.cfg.adoc",
         "disk_health_monitoring" : "pve-disk-health-monitoring.adoc",
         "external_metric_server" : "pve-external-metric-server.adoc",
         "faq-support-table" : "pve-faq.adoc",
         "faq-upgrade" : "pve-faq.adoc",
         "faq-upgrade-major" : "pve-faq.adoc",
         "first_guest_boot_delay" : "pvenode.adoc",
         "getting_help" : "getting-help.adoc",
         "gui_consent_banner" : "pve-gui.adoc",
         "gui_my_settings" : "pve-gui.adoc",
         "gui_tags" : "pve-gui.adoc",
         "ha_manager_crm" : "ha-manager.adoc",
         "ha_manager_crs" : "ha-manager.adoc",
         "ha_manager_error_recovery" : "ha-manager.adoc",
         "ha_manager_fencing" : "ha-manager.adoc",
         "ha_manager_groups" : "ha-manager.adoc",
         "ha_manager_lrm" : "ha-manager.adoc",
         "ha_manager_node_maintenance" : "ha-manager.adoc",
         "ha_manager_package_updates" : "ha-manager.adoc",
         "ha_manager_resource_config" : "ha-manager.adoc",
         "ha_manager_resources" : "ha-manager.adoc",
         "ha_manager_service_states" : "ha-manager.adoc",
         "ha_manager_shutdown_policy" : "ha-manager.adoc",
         "ha_manager_start_failure_policy" : "ha-manager.adoc",
         "howto_improve_pve_docs" : "howto-improve-pve-docs.adoc",
         "i18n_with_git" : "translation.adoc",
         "i18n_without_git" : "translation.adoc",
         "install_minimal_requirements" : "pve-system-requirements.adoc",
         "install_recommended_requirements" : "pve-system-requirements.adoc",
         "installation_installer" : "pve-installation.adoc",
         "installation_prepare_media" : "pve-installation-media.adoc",
         "installation_unattended" : "pve-installation.adoc",
         "intro_central_management" : "pve-intro.adoc",
         "intro_project_history" : "pve-intro.adoc",
         "kernel_samepage_merging" : "kernel-samepage-merging.adoc",
         "markdown_basics" : "markdown-primer.adoc",
         "metric_server_graphite" : "pve-external-metric-server.adoc",
         "metric_server_influxdb" : "pve-external-metric-server.adoc",
         "network_override_device_names" : "pve-network.adoc",
         "network_pin_naming_scheme_version" : "pve-network.adoc",
         "nomodeset_kernel_param" : "pve-installation.adoc",
         "notification_events" : "notifications.adoc",
         "notification_matchers" : "notifications.adoc",
         "notification_matchers_calendar" : "notifications.adoc",
         "notification_matchers_field" : "notifications.adoc",
         "notification_matchers_severity" : "notifications.adoc",
         "notification_mode" : "notifications.adoc",
         "notification_targets" : "notifications.adoc",
         "notification_targets_gotify" : "notifications.adoc",
         "notification_targets_sendmail" : "notifications.adoc",
         "notification_targets_smtp" : "notifications.adoc",
         "notification_targets_webhook" : "notifications.adoc",
         "pct_cgroup" : "pct.adoc",
         "pct_cgroup_change_version" : "pct.adoc",
         "pct_cgroup_compat" : "pct.adoc",
         "pct_configuration" : "pct.adoc",
         "pct_container_images" : "pct.adoc",
         "pct_container_network" : "pct.adoc",
         "pct_container_storage" : "pct.adoc",
         "pct_cpu" : "pct.adoc",
         "pct_general" : "pct.adoc",
         "pct_memory" : "pct.adoc",
         "pct_migration" : "pct.adoc",
         "pct_mount_points" : "pct.adoc",
         "pct_options" : "pct.adoc",
         "pct_settings" : "pct.adoc",
         "pct_snapshots" : "pct.adoc",
         "pct_startup_and_shutdown" : "pct.adoc",
         "pct_supported_distributions" : "pct.adoc",
         "proxmox_node_management" : "pvenode.adoc",
         "pve_ceph_device_classes" : "pveceph.adoc",
         "pve_ceph_ec_pools" : "pveceph.adoc",
         "pve_ceph_install" : "pveceph.adoc",
         "pve_ceph_install_wizard" : "pveceph.adoc",
         "pve_ceph_manager" : "pveceph.adoc",
         "pve_ceph_mon_and_ts" : "pveceph.adoc",
         "pve_ceph_monitors" : "pveceph.adoc",
         "pve_ceph_osd_create" : "pveceph.adoc",
         "pve_ceph_osd_destroy" : "pveceph.adoc",
         "pve_ceph_osd_replace" : "pveceph.adoc",
         "pve_ceph_osds" : "pveceph.adoc",
         "pve_ceph_pools" : "pveceph.adoc",
         "pve_ceph_recommendation_cpu" : "pveceph.adoc",
         "pve_ceph_recommendation_disk" : "pveceph.adoc",
         "pve_ceph_recommendation_memory" : "pveceph.adoc",
         "pve_ceph_recommendation_network" : "pveceph.adoc",
         "pve_ceph_recommendation_raid" : "pveceph.adoc",
         "pve_ceph_ts" : "pveceph.adoc",
         "pve_ceph_ts_causes" : "pveceph.adoc",
         "pve_ceph_ts_logs" : "pveceph.adoc",
         "pve_ceph_ts_problems" : "pveceph.adoc",
         "pve_ceph_wizard_networks" : "pveceph.adoc",
         "pve_firewall_cluster_wide_setup" : "pve-firewall.adoc",
         "pve_firewall_default_rules" : "pve-firewall.adoc",
         "pve_firewall_host_specific_configuration" : "pve-firewall.adoc",
         "pve_firewall_ip_aliases" : "pve-firewall.adoc",
         "pve_firewall_ip_sets" : "pve-firewall.adoc",
         "pve_firewall_ipfilter_section" : "pve-firewall.adoc",
         "pve_firewall_iptables_inspect" : "pve-firewall.adoc",
         "pve_firewall_log_levels" : "pve-firewall.adoc",
         "pve_firewall_nft" : "pve-firewall.adoc",
         "pve_firewall_nft_helpful_commands" : "pve-firewall.adoc",
         "pve_firewall_security_groups" : "pve-firewall.adoc",
         "pve_firewall_services_commands" : "pve-firewall.adoc",
         "pve_firewall_vm_container_configuration" : "pve-firewall.adoc",
         "pve_firewall_vnet_configuration" : "pve-firewall.adoc",
         "pveceph_create_mgr" : "pveceph.adoc",
         "pveceph_create_mon" : "pveceph.adoc",
         "pveceph_destroy_mgr" : "pveceph.adoc",
         "pveceph_destroy_mon" : "pveceph.adoc",
         "pveceph_fs" : "pveceph.adoc",
         "pveceph_fs_create" : "pveceph.adoc",
         "pveceph_fs_mds" : "pveceph.adoc",
         "pveceph_scrub" : "pveceph.adoc",
         "pveceph_shutdown" : "pveceph.adoc",
         "pvecm_adding_nodes_with_separated_cluster_network" : "pvecm.adoc",
         "pvecm_cluster_create_via_cli" : "pvecm.adoc",
         "pvecm_cluster_create_via_gui" : "pvecm.adoc",
         "pvecm_cluster_network" : "pvecm.adoc",
         "pvecm_cluster_network_requirements" : "pvecm.adoc",
         "pvecm_corosync_addresses" : "pvecm.adoc",
         "pvecm_corosync_conf_glossary" : "pvecm.adoc",
         "pvecm_create_cluster" : "pvecm.adoc",
         "pvecm_edit_corosync_conf" : "pvecm.adoc",
         "pvecm_join_node_to_cluster" : "pvecm.adoc",
         "pvecm_migration_network" : "pvecm.adoc",
         "pvecm_next_id_range" : "pvecm.adoc",
         "pvecm_qdevice_status_flags" : "pvecm.adoc",
         "pvecm_redundancy" : "pvecm.adoc",
         "pvecm_separate_cluster_net_after_creation" : "pvecm.adoc",
         "pvecm_separate_node_without_reinstall" : "pvecm.adoc",
         "pveproxy_custom_tls_cert" : "pveproxy.adoc",
         "pveproxy_host_acls" : "pveproxy.adoc",
         "pveproxy_listening_address" : "pveproxy.adoc",
         "pveproxy_real_ip" : "pveproxy.adoc",
         "pveproxy_response_compression" : "pveproxy.adoc",
         "pvesdn_config_common_options" : "pvesdn.adoc",
         "pvesdn_config_controllers" : "pvesdn.adoc",
         "pvesdn_config_dhcp" : "pvesdn.adoc",
         "pvesdn_config_dns" : "pvesdn.adoc",
         "pvesdn_config_ipam" : "pvesdn.adoc",
         "pvesdn_config_subnet" : "pvesdn.adoc",
         "pvesdn_config_vnet" : "pvesdn.adoc",
         "pvesdn_config_zone" : "pvesdn.adoc",
         "pvesdn_controller_plugin_BGP" : "pvesdn.adoc",
         "pvesdn_controller_plugin_ISIS" : "pvesdn.adoc",
         "pvesdn_controller_plugin_evpn" : "pvesdn.adoc",
         "pvesdn_dns_plugin_powerdns" : "pvesdn.adoc",
         "pvesdn_firewall_integration" : "pvesdn.adoc",
         "pvesdn_install_dhcp_ipam" : "pvesdn.adoc",
         "pvesdn_install_frrouting" : "pvesdn.adoc",
         "pvesdn_installation" : "pvesdn.adoc",
         "pvesdn_ipam_plugin_netbox" : "pvesdn.adoc",
         "pvesdn_ipam_plugin_phpipam" : "pvesdn.adoc",
         "pvesdn_ipam_plugin_pveipam" : "pvesdn.adoc",
         "pvesdn_main_configuration" : "pvesdn.adoc",
         "pvesdn_notes" : "pvesdn.adoc",
         "pvesdn_overview" : "pvesdn.adoc",
         "pvesdn_setup_example_evpn" : "pvesdn.adoc",
         "pvesdn_setup_example_nat" : "pvesdn.adoc",
         "pvesdn_setup_example_qinq" : "pvesdn.adoc",
         "pvesdn_setup_example_simple" : "pvesdn.adoc",
         "pvesdn_setup_example_vlan" : "pvesdn.adoc",
         "pvesdn_setup_example_vxlan" : "pvesdn.adoc",
         "pvesdn_setup_examples" : "pvesdn.adoc",
         "pvesdn_support_status" : "pvesdn.adoc",
         "pvesdn_tech_and_config_overview" : "pvesdn.adoc",
         "pvesdn_zone_plugin_evpn" : "pvesdn.adoc",
         "pvesdn_zone_plugin_qinq" : "pvesdn.adoc",
         "pvesdn_zone_plugin_simple" : "pvesdn.adoc",
         "pvesdn_zone_plugin_vlan" : "pvesdn.adoc",
         "pvesdn_zone_plugin_vxlan" : "pvesdn.adoc",
         "pvesr_schedule_format_examples" : "calendar-events.adoc",
         "pvesr_schedule_time_format" : "pvesr.adoc",
         "pveum_authentication_realms" : "pveum.adoc",
         "pveum_configure_u2f" : "pveum.adoc",
         "pveum_configure_webauthn" : "pveum.adoc",
         "pveum_groups" : "pveum.adoc",
         "pveum_ldap_reserved_characters" : "pveum.adoc",
         "pveum_ldap_sync" : "pveum.adoc",
         "pveum_ldap_sync_options" : "pveum.adoc",
         "pveum_openid" : "pveum.adoc",
         "pveum_permission_management" : "pveum.adoc",
         "pveum_pools" : "pveum.adoc",
         "pveum_resource_pools" : "pveum.adoc",
         "pveum_roles" : "pveum.adoc",
         "pveum_templated_paths" : "pveum.adoc",
         "pveum_tfa_auth" : "pveum.adoc",
         "pveum_tfa_lockout" : "pveum.adoc",
         "pveum_tokens" : "pveum.adoc",
         "pveum_user_configured_totp" : "pveum.adoc",
         "pveum_user_configured_u2f" : "pveum.adoc",
         "pveum_users" : "pveum.adoc",
         "qm_audio_device" : "qm.adoc",
         "qm_ballooning" : "qm.adoc",
         "qm_bios_and_uefi" : "qm.adoc",
         "qm_bootorder" : "qm.adoc",
         "qm_cloud_init" : "qm-cloud-init.adoc",
         "qm_configuration" : "qm.adoc",
         "qm_copy_and_clone" : "qm.adoc",
         "qm_cpu" : "qm.adoc",
         "qm_cpu_resource_limits" : "qm.adoc",
         "qm_display" : "qm.adoc",
         "qm_general_settings" : "qm.adoc",
         "qm_hard_disk" : "qm.adoc",
         "qm_hard_disk_bus" : "qm.adoc",
         "qm_hard_disk_cache" : "qm.adoc",
         "qm_hard_disk_discard" : "qm.adoc",
         "qm_hard_disk_formats" : "qm.adoc",
         "qm_hard_disk_iothread" : "qm.adoc",
         "qm_hibernate" : "qm.adoc",
         "qm_import_virtual_machines" : "qm.adoc",
         "qm_ivshmem" : "qm.adoc",
         "qm_machine_type" : "qm.adoc",
         "qm_machine_update" : "qm.adoc",
         "qm_meltdown_spectre" : "qm.adoc",
         "qm_memory" : "qm.adoc",
         "qm_memory_encryption" : "qm.adoc",
         "qm_memory_encryption_sev" : "qm.adoc",
         "qm_migration" : "qm.adoc",
         "qm_network_device" : "qm.adoc",
         "qm_options" : "qm.adoc",
         "qm_os_settings" : "qm.adoc",
         "qm_pci_passthrough" : "qm-pci-passthrough.adoc",
         "qm_pci_passthrough_update_initramfs" : "qm-pci-passthrough.adoc",
         "qm_pci_passthrough_vm_config" : "qm-pci-passthrough.adoc",
         "qm_pci_viommu" : "qm-pci-passthrough.adoc",
         "qm_qemu_agent" : "qm.adoc",
         "qm_qga_auto_trim" : "qm.adoc",
         "qm_qga_enable" : "qm.adoc",
         "qm_qga_fsfreeze" : "qm.adoc",
         "qm_snapshots" : "qm.adoc",
         "qm_spice_enhancements" : "qm.adoc",
         "qm_startup_and_shutdown" : "qm.adoc",
         "qm_system_settings" : "qm.adoc",
         "qm_templates" : "qm.adoc",
         "qm_tpm" : "qm.adoc",
         "qm_usb_passthrough" : "qm.adoc",
         "qm_virtio_rng" : "qm.adoc",
         "qm_virtiofs" : "qm.adoc",
         "qm_virtual_machines_settings" : "qm.adoc",
         "qm_vmstatestorage" : "qm.adoc",
         "repos_secure_rpm" : "pve-package-repos.adoc",
         "resource_mapping" : "qm.adoc",
         "storage_btrfs" : "pve-storage-btrfs.adoc",
         "storage_cephfs" : "pve-storage-cephfs.adoc",
         "storage_cephfs_config" : "pve-storage-cephfs.adoc",
         "storage_cifs" : "pve-storage-cifs.adoc",
         "storage_directory" : "pve-storage-dir.adoc",
         "storage_glusterfs" : "pve-storage-glusterfs.adoc",
         "storage_iscsidirect" : "pve-storage-iscsidirect.adoc",
         "storage_lvm" : "pve-storage-lvm.adoc",
         "storage_lvmthin" : "pve-storage-lvmthin.adoc",
         "storage_nfs" : "pve-storage-nfs.adoc",
         "storage_open_iscsi" : "pve-storage-iscsi.adoc",
         "storage_pbs" : "pve-storage-pbs.adoc",
         "storage_pbs_encryption" : "pve-storage-pbs.adoc",
         "storage_rbd_config" : "pve-storage-rbd.adoc",
         "storage_zfs" : "pve-storage-zfs.adoc",
         "storage_zfspool" : "pve-storage-zfspool.adoc",
         "sysadmin_certificate_management" : "certificate-management.adoc",
         "sysadmin_certs_acme_account" : "certificate-management.adoc",
         "sysadmin_certs_acme_automatic_renewal" : "certificate-management.adoc",
         "sysadmin_certs_acme_dns_api_config" : "certificate-management.adoc",
         "sysadmin_certs_acme_dns_challenge" : "certificate-management.adoc",
         "sysadmin_certs_acme_http_challenge" : "certificate-management.adoc",
         "sysadmin_certs_acme_plugins" : "certificate-management.adoc",
         "sysadmin_certs_acme_switch_from_staging" : "certificate-management.adoc",
         "sysadmin_certs_api_gui" : "certificate-management.adoc",
         "sysadmin_certs_get_trusted_acme_cert" : "certificate-management.adoc",
         "sysadmin_certs_upload_custom" : "certificate-management.adoc",
         "sysadmin_firmware_cpu" : "firmware-updates.adoc",
         "sysadmin_firmware_persistent" : "firmware-updates.adoc",
         "sysadmin_firmware_runtime_files" : "firmware-updates.adoc",
         "sysadmin_firmware_troubleshooting" : "firmware-updates.adoc",
         "sysadmin_network_bond" : "pve-network.adoc",
         "sysadmin_network_configuration" : "pve-network.adoc",
         "sysadmin_network_masquerading" : "pve-network.adoc",
         "sysadmin_network_routed" : "pve-network.adoc",
         "sysadmin_network_vlan" : "pve-network.adoc",
         "sysadmin_package_repositories" : "pve-package-repos.adoc",
         "sysadmin_package_repositories_ceph" : "pve-package-repos.adoc",
         "sysadmin_pxvirt_repo" : "pve-package-repos.adoc",
         "sysadmin_zfs_add_cache_and_log_dev" : "local-zfs.adoc",
         "sysadmin_zfs_change_failed_dev" : "local-zfs.adoc",
         "sysadmin_zfs_create_new_zpool" : "local-zfs.adoc",
         "sysadmin_zfs_create_new_zpool_raid0" : "local-zfs.adoc",
         "sysadmin_zfs_create_new_zpool_raid1" : "local-zfs.adoc",
         "sysadmin_zfs_create_new_zpool_raid10" : "local-zfs.adoc",
         "sysadmin_zfs_create_new_zpool_raidz1" : "local-zfs.adoc",
         "sysadmin_zfs_create_new_zpool_with_cache" : "local-zfs.adoc",
         "sysadmin_zfs_create_new_zpool_with_log" : "local-zfs.adoc",
         "sysadmin_zfs_features" : "local-zfs.adoc",
         "sysadmin_zfs_limit_memory_usage" : "local-zfs.adoc",
         "sysadmin_zfs_raid_considerations" : "local-zfs.adoc",
         "sysadmin_zfs_raid_performance" : "local-zfs.adoc",
         "sysadmin_zfs_raid_size_space_usage_redundancy" : "local-zfs.adoc",
         "sysadmin_zfs_special_device" : "local-zfs.adoc",
         "sysboot" : "system-booting.adoc",
         "sysboot_determine_bootloader_used" : "system-booting.adoc",
         "sysboot_edit_kernel_cmdline" : "system-booting.adoc",
         "sysboot_grub" : "system-booting.adoc",
         "sysboot_installer_part_scheme" : "system-booting.adoc",
         "sysboot_kernel_pin" : "system-booting.adoc",
         "sysboot_proxmox_boot_refresh" : "system-booting.adoc",
         "sysboot_proxmox_boot_setup" : "system-booting.adoc",
         "sysboot_proxmox_boot_tool" : "system-booting.adoc",
         "sysboot_secure_boot" : "system-booting.adoc",
         "sysboot_systemd_boot" : "system-booting.adoc",
         "sysboot_systemd_boot_config" : "system-booting.adoc",
         "system_software_updates" : "system-software-updates.adoc",
         "systemd_network_interface_names" : "pve-network.adoc",
         "translation" : "translation.adoc",
         "udp" : "pve-external-metric-server.adoc",
         "user-realms-ad" : "pveum.adoc",
         "user-realms-ldap" : "pveum.adoc",
         "user-realms-pam" : "pveum.adoc",
         "user-realms-pve" : "pveum.adoc",
         "user_mgmt" : "pveum.adoc",
         "user_tfa_setup_recovery_keys" : "pveum.adoc",
         "user_tfa_setup_totp" : "pveum.adoc",
         "user_tfa_setup_webauthn" : "pveum.adoc",
         "vzdump_configuration" : "vzdump.adoc",
         "vzdump_jobs" : "vzdump.adoc",
         "vzdump_notes" : "vzdump.adoc",
         "vzdump_protection" : "vzdump.adoc",
         "vzdump_restore" : "vzdump.adoc",
         "vzdump_retention" : "vzdump.adoc",
         "zfs_compression" : "local-zfs.adoc",
         "zfs_encryption" : "local-zfs.adoc",
         "zfs_swap" : "local-zfs.adoc"
      },
      "manvolnum" : {
         "Ahmed15" : "pve-bibliography.adoc",
         "Ahmed16" : "pve-bibliography.adoc",
         "Bessen09" : "pve-bibliography.adoc",
         "Bir96" : "pve-bibliography.adoc",
         "Cheng14" : "pve-bibliography.adoc",
         "Goldman16" : "pve-bibliography.adoc",
         "Hertzog13" : "pve-bibliography.adoc",
         "Kreibich10" : "pve-bibliography.adoc",
         "Loeliger12" : "pve-bibliography.adoc",
         "Loshin03" : "pve-bibliography.adoc",
         "Mauerer08" : "pve-bibliography.adoc",
         "Richardson07" : "pve-bibliography.adoc",
         "Singh15" : "pve-bibliography.adoc",
         "Singh16" : "pve-bibliography.adoc",
         "Surber16" : "pve-bibliography.adoc",
         "Walsh10" : "pve-bibliography.adoc",
         "_recommendations_for_a_healthy_ceph_cluster" : "pveceph.adoc",
         "advanced_btrfs_options" : "pve-installation.adoc",
         "advanced_lvm_options" : "pve-installation.adoc",
         "advanced_zfs_options" : "pve-installation.adoc",
         "ballooning-target" : "pvenode.adoc",
         "ceph_rados_block_devices" : "pve-storage-rbd.adoc",
         "chapter_btrfs" : "local-btrfs.adoc",
         "chapter_calendar_events" : "calendar-events.adoc",
         "chapter_firmware_updates" : "firmware-updates.adoc",
         "chapter_gui" : "pve-gui.adoc",
         "chapter_ha_manager" : "ha-manager.adoc",
         "chapter_hyper_converged_infrastructure" : "hyper-converged-infrastructure.adoc",
         "chapter_installation" : "pve-installation.adoc",
         "chapter_lvm" : "local-lvm.adoc",
         "chapter_notifications" : "notifications.adoc",
         "chapter_pct" : "pct.adoc",
         "chapter_pmxcfs" : "pmxcfs.adoc",
         "chapter_pve_firewall" : "pve-firewall.adoc",
         "chapter_pveceph" : "pveceph.adoc",
         "chapter_pvecm" : "pvecm.adoc",
         "chapter_pvesdn" : "pvesdn.adoc",
         "chapter_pvesr" : "pvesr.adoc",
         "chapter_qm_vcpu_list" : "qm-vcpu-list.adoc",
         "chapter_storage" : "pvesm.adoc",
         "chapter_system_administration" : "sysadmin.adoc",
         "chapter_user_management" : "pveum.adoc",
         "chapter_virtual_machines" : "qm.adoc",
         "chapter_vzdump" : "vzdump.adoc",
         "chapter_zfs" : "local-zfs.adoc",
         "cli_general" : "cli-general.adoc",
         "configuration_files" : "configuration-files.adoc",
         "configuration_files_casing" : "configuration-files.adoc",
         "datacenter_configuration_file" : "datacenter.cfg.adoc",
         "disk_health_monitoring" : "pve-disk-health-monitoring.adoc",
         "external_metric_server" : "pve-external-metric-server.adoc",
         "faq-support-table" : "pve-faq.adoc",
         "faq-upgrade" : "pve-faq.adoc",
         "faq-upgrade-major" : "pve-faq.adoc",
         "first_guest_boot_delay" : "pvenode.adoc",
         "getting_help" : "getting-help.adoc",
         "gui_consent_banner" : "pve-gui.adoc",
         "gui_my_settings" : "pve-gui.adoc",
         "gui_tags" : "pve-gui.adoc",
         "ha_manager_crm" : "ha-manager.adoc",
         "ha_manager_crs" : "ha-manager.adoc",
         "ha_manager_error_recovery" : "ha-manager.adoc",
         "ha_manager_fencing" : "ha-manager.adoc",
         "ha_manager_groups" : "ha-manager.adoc",
         "ha_manager_lrm" : "ha-manager.adoc",
         "ha_manager_node_maintenance" : "ha-manager.adoc",
         "ha_manager_package_updates" : "ha-manager.adoc",
         "ha_manager_resource_config" : "ha-manager.adoc",
         "ha_manager_resources" : "ha-manager.adoc",
         "ha_manager_service_states" : "ha-manager.adoc",
         "ha_manager_shutdown_policy" : "ha-manager.adoc",
         "ha_manager_start_failure_policy" : "ha-manager.adoc",
         "howto_improve_pve_docs" : "howto-improve-pve-docs.adoc",
         "i18n_with_git" : "translation.adoc",
         "i18n_without_git" : "translation.adoc",
         "install_minimal_requirements" : "pve-system-requirements.adoc",
         "install_recommended_requirements" : "pve-system-requirements.adoc",
         "installation_installer" : "pve-installation.adoc",
         "installation_prepare_media" : "pve-installation-media.adoc",
         "installation_unattended" : "pve-installation.adoc",
         "intro_central_management" : "pve-intro.adoc",
         "intro_project_history" : "pve-intro.adoc",
         "kernel_samepage_merging" : "kernel-samepage-merging.adoc",
         "markdown_basics" : "markdown-primer.adoc",
         "metric_server_graphite" : "pve-external-metric-server.adoc",
         "metric_server_influxdb" : "pve-external-metric-server.adoc",
         "network_override_device_names" : "pve-network.adoc",
         "network_pin_naming_scheme_version" : "pve-network.adoc",
         "nomodeset_kernel_param" : "pve-installation.adoc",
         "notification_events" : "notifications.adoc",
         "notification_matchers" : "notifications.adoc",
         "notification_matchers_calendar" : "notifications.adoc",
         "notification_matchers_field" : "notifications.adoc",
         "notification_matchers_severity" : "notifications.adoc",
         "notification_mode" : "notifications.adoc",
         "notification_targets" : "notifications.adoc",
         "notification_targets_gotify" : "notifications.adoc",
         "notification_targets_sendmail" : "notifications.adoc",
         "notification_targets_smtp" : "notifications.adoc",
         "notification_targets_webhook" : "notifications.adoc",
         "pct_cgroup" : "pct.adoc",
         "pct_cgroup_change_version" : "pct.adoc",
         "pct_cgroup_compat" : "pct.adoc",
         "pct_configuration" : "pct.adoc",
         "pct_container_images" : "pct.adoc",
         "pct_container_network" : "pct.adoc",
         "pct_container_storage" : "pct.adoc",
         "pct_cpu" : "pct.adoc",
         "pct_general" : "pct.adoc",
         "pct_memory" : "pct.adoc",
         "pct_migration" : "pct.adoc",
         "pct_mount_points" : "pct.adoc",
         "pct_options" : "pct.adoc",
         "pct_settings" : "pct.adoc",
         "pct_snapshots" : "pct.adoc",
         "pct_startup_and_shutdown" : "pct.adoc",
         "pct_supported_distributions" : "pct.adoc",
         "pve_ceph_device_classes" : "pveceph.adoc",
         "pve_ceph_ec_pools" : "pveceph.adoc",
         "pve_ceph_install" : "pveceph.adoc",
         "pve_ceph_install_wizard" : "pveceph.adoc",
         "pve_ceph_manager" : "pveceph.adoc",
         "pve_ceph_mon_and_ts" : "pveceph.adoc",
         "pve_ceph_monitors" : "pveceph.adoc",
         "pve_ceph_osd_create" : "pveceph.adoc",
         "pve_ceph_osd_destroy" : "pveceph.adoc",
         "pve_ceph_osd_replace" : "pveceph.adoc",
         "pve_ceph_osds" : "pveceph.adoc",
         "pve_ceph_pools" : "pveceph.adoc",
         "pve_ceph_recommendation_cpu" : "pveceph.adoc",
         "pve_ceph_recommendation_disk" : "pveceph.adoc",
         "pve_ceph_recommendation_memory" : "pveceph.adoc",
         "pve_ceph_recommendation_network" : "pveceph.adoc",
         "pve_ceph_recommendation_raid" : "pveceph.adoc",
         "pve_ceph_ts" : "pveceph.adoc",
         "pve_ceph_ts_causes" : "pveceph.adoc",
         "pve_ceph_ts_logs" : "pveceph.adoc",
         "pve_ceph_ts_problems" : "pveceph.adoc",
         "pve_ceph_wizard_networks" : "pveceph.adoc",
         "pve_firewall_cluster_wide_setup" : "pve-firewall.adoc",
         "pve_firewall_default_rules" : "pve-firewall.adoc",
         "pve_firewall_host_specific_configuration" : "pve-firewall.adoc",
         "pve_firewall_ip_aliases" : "pve-firewall.adoc",
         "pve_firewall_ip_sets" : "pve-firewall.adoc",
         "pve_firewall_ipfilter_section" : "pve-firewall.adoc",
         "pve_firewall_iptables_inspect" : "pve-firewall.adoc",
         "pve_firewall_log_levels" : "pve-firewall.adoc",
         "pve_firewall_nft" : "pve-firewall.adoc",
         "pve_firewall_nft_helpful_commands" : "pve-firewall.adoc",
         "pve_firewall_security_groups" : "pve-firewall.adoc",
         "pve_firewall_services_commands" : "pve-firewall.adoc",
         "pve_firewall_vm_container_configuration" : "pve-firewall.adoc",
         "pve_firewall_vnet_configuration" : "pve-firewall.adoc",
         "pveceph_create_mgr" : "pveceph.adoc",
         "pveceph_create_mon" : "pveceph.adoc",
         "pveceph_destroy_mgr" : "pveceph.adoc",
         "pveceph_destroy_mon" : "pveceph.adoc",
         "pveceph_fs" : "pveceph.adoc",
         "pveceph_fs_create" : "pveceph.adoc",
         "pveceph_fs_mds" : "pveceph.adoc",
         "pveceph_scrub" : "pveceph.adoc",
         "pveceph_shutdown" : "pveceph.adoc",
         "pvecm_adding_nodes_with_separated_cluster_network" : "pvecm.adoc",
         "pvecm_cluster_create_via_cli" : "pvecm.adoc",
         "pvecm_cluster_create_via_gui" : "pvecm.adoc",
         "pvecm_cluster_network" : "pvecm.adoc",
         "pvecm_cluster_network_requirements" : "pvecm.adoc",
         "pvecm_corosync_addresses" : "pvecm.adoc",
         "pvecm_corosync_conf_glossary" : "pvecm.adoc",
         "pvecm_create_cluster" : "pvecm.adoc",
         "pvecm_edit_corosync_conf" : "pvecm.adoc",
         "pvecm_join_node_to_cluster" : "pvecm.adoc",
         "pvecm_migration_network" : "pvecm.adoc",
         "pvecm_next_id_range" : "pvecm.adoc",
         "pvecm_qdevice_status_flags" : "pvecm.adoc",
         "pvecm_redundancy" : "pvecm.adoc",
         "pvecm_separate_cluster_net_after_creation" : "pvecm.adoc",
         "pvecm_separate_node_without_reinstall" : "pvecm.adoc",
         "pveproxy_custom_tls_cert" : "pveproxy.adoc",
         "pveproxy_host_acls" : "pveproxy.adoc",
         "pveproxy_listening_address" : "pveproxy.adoc",
         "pveproxy_real_ip" : "pveproxy.adoc",
         "pveproxy_response_compression" : "pveproxy.adoc",
         "pvesdn_config_common_options" : "pvesdn.adoc",
         "pvesdn_config_controllers" : "pvesdn.adoc",
         "pvesdn_config_dhcp" : "pvesdn.adoc",
         "pvesdn_config_dns" : "pvesdn.adoc",
         "pvesdn_config_ipam" : "pvesdn.adoc",
         "pvesdn_config_subnet" : "pvesdn.adoc",
         "pvesdn_config_vnet" : "pvesdn.adoc",
         "pvesdn_config_zone" : "pvesdn.adoc",
         "pvesdn_controller_plugin_BGP" : "pvesdn.adoc",
         "pvesdn_controller_plugin_ISIS" : "pvesdn.adoc",
         "pvesdn_controller_plugin_evpn" : "pvesdn.adoc",
         "pvesdn_dns_plugin_powerdns" : "pvesdn.adoc",
         "pvesdn_firewall_integration" : "pvesdn.adoc",
         "pvesdn_install_dhcp_ipam" : "pvesdn.adoc",
         "pvesdn_install_frrouting" : "pvesdn.adoc",
         "pvesdn_installation" : "pvesdn.adoc",
         "pvesdn_ipam_plugin_netbox" : "pvesdn.adoc",
         "pvesdn_ipam_plugin_phpipam" : "pvesdn.adoc",
         "pvesdn_ipam_plugin_pveipam" : "pvesdn.adoc",
         "pvesdn_main_configuration" : "pvesdn.adoc",
         "pvesdn_notes" : "pvesdn.adoc",
         "pvesdn_overview" : "pvesdn.adoc",
         "pvesdn_setup_example_evpn" : "pvesdn.adoc",
         "pvesdn_setup_example_nat" : "pvesdn.adoc",
         "pvesdn_setup_example_qinq" : "pvesdn.adoc",
         "pvesdn_setup_example_simple" : "pvesdn.adoc",
         "pvesdn_setup_example_vlan" : "pvesdn.adoc",
         "pvesdn_setup_example_vxlan" : "pvesdn.adoc",
         "pvesdn_setup_examples" : "pvesdn.adoc",
         "pvesdn_support_status" : "pvesdn.adoc",
         "pvesdn_tech_and_config_overview" : "pvesdn.adoc",
         "pvesdn_zone_plugin_evpn" : "pvesdn.adoc",
         "pvesdn_zone_plugin_qinq" : "pvesdn.adoc",
         "pvesdn_zone_plugin_simple" : "pvesdn.adoc",
         "pvesdn_zone_plugin_vlan" : "pvesdn.adoc",
         "pvesdn_zone_plugin_vxlan" : "pvesdn.adoc",
         "pvesr_schedule_format_examples" : "calendar-events.adoc",
         "pvesr_schedule_time_format" : "pvesr.adoc",
         "pveum_authentication_realms" : "pveum.adoc",
         "pveum_configure_u2f" : "pveum.adoc",
         "pveum_configure_webauthn" : "pveum.adoc",
         "pveum_groups" : "pveum.adoc",
         "pveum_ldap_reserved_characters" : "pveum.adoc",
         "pveum_ldap_sync" : "pveum.adoc",
         "pveum_ldap_sync_options" : "pveum.adoc",
         "pveum_openid" : "pveum.adoc",
         "pveum_permission_management" : "pveum.adoc",
         "pveum_pools" : "pveum.adoc",
         "pveum_resource_pools" : "pveum.adoc",
         "pveum_roles" : "pveum.adoc",
         "pveum_templated_paths" : "pveum.adoc",
         "pveum_tfa_auth" : "pveum.adoc",
         "pveum_tfa_lockout" : "pveum.adoc",
         "pveum_tokens" : "pveum.adoc",
         "pveum_user_configured_totp" : "pveum.adoc",
         "pveum_user_configured_u2f" : "pveum.adoc",
         "pveum_users" : "pveum.adoc",
         "qm_audio_device" : "qm.adoc",
         "qm_ballooning" : "qm.adoc",
         "qm_bios_and_uefi" : "qm.adoc",
         "qm_bootorder" : "qm.adoc",
         "qm_cloud_init" : "qm-cloud-init.adoc",
         "qm_configuration" : "qm.adoc",
         "qm_copy_and_clone" : "qm.adoc",
         "qm_cpu" : "qm.adoc",
         "qm_cpu_resource_limits" : "qm.adoc",
         "qm_display" : "qm.adoc",
         "qm_general_settings" : "qm.adoc",
         "qm_hard_disk" : "qm.adoc",
         "qm_hard_disk_bus" : "qm.adoc",
         "qm_hard_disk_cache" : "qm.adoc",
         "qm_hard_disk_discard" : "qm.adoc",
         "qm_hard_disk_formats" : "qm.adoc",
         "qm_hard_disk_iothread" : "qm.adoc",
         "qm_hibernate" : "qm.adoc",
         "qm_import_virtual_machines" : "qm.adoc",
         "qm_ivshmem" : "qm.adoc",
         "qm_machine_type" : "qm.adoc",
         "qm_machine_update" : "qm.adoc",
         "qm_meltdown_spectre" : "qm.adoc",
         "qm_memory" : "qm.adoc",
         "qm_memory_encryption" : "qm.adoc",
         "qm_memory_encryption_sev" : "qm.adoc",
         "qm_migration" : "qm.adoc",
         "qm_network_device" : "qm.adoc",
         "qm_options" : "qm.adoc",
         "qm_os_settings" : "qm.adoc",
         "qm_pci_passthrough" : "qm-pci-passthrough.adoc",
         "qm_pci_passthrough_update_initramfs" : "qm-pci-passthrough.adoc",
         "qm_pci_passthrough_vm_config" : "qm-pci-passthrough.adoc",
         "qm_pci_viommu" : "qm-pci-passthrough.adoc",
         "qm_qemu_agent" : "qm.adoc",
         "qm_qga_auto_trim" : "qm.adoc",
         "qm_qga_enable" : "qm.adoc",
         "qm_qga_fsfreeze" : "qm.adoc",
         "qm_snapshots" : "qm.adoc",
         "qm_spice_enhancements" : "qm.adoc",
         "qm_startup_and_shutdown" : "qm.adoc",
         "qm_system_settings" : "qm.adoc",
         "qm_templates" : "qm.adoc",
         "qm_tpm" : "qm.adoc",
         "qm_usb_passthrough" : "qm.adoc",
         "qm_virtio_rng" : "qm.adoc",
         "qm_virtiofs" : "qm.adoc",
         "qm_virtual_machines_settings" : "qm.adoc",
         "qm_vmstatestorage" : "qm.adoc",
         "repos_secure_rpm" : "pve-package-repos.adoc",
         "resource_mapping" : "qm.adoc",
         "storage_btrfs" : "pve-storage-btrfs.adoc",
         "storage_cephfs" : "pve-storage-cephfs.adoc",
         "storage_cephfs_config" : "pve-storage-cephfs.adoc",
         "storage_cifs" : "pve-storage-cifs.adoc",
         "storage_directory" : "pve-storage-dir.adoc",
         "storage_glusterfs" : "pve-storage-glusterfs.adoc",
         "storage_iscsidirect" : "pve-storage-iscsidirect.adoc",
         "storage_lvm" : "pve-storage-lvm.adoc",
         "storage_lvmthin" : "pve-storage-lvmthin.adoc",
         "storage_nfs" : "pve-storage-nfs.adoc",
         "storage_open_iscsi" : "pve-storage-iscsi.adoc",
         "storage_pbs" : "pve-storage-pbs.adoc",
         "storage_pbs_encryption" : "pve-storage-pbs.adoc",
         "storage_rbd_config" : "pve-storage-rbd.adoc",
         "storage_zfs" : "pve-storage-zfs.adoc",
         "storage_zfspool" : "pve-storage-zfspool.adoc",
         "sysadmin_certificate_management" : "certificate-management.adoc",
         "sysadmin_certs_acme_account" : "certificate-management.adoc",
         "sysadmin_certs_acme_automatic_renewal" : "certificate-management.adoc",
         "sysadmin_certs_acme_dns_api_config" : "certificate-management.adoc",
         "sysadmin_certs_acme_dns_challenge" : "certificate-management.adoc",
         "sysadmin_certs_acme_http_challenge" : "certificate-management.adoc",
         "sysadmin_certs_acme_plugins" : "certificate-management.adoc",
         "sysadmin_certs_acme_switch_from_staging" : "certificate-management.adoc",
         "sysadmin_certs_api_gui" : "certificate-management.adoc",
         "sysadmin_certs_get_trusted_acme_cert" : "certificate-management.adoc",
         "sysadmin_certs_upload_custom" : "certificate-management.adoc",
         "sysadmin_firmware_cpu" : "firmware-updates.adoc",
         "sysadmin_firmware_persistent" : "firmware-updates.adoc",
         "sysadmin_firmware_runtime_files" : "firmware-updates.adoc",
         "sysadmin_firmware_troubleshooting" : "firmware-updates.adoc",
         "sysadmin_network_bond" : "pve-network.adoc",
         "sysadmin_network_configuration" : "pve-network.adoc",
         "sysadmin_network_masquerading" : "pve-network.adoc",
         "sysadmin_network_routed" : "pve-network.adoc",
         "sysadmin_network_vlan" : "pve-network.adoc",
         "sysadmin_package_repositories" : "pve-package-repos.adoc",
         "sysadmin_package_repositories_ceph" : "pve-package-repos.adoc",
         "sysadmin_pxvirt_repo" : "pve-package-repos.adoc",
         "sysadmin_zfs_add_cache_and_log_dev" : "local-zfs.adoc",
         "sysadmin_zfs_change_failed_dev" : "local-zfs.adoc",
         "sysadmin_zfs_create_new_zpool" : "local-zfs.adoc",
         "sysadmin_zfs_create_new_zpool_raid0" : "local-zfs.adoc",
         "sysadmin_zfs_create_new_zpool_raid1" : "local-zfs.adoc",
         "sysadmin_zfs_create_new_zpool_raid10" : "local-zfs.adoc",
         "sysadmin_zfs_create_new_zpool_raidz1" : "local-zfs.adoc",
         "sysadmin_zfs_create_new_zpool_with_cache" : "local-zfs.adoc",
         "sysadmin_zfs_create_new_zpool_with_log" : "local-zfs.adoc",
         "sysadmin_zfs_features" : "local-zfs.adoc",
         "sysadmin_zfs_limit_memory_usage" : "local-zfs.adoc",
         "sysadmin_zfs_raid_considerations" : "local-zfs.adoc",
         "sysadmin_zfs_raid_performance" : "local-zfs.adoc",
         "sysadmin_zfs_raid_size_space_usage_redundancy" : "local-zfs.adoc",
         "sysadmin_zfs_special_device" : "local-zfs.adoc",
         "sysboot" : "system-booting.adoc",
         "sysboot_determine_bootloader_used" : "system-booting.adoc",
         "sysboot_edit_kernel_cmdline" : "system-booting.adoc",
         "sysboot_grub" : "system-booting.adoc",
         "sysboot_installer_part_scheme" : "system-booting.adoc",
         "sysboot_kernel_pin" : "system-booting.adoc",
         "sysboot_proxmox_boot_refresh" : "system-booting.adoc",
         "sysboot_proxmox_boot_setup" : "system-booting.adoc",
         "sysboot_proxmox_boot_tool" : "system-booting.adoc",
         "sysboot_secure_boot" : "system-booting.adoc",
         "sysboot_systemd_boot" : "system-booting.adoc",
         "sysboot_systemd_boot_config" : "system-booting.adoc",
         "system_software_updates" : "system-software-updates.adoc",
         "systemd_network_interface_names" : "pve-network.adoc",
         "translation" : "translation.adoc",
         "udp" : "pve-external-metric-server.adoc",
         "user-realms-ad" : "pveum.adoc",
         "user-realms-ldap" : "pveum.adoc",
         "user-realms-pam" : "pveum.adoc",
         "user-realms-pve" : "pveum.adoc",
         "user_mgmt" : "pveum.adoc",
         "user_tfa_setup_recovery_keys" : "pveum.adoc",
         "user_tfa_setup_totp" : "pveum.adoc",
         "user_tfa_setup_webauthn" : "pveum.adoc",
         "vzdump_configuration" : "vzdump.adoc",
         "vzdump_jobs" : "vzdump.adoc",
         "vzdump_notes" : "vzdump.adoc",
         "vzdump_protection" : "vzdump.adoc",
         "vzdump_restore" : "vzdump.adoc",
         "vzdump_retention" : "vzdump.adoc",
         "zfs_compression" : "local-zfs.adoc",
         "zfs_encryption" : "local-zfs.adoc",
         "zfs_swap" : "local-zfs.adoc"
      },
      "wiki" : {
         "Ahmed15" : "pve-bibliography.adoc",
         "Ahmed16" : "pve-bibliography.adoc",
         "Bessen09" : "pve-bibliography.adoc",
         "Bir96" : "pve-bibliography.adoc",
         "Cheng14" : "pve-bibliography.adoc",
         "Goldman16" : "pve-bibliography.adoc",
         "Hertzog13" : "pve-bibliography.adoc",
         "Kreibich10" : "pve-bibliography.adoc",
         "Loeliger12" : "pve-bibliography.adoc",
         "Loshin03" : "pve-bibliography.adoc",
         "Mauerer08" : "pve-bibliography.adoc",
         "Richardson07" : "pve-bibliography.adoc",
         "Singh15" : "pve-bibliography.adoc",
         "Singh16" : "pve-bibliography.adoc",
         "Surber16" : "pve-bibliography.adoc",
         "Walsh10" : "pve-bibliography.adoc",
         "_recommendations_for_a_healthy_ceph_cluster" : "pveceph.adoc",
         "advanced_btrfs_options" : "pve-installation.adoc",
         "advanced_lvm_options" : "pve-installation.adoc",
         "advanced_zfs_options" : "pve-installation.adoc",
         "ballooning-target" : "pvenode.adoc",
         "ceph_rados_block_devices" : "pve-storage-rbd.adoc",
         "chapter_btrfs" : "local-btrfs.adoc",
         "chapter_calendar_events" : "calendar-events.adoc",
         "chapter_firmware_updates" : "firmware-updates.adoc",
         "chapter_gui" : "pve-gui.adoc",
         "chapter_ha_manager" : "ha-manager.adoc",
         "chapter_hyper_converged_infrastructure" : "hyper-converged-infrastructure.adoc",
         "chapter_installation" : "pve-installation.adoc",
         "chapter_lvm" : "local-lvm.adoc",
         "chapter_notifications" : "notifications.adoc",
         "chapter_pct" : "pct.adoc",
         "chapter_pmxcfs" : "pmxcfs.adoc",
         "chapter_pve_firewall" : "pve-firewall.adoc",
         "chapter_pveceph" : "pveceph.adoc",
         "chapter_pvecm" : "pvecm.adoc",
         "chapter_pvesdn" : "pvesdn.adoc",
         "chapter_pvesr" : "pvesr.adoc",
         "chapter_qm_vcpu_list" : "qm-vcpu-list.adoc",
         "chapter_storage" : "pvesm.adoc",
         "chapter_system_administration" : "sysadmin.adoc",
         "chapter_user_management" : "pveum.adoc",
         "chapter_virtual_machines" : "qm.adoc",
         "chapter_vzdump" : "vzdump.adoc",
         "chapter_zfs" : "local-zfs.adoc",
         "cli_general" : "cli-general.adoc",
         "configuration_files" : "configuration-files.adoc",
         "configuration_files_casing" : "configuration-files.adoc",
         "datacenter_configuration_file" : "datacenter.cfg.adoc",
         "disk_health_monitoring" : "pve-disk-health-monitoring.adoc",
         "external_metric_server" : "pve-external-metric-server.adoc",
         "faq-support-table" : "pve-faq.adoc",
         "faq-upgrade" : "pve-faq.adoc",
         "faq-upgrade-major" : "pve-faq.adoc",
         "first_guest_boot_delay" : "pvenode.adoc",
         "getting_help" : "getting-help.adoc",
         "gui_consent_banner" : "pve-gui.adoc",
         "gui_my_settings" : "pve-gui.adoc",
         "gui_tags" : "pve-gui.adoc",
         "ha_manager_crm" : "ha-manager.adoc",
         "ha_manager_crs" : "ha-manager.adoc",
         "ha_manager_error_recovery" : "ha-manager.adoc",
         "ha_manager_fencing" : "ha-manager.adoc",
         "ha_manager_groups" : "ha-manager.adoc",
         "ha_manager_lrm" : "ha-manager.adoc",
         "ha_manager_node_maintenance" : "ha-manager.adoc",
         "ha_manager_package_updates" : "ha-manager.adoc",
         "ha_manager_resource_config" : "ha-manager.adoc",
         "ha_manager_resources" : "ha-manager.adoc",
         "ha_manager_service_states" : "ha-manager.adoc",
         "ha_manager_shutdown_policy" : "ha-manager.adoc",
         "ha_manager_start_failure_policy" : "ha-manager.adoc",
         "howto_improve_pve_docs" : "howto-improve-pve-docs.adoc",
         "i18n_with_git" : "translation.adoc",
         "i18n_without_git" : "translation.adoc",
         "install_minimal_requirements" : "pve-system-requirements.adoc",
         "install_recommended_requirements" : "pve-system-requirements.adoc",
         "installation_installer" : "pve-installation.adoc",
         "installation_prepare_media" : "pve-installation-media.adoc",
         "installation_unattended" : "pve-installation.adoc",
         "intro_central_management" : "pve-intro.adoc",
         "intro_project_history" : "pve-intro.adoc",
         "kernel_samepage_merging" : "kernel-samepage-merging.adoc",
         "markdown_basics" : "markdown-primer.adoc",
         "metric_server_graphite" : "pve-external-metric-server.adoc",
         "metric_server_influxdb" : "pve-external-metric-server.adoc",
         "network_override_device_names" : "pve-network.adoc",
         "network_pin_naming_scheme_version" : "pve-network.adoc",
         "nomodeset_kernel_param" : "pve-installation.adoc",
         "notification_events" : "notifications.adoc",
         "notification_matchers" : "notifications.adoc",
         "notification_matchers_calendar" : "notifications.adoc",
         "notification_matchers_field" : "notifications.adoc",
         "notification_matchers_severity" : "notifications.adoc",
         "notification_mode" : "notifications.adoc",
         "notification_targets" : "notifications.adoc",
         "notification_targets_gotify" : "notifications.adoc",
         "notification_targets_sendmail" : "notifications.adoc",
         "notification_targets_smtp" : "notifications.adoc",
         "notification_targets_webhook" : "notifications.adoc",
         "pct_cgroup" : "pct.adoc",
         "pct_cgroup_change_version" : "pct.adoc",
         "pct_cgroup_compat" : "pct.adoc",
         "pct_configuration" : "pct.adoc",
         "pct_container_images" : "pct.adoc",
         "pct_container_network" : "pct.adoc",
         "pct_container_storage" : "pct.adoc",
         "pct_cpu" : "pct.adoc",
         "pct_general" : "pct.adoc",
         "pct_memory" : "pct.adoc",
         "pct_migration" : "pct.adoc",
         "pct_mount_points" : "pct.adoc",
         "pct_options" : "pct.adoc",
         "pct_settings" : "pct.adoc",
         "pct_snapshots" : "pct.adoc",
         "pct_startup_and_shutdown" : "pct.adoc",
         "pct_supported_distributions" : "pct.adoc",
         "proxmox_node_management" : "pvenode.adoc",
         "pve_ceph_device_classes" : "pveceph.adoc",
         "pve_ceph_ec_pools" : "pveceph.adoc",
         "pve_ceph_install" : "pveceph.adoc",
         "pve_ceph_install_wizard" : "pveceph.adoc",
         "pve_ceph_manager" : "pveceph.adoc",
         "pve_ceph_mon_and_ts" : "pveceph.adoc",
         "pve_ceph_monitors" : "pveceph.adoc",
         "pve_ceph_osd_create" : "pveceph.adoc",
         "pve_ceph_osd_destroy" : "pveceph.adoc",
         "pve_ceph_osd_replace" : "pveceph.adoc",
         "pve_ceph_osds" : "pveceph.adoc",
         "pve_ceph_pools" : "pveceph.adoc",
         "pve_ceph_recommendation_cpu" : "pveceph.adoc",
         "pve_ceph_recommendation_disk" : "pveceph.adoc",
         "pve_ceph_recommendation_memory" : "pveceph.adoc",
         "pve_ceph_recommendation_network" : "pveceph.adoc",
         "pve_ceph_recommendation_raid" : "pveceph.adoc",
         "pve_ceph_ts" : "pveceph.adoc",
         "pve_ceph_ts_causes" : "pveceph.adoc",
         "pve_ceph_ts_logs" : "pveceph.adoc",
         "pve_ceph_ts_problems" : "pveceph.adoc",
         "pve_ceph_wizard_networks" : "pveceph.adoc",
         "pve_firewall_cluster_wide_setup" : "pve-firewall.adoc",
         "pve_firewall_default_rules" : "pve-firewall.adoc",
         "pve_firewall_host_specific_configuration" : "pve-firewall.adoc",
         "pve_firewall_ip_aliases" : "pve-firewall.adoc",
         "pve_firewall_ip_sets" : "pve-firewall.adoc",
         "pve_firewall_ipfilter_section" : "pve-firewall.adoc",
         "pve_firewall_iptables_inspect" : "pve-firewall.adoc",
         "pve_firewall_log_levels" : "pve-firewall.adoc",
         "pve_firewall_nft" : "pve-firewall.adoc",
         "pve_firewall_nft_helpful_commands" : "pve-firewall.adoc",
         "pve_firewall_security_groups" : "pve-firewall.adoc",
         "pve_firewall_services_commands" : "pve-firewall.adoc",
         "pve_firewall_vm_container_configuration" : "pve-firewall.adoc",
         "pve_firewall_vnet_configuration" : "pve-firewall.adoc",
         "pveceph_create_mgr" : "pveceph.adoc",
         "pveceph_create_mon" : "pveceph.adoc",
         "pveceph_destroy_mgr" : "pveceph.adoc",
         "pveceph_destroy_mon" : "pveceph.adoc",
         "pveceph_fs" : "pveceph.adoc",
         "pveceph_fs_create" : "pveceph.adoc",
         "pveceph_fs_mds" : "pveceph.adoc",
         "pveceph_scrub" : "pveceph.adoc",
         "pveceph_shutdown" : "pveceph.adoc",
         "pvecm_adding_nodes_with_separated_cluster_network" : "pvecm.adoc",
         "pvecm_cluster_create_via_cli" : "pvecm.adoc",
         "pvecm_cluster_create_via_gui" : "pvecm.adoc",
         "pvecm_cluster_network" : "pvecm.adoc",
         "pvecm_cluster_network_requirements" : "pvecm.adoc",
         "pvecm_corosync_addresses" : "pvecm.adoc",
         "pvecm_corosync_conf_glossary" : "pvecm.adoc",
         "pvecm_create_cluster" : "pvecm.adoc",
         "pvecm_edit_corosync_conf" : "pvecm.adoc",
         "pvecm_join_node_to_cluster" : "pvecm.adoc",
         "pvecm_migration_network" : "pvecm.adoc",
         "pvecm_next_id_range" : "pvecm.adoc",
         "pvecm_qdevice_status_flags" : "pvecm.adoc",
         "pvecm_redundancy" : "pvecm.adoc",
         "pvecm_separate_cluster_net_after_creation" : "pvecm.adoc",
         "pvecm_separate_node_without_reinstall" : "pvecm.adoc",
         "pveproxy_custom_tls_cert" : "pveproxy.adoc",
         "pveproxy_host_acls" : "pveproxy.adoc",
         "pveproxy_listening_address" : "pveproxy.adoc",
         "pveproxy_real_ip" : "pveproxy.adoc",
         "pveproxy_response_compression" : "pveproxy.adoc",
         "pvesdn_config_common_options" : "pvesdn.adoc",
         "pvesdn_config_controllers" : "pvesdn.adoc",
         "pvesdn_config_dhcp" : "pvesdn.adoc",
         "pvesdn_config_dns" : "pvesdn.adoc",
         "pvesdn_config_ipam" : "pvesdn.adoc",
         "pvesdn_config_subnet" : "pvesdn.adoc",
         "pvesdn_config_vnet" : "pvesdn.adoc",
         "pvesdn_config_zone" : "pvesdn.adoc",
         "pvesdn_controller_plugin_BGP" : "pvesdn.adoc",
         "pvesdn_controller_plugin_ISIS" : "pvesdn.adoc",
         "pvesdn_controller_plugin_evpn" : "pvesdn.adoc",
         "pvesdn_dns_plugin_powerdns" : "pvesdn.adoc",
         "pvesdn_firewall_integration" : "pvesdn.adoc",
         "pvesdn_install_dhcp_ipam" : "pvesdn.adoc",
         "pvesdn_install_frrouting" : "pvesdn.adoc",
         "pvesdn_installation" : "pvesdn.adoc",
         "pvesdn_ipam_plugin_netbox" : "pvesdn.adoc",
         "pvesdn_ipam_plugin_phpipam" : "pvesdn.adoc",
         "pvesdn_ipam_plugin_pveipam" : "pvesdn.adoc",
         "pvesdn_main_configuration" : "pvesdn.adoc",
         "pvesdn_notes" : "pvesdn.adoc",
         "pvesdn_overview" : "pvesdn.adoc",
         "pvesdn_setup_example_evpn" : "pvesdn.adoc",
         "pvesdn_setup_example_nat" : "pvesdn.adoc",
         "pvesdn_setup_example_qinq" : "pvesdn.adoc",
         "pvesdn_setup_example_simple" : "pvesdn.adoc",
         "pvesdn_setup_example_vlan" : "pvesdn.adoc",
         "pvesdn_setup_example_vxlan" : "pvesdn.adoc",
         "pvesdn_setup_examples" : "pvesdn.adoc",
         "pvesdn_support_status" : "pvesdn.adoc",
         "pvesdn_tech_and_config_overview" : "pvesdn.adoc",
         "pvesdn_zone_plugin_evpn" : "pvesdn.adoc",
         "pvesdn_zone_plugin_qinq" : "pvesdn.adoc",
         "pvesdn_zone_plugin_simple" : "pvesdn.adoc",
         "pvesdn_zone_plugin_vlan" : "pvesdn.adoc",
         "pvesdn_zone_plugin_vxlan" : "pvesdn.adoc",
         "pvesr_schedule_format_examples" : "calendar-events.adoc",
         "pvesr_schedule_time_format" : "pvesr.adoc",
         "pveum_authentication_realms" : "pveum.adoc",
         "pveum_configure_u2f" : "pveum.adoc",
         "pveum_configure_webauthn" : "pveum.adoc",
         "pveum_groups" : "pveum.adoc",
         "pveum_ldap_reserved_characters" : "pveum.adoc",
         "pveum_ldap_sync" : "pveum.adoc",
         "pveum_ldap_sync_options" : "pveum.adoc",
         "pveum_openid" : "pveum.adoc",
         "pveum_permission_management" : "pveum.adoc",
         "pveum_pools" : "pveum.adoc",
         "pveum_resource_pools" : "pveum.adoc",
         "pveum_roles" : "pveum.adoc",
         "pveum_templated_paths" : "pveum.adoc",
         "pveum_tfa_auth" : "pveum.adoc",
         "pveum_tfa_lockout" : "pveum.adoc",
         "pveum_tokens" : "pveum.adoc",
         "pveum_user_configured_totp" : "pveum.adoc",
         "pveum_user_configured_u2f" : "pveum.adoc",
         "pveum_users" : "pveum.adoc",
         "qm_audio_device" : "qm.adoc",
         "qm_ballooning" : "qm.adoc",
         "qm_bios_and_uefi" : "qm.adoc",
         "qm_bootorder" : "qm.adoc",
         "qm_cloud_init" : "qm-cloud-init.adoc",
         "qm_configuration" : "qm.adoc",
         "qm_copy_and_clone" : "qm.adoc",
         "qm_cpu" : "qm.adoc",
         "qm_cpu_resource_limits" : "qm.adoc",
         "qm_display" : "qm.adoc",
         "qm_general_settings" : "qm.adoc",
         "qm_hard_disk" : "qm.adoc",
         "qm_hard_disk_bus" : "qm.adoc",
         "qm_hard_disk_cache" : "qm.adoc",
         "qm_hard_disk_discard" : "qm.adoc",
         "qm_hard_disk_formats" : "qm.adoc",
         "qm_hard_disk_iothread" : "qm.adoc",
         "qm_hibernate" : "qm.adoc",
         "qm_import_virtual_machines" : "qm.adoc",
         "qm_ivshmem" : "qm.adoc",
         "qm_machine_type" : "qm.adoc",
         "qm_machine_update" : "qm.adoc",
         "qm_meltdown_spectre" : "qm.adoc",
         "qm_memory" : "qm.adoc",
         "qm_memory_encryption" : "qm.adoc",
         "qm_memory_encryption_sev" : "qm.adoc",
         "qm_migration" : "qm.adoc",
         "qm_network_device" : "qm.adoc",
         "qm_options" : "qm.adoc",
         "qm_os_settings" : "qm.adoc",
         "qm_pci_passthrough" : "qm-pci-passthrough.adoc",
         "qm_pci_passthrough_update_initramfs" : "qm-pci-passthrough.adoc",
         "qm_pci_passthrough_vm_config" : "qm-pci-passthrough.adoc",
         "qm_pci_viommu" : "qm-pci-passthrough.adoc",
         "qm_qemu_agent" : "qm.adoc",
         "qm_qga_auto_trim" : "qm.adoc",
         "qm_qga_enable" : "qm.adoc",
         "qm_qga_fsfreeze" : "qm.adoc",
         "qm_snapshots" : "qm.adoc",
         "qm_spice_enhancements" : "qm.adoc",
         "qm_startup_and_shutdown" : "qm.adoc",
         "qm_system_settings" : "qm.adoc",
         "qm_templates" : "qm.adoc",
         "qm_tpm" : "qm.adoc",
         "qm_usb_passthrough" : "qm.adoc",
         "qm_virtio_rng" : "qm.adoc",
         "qm_virtiofs" : "qm.adoc",
         "qm_virtual_machines_settings" : "qm.adoc",
         "qm_vmstatestorage" : "qm.adoc",
         "repos_secure_rpm" : "pve-package-repos.adoc",
         "resource_mapping" : "qm.adoc",
         "storage_btrfs" : "pve-storage-btrfs.adoc",
         "storage_cephfs" : "pve-storage-cephfs.adoc",
         "storage_cephfs_config" : "pve-storage-cephfs.adoc",
         "storage_cifs" : "pve-storage-cifs.adoc",
         "storage_directory" : "pve-storage-dir.adoc",
         "storage_glusterfs" : "pve-storage-glusterfs.adoc",
         "storage_iscsidirect" : "pve-storage-iscsidirect.adoc",
         "storage_lvm" : "pve-storage-lvm.adoc",
         "storage_lvmthin" : "pve-storage-lvmthin.adoc",
         "storage_nfs" : "pve-storage-nfs.adoc",
         "storage_open_iscsi" : "pve-storage-iscsi.adoc",
         "storage_pbs" : "pve-storage-pbs.adoc",
         "storage_pbs_encryption" : "pve-storage-pbs.adoc",
         "storage_rbd_config" : "pve-storage-rbd.adoc",
         "storage_zfs" : "pve-storage-zfs.adoc",
         "storage_zfspool" : "pve-storage-zfspool.adoc",
         "sysadmin_certificate_management" : "certificate-management.adoc",
         "sysadmin_certs_acme_account" : "certificate-management.adoc",
         "sysadmin_certs_acme_automatic_renewal" : "certificate-management.adoc",
         "sysadmin_certs_acme_dns_api_config" : "certificate-management.adoc",
         "sysadmin_certs_acme_dns_challenge" : "certificate-management.adoc",
         "sysadmin_certs_acme_http_challenge" : "certificate-management.adoc",
         "sysadmin_certs_acme_plugins" : "certificate-management.adoc",
         "sysadmin_certs_acme_switch_from_staging" : "certificate-management.adoc",
         "sysadmin_certs_api_gui" : "certificate-management.adoc",
         "sysadmin_certs_get_trusted_acme_cert" : "certificate-management.adoc",
         "sysadmin_certs_upload_custom" : "certificate-management.adoc",
         "sysadmin_firmware_cpu" : "firmware-updates.adoc",
         "sysadmin_firmware_persistent" : "firmware-updates.adoc",
         "sysadmin_firmware_runtime_files" : "firmware-updates.adoc",
         "sysadmin_firmware_troubleshooting" : "firmware-updates.adoc",
         "sysadmin_network_bond" : "pve-network.adoc",
         "sysadmin_network_configuration" : "pve-network.adoc",
         "sysadmin_network_masquerading" : "pve-network.adoc",
         "sysadmin_network_routed" : "pve-network.adoc",
         "sysadmin_network_vlan" : "pve-network.adoc",
         "sysadmin_package_repositories" : "pve-package-repos.adoc",
         "sysadmin_package_repositories_ceph" : "pve-package-repos.adoc",
         "sysadmin_pxvirt_repo" : "pve-package-repos.adoc",
         "sysadmin_zfs_add_cache_and_log_dev" : "local-zfs.adoc",
         "sysadmin_zfs_change_failed_dev" : "local-zfs.adoc",
         "sysadmin_zfs_create_new_zpool" : "local-zfs.adoc",
         "sysadmin_zfs_create_new_zpool_raid0" : "local-zfs.adoc",
         "sysadmin_zfs_create_new_zpool_raid1" : "local-zfs.adoc",
         "sysadmin_zfs_create_new_zpool_raid10" : "local-zfs.adoc",
         "sysadmin_zfs_create_new_zpool_raidz1" : "local-zfs.adoc",
         "sysadmin_zfs_create_new_zpool_with_cache" : "local-zfs.adoc",
         "sysadmin_zfs_create_new_zpool_with_log" : "local-zfs.adoc",
         "sysadmin_zfs_features" : "local-zfs.adoc",
         "sysadmin_zfs_limit_memory_usage" : "local-zfs.adoc",
         "sysadmin_zfs_raid_considerations" : "local-zfs.adoc",
         "sysadmin_zfs_raid_performance" : "local-zfs.adoc",
         "sysadmin_zfs_raid_size_space_usage_redundancy" : "local-zfs.adoc",
         "sysadmin_zfs_special_device" : "local-zfs.adoc",
         "sysboot" : "system-booting.adoc",
         "sysboot_determine_bootloader_used" : "system-booting.adoc",
         "sysboot_edit_kernel_cmdline" : "system-booting.adoc",
         "sysboot_grub" : "system-booting.adoc",
         "sysboot_installer_part_scheme" : "system-booting.adoc",
         "sysboot_kernel_pin" : "system-booting.adoc",
         "sysboot_proxmox_boot_refresh" : "system-booting.adoc",
         "sysboot_proxmox_boot_setup" : "system-booting.adoc",
         "sysboot_proxmox_boot_tool" : "system-booting.adoc",
         "sysboot_secure_boot" : "system-booting.adoc",
         "sysboot_systemd_boot" : "system-booting.adoc",
         "sysboot_systemd_boot_config" : "system-booting.adoc",
         "system_software_updates" : "system-software-updates.adoc",
         "systemd_network_interface_names" : "pve-network.adoc",
         "translation" : "translation.adoc",
         "udp" : "pve-external-metric-server.adoc",
         "user-realms-ad" : "pveum.adoc",
         "user-realms-ldap" : "pveum.adoc",
         "user-realms-pam" : "pveum.adoc",
         "user-realms-pve" : "pveum.adoc",
         "user_mgmt" : "pveum.adoc",
         "user_tfa_setup_recovery_keys" : "pveum.adoc",
         "user_tfa_setup_totp" : "pveum.adoc",
         "user_tfa_setup_webauthn" : "pveum.adoc",
         "vzdump_configuration" : "vzdump.adoc",
         "vzdump_jobs" : "vzdump.adoc",
         "vzdump_notes" : "vzdump.adoc",
         "vzdump_protection" : "vzdump.adoc",
         "vzdump_restore" : "vzdump.adoc",
         "vzdump_retention" : "vzdump.adoc",
         "zfs_compression" : "local-zfs.adoc",
         "zfs_encryption" : "local-zfs.adoc",
         "zfs_swap" : "local-zfs.adoc"
      }
   },
   "blockid_target" : {
      "default" : {
         "Ahmed15" : "link:/pve-docs/chapter-pve-bibliography.html#Ahmed15",
         "Ahmed16" : "link:/pve-docs/chapter-pve-bibliography.html#Ahmed16",
         "Bessen09" : "link:/pve-docs/chapter-pve-bibliography.html#Bessen09",
         "Bir96" : "link:/pve-docs/chapter-pve-bibliography.html#Bir96",
         "Cheng14" : "link:/pve-docs/chapter-pve-bibliography.html#Cheng14",
         "Goldman16" : "link:/pve-docs/chapter-pve-bibliography.html#Goldman16",
         "Hertzog13" : "link:/pve-docs/chapter-pve-bibliography.html#Hertzog13",
         "Kreibich10" : "link:/pve-docs/chapter-pve-bibliography.html#Kreibich10",
         "Loeliger12" : "link:/pve-docs/chapter-pve-bibliography.html#Loeliger12",
         "Loshin03" : "link:/pve-docs/chapter-pve-bibliography.html#Loshin03",
         "Mauerer08" : "link:/pve-docs/chapter-pve-bibliography.html#Mauerer08",
         "Richardson07" : "link:/pve-docs/chapter-pve-bibliography.html#Richardson07",
         "Singh15" : "link:/pve-docs/chapter-pve-bibliography.html#Singh15",
         "Singh16" : "link:/pve-docs/chapter-pve-bibliography.html#Singh16",
         "Surber16" : "link:/pve-docs/chapter-pve-bibliography.html#Surber16",
         "Walsh10" : "link:/pve-docs/chapter-pve-bibliography.html#Walsh10",
         "_recommendations_for_a_healthy_ceph_cluster" : "link:/pve-docs/chapter-pveceph.html#_recommendations_for_a_healthy_ceph_cluster",
         "advanced_btrfs_options" : "link:/pve-docs/chapter-pve-installation.html#advanced_btrfs_options",
         "advanced_lvm_options" : "link:/pve-docs/chapter-pve-installation.html#advanced_lvm_options",
         "advanced_zfs_options" : "link:/pve-docs/chapter-pve-installation.html#advanced_zfs_options",
         "ballooning-target" : "link:/pve-docs/chapter-sysadmin.html#ballooning-target",
         "ceph_rados_block_devices" : "link:/pve-docs/chapter-pvesm.html#ceph_rados_block_devices",
         "chapter_btrfs" : "link:/pve-docs/chapter-sysadmin.html#chapter_btrfs",
         "chapter_calendar_events" : "link:/pve-docs/pve-admin-guide.html#chapter_calendar_events",
         "chapter_firmware_updates" : "link:/pve-docs/chapter-sysadmin.html#chapter_firmware_updates",
         "chapter_gui" : "link:/pve-docs/chapter-pve-gui.html#chapter_gui",
         "chapter_ha_manager" : "link:/pve-docs/chapter-ha-manager.html#chapter_ha_manager",
         "chapter_hyper_converged_infrastructure" : "link:/pve-docs/pve-admin-guide.html#chapter_hyper_converged_infrastructure",
         "chapter_installation" : "link:/pve-docs/chapter-pve-installation.html#chapter_installation",
         "chapter_lvm" : "link:/pve-docs/chapter-sysadmin.html#chapter_lvm",
         "chapter_notifications" : "link:/pve-docs/chapter-notifications.html#chapter_notifications",
         "chapter_pct" : "link:/pve-docs/chapter-pct.html#chapter_pct",
         "chapter_pmxcfs" : "link:/pve-docs/chapter-pmxcfs.html#chapter_pmxcfs",
         "chapter_pve_firewall" : "link:/pve-docs/chapter-pve-firewall.html#chapter_pve_firewall",
         "chapter_pveceph" : "link:/pve-docs/chapter-pveceph.html#chapter_pveceph",
         "chapter_pvecm" : "link:/pve-docs/chapter-pvecm.html#chapter_pvecm",
         "chapter_pvesdn" : "link:/pve-docs/chapter-pvesdn.html#chapter_pvesdn",
         "chapter_pvesr" : "link:/pve-docs/chapter-pvesr.html#chapter_pvesr",
         "chapter_qm_vcpu_list" : "link:/pve-docs/pve-admin-guide.html#chapter_qm_vcpu_list",
         "chapter_storage" : "link:/pve-docs/chapter-pvesm.html#chapter_storage",
         "chapter_system_administration" : "link:/pve-docs/chapter-sysadmin.html#chapter_system_administration",
         "chapter_user_management" : "link:/pve-docs/chapter-pveum.html#chapter_user_management",
         "chapter_virtual_machines" : "link:/pve-docs/chapter-qm.html#chapter_virtual_machines",
         "chapter_vzdump" : "link:/pve-docs/chapter-vzdump.html#chapter_vzdump",
         "chapter_zfs" : "link:/pve-docs/chapter-sysadmin.html#chapter_zfs",
         "cli_general" : "link:/pve-docs/pve-admin-guide.html#cli_general",
         "configuration_files" : "link:/pve-docs/pve-admin-guide.html#configuration_files",
         "configuration_files_casing" : "link:/pve-docs/pve-admin-guide.html#configuration_files_casing",
         "datacenter_configuration_file" : "link:/pve-docs/pve-admin-guide.html#datacenter_configuration_file",
         "disk_health_monitoring" : "link:/pve-docs/chapter-sysadmin.html#disk_health_monitoring",
         "external_metric_server" : "link:/pve-docs/chapter-sysadmin.html#external_metric_server",
         "faq-support-table" : "link:/pve-docs/chapter-pve-faq.html#faq-support-table",
         "faq-upgrade" : "link:/pve-docs/chapter-pve-faq.html#faq-upgrade",
         "faq-upgrade-major" : "link:/pve-docs/chapter-pve-faq.html#faq-upgrade-major",
         "first_guest_boot_delay" : "link:/pve-docs/chapter-sysadmin.html#first_guest_boot_delay",
         "getting_help" : "link:/pve-docs/pve-admin-guide.html#getting_help",
         "gui_consent_banner" : "link:/pve-docs/chapter-pve-gui.html#gui_consent_banner",
         "gui_my_settings" : "link:/pve-docs/chapter-pve-gui.html#gui_my_settings",
         "gui_tags" : "link:/pve-docs/chapter-pve-gui.html#gui_tags",
         "ha_manager_crm" : "link:/pve-docs/chapter-ha-manager.html#ha_manager_crm",
         "ha_manager_crs" : "link:/pve-docs/chapter-ha-manager.html#ha_manager_crs",
         "ha_manager_error_recovery" : "link:/pve-docs/chapter-ha-manager.html#ha_manager_error_recovery",
         "ha_manager_fencing" : "link:/pve-docs/chapter-ha-manager.html#ha_manager_fencing",
         "ha_manager_groups" : "link:/pve-docs/chapter-ha-manager.html#ha_manager_groups",
         "ha_manager_lrm" : "link:/pve-docs/chapter-ha-manager.html#ha_manager_lrm",
         "ha_manager_node_maintenance" : "link:/pve-docs/chapter-ha-manager.html#ha_manager_node_maintenance",
         "ha_manager_package_updates" : "link:/pve-docs/chapter-ha-manager.html#ha_manager_package_updates",
         "ha_manager_resource_config" : "link:/pve-docs/chapter-ha-manager.html#ha_manager_resource_config",
         "ha_manager_resources" : "link:/pve-docs/chapter-ha-manager.html#ha_manager_resources",
         "ha_manager_service_states" : "link:/pve-docs/chapter-ha-manager.html#ha_manager_service_states",
         "ha_manager_shutdown_policy" : "link:/pve-docs/chapter-ha-manager.html#ha_manager_shutdown_policy",
         "ha_manager_start_failure_policy" : "link:/pve-docs/chapter-ha-manager.html#ha_manager_start_failure_policy",
         "howto_improve_pve_docs" : "link:/pve-docs/pve-admin-guide.html#howto_improve_pve_docs",
         "i18n_with_git" : "link:/pve-docs/pve-admin-guide.html#i18n_with_git",
         "i18n_without_git" : "link:/pve-docs/pve-admin-guide.html#i18n_without_git",
         "install_minimal_requirements" : "link:/pve-docs/chapter-pve-installation.html#install_minimal_requirements",
         "install_recommended_requirements" : "link:/pve-docs/chapter-pve-installation.html#install_recommended_requirements",
         "installation_installer" : "link:/pve-docs/chapter-pve-installation.html#installation_installer",
         "installation_prepare_media" : "link:/pve-docs/chapter-pve-installation.html#installation_prepare_media",
         "installation_unattended" : "link:/pve-docs/chapter-pve-installation.html#installation_unattended",
         "intro_central_management" : "link:/pve-docs/pve-admin-guide.html#intro_central_management",
         "intro_project_history" : "link:/pve-docs/pve-admin-guide.html#intro_project_history",
         "kernel_samepage_merging" : "link:/pve-docs/chapter-sysadmin.html#kernel_samepage_merging",
         "markdown_basics" : "link:/pve-docs/pve-admin-guide.html#markdown_basics",
         "metric_server_graphite" : "link:/pve-docs/chapter-sysadmin.html#metric_server_graphite",
         "metric_server_influxdb" : "link:/pve-docs/chapter-sysadmin.html#metric_server_influxdb",
         "network_override_device_names" : "link:/pve-docs/chapter-sysadmin.html#network_override_device_names",
         "network_pin_naming_scheme_version" : "link:/pve-docs/chapter-sysadmin.html#network_pin_naming_scheme_version",
         "nomodeset_kernel_param" : "link:/pve-docs/chapter-pve-installation.html#nomodeset_kernel_param",
         "notification_events" : "link:/pve-docs/chapter-notifications.html#notification_events",
         "notification_matchers" : "link:/pve-docs/chapter-notifications.html#notification_matchers",
         "notification_matchers_calendar" : "link:/pve-docs/chapter-notifications.html#notification_matchers_calendar",
         "notification_matchers_field" : "link:/pve-docs/chapter-notifications.html#notification_matchers_field",
         "notification_matchers_severity" : "link:/pve-docs/chapter-notifications.html#notification_matchers_severity",
         "notification_mode" : "link:/pve-docs/chapter-notifications.html#notification_mode",
         "notification_targets" : "link:/pve-docs/chapter-notifications.html#notification_targets",
         "notification_targets_gotify" : "link:/pve-docs/chapter-notifications.html#notification_targets_gotify",
         "notification_targets_sendmail" : "link:/pve-docs/chapter-notifications.html#notification_targets_sendmail",
         "notification_targets_smtp" : "link:/pve-docs/chapter-notifications.html#notification_targets_smtp",
         "notification_targets_webhook" : "link:/pve-docs/chapter-notifications.html#notification_targets_webhook",
         "pct_cgroup" : "link:/pve-docs/chapter-pct.html#pct_cgroup",
         "pct_cgroup_change_version" : "link:/pve-docs/chapter-pct.html#pct_cgroup_change_version",
         "pct_cgroup_compat" : "link:/pve-docs/chapter-pct.html#pct_cgroup_compat",
         "pct_configuration" : "link:/pve-docs/chapter-pct.html#pct_configuration",
         "pct_container_images" : "link:/pve-docs/chapter-pct.html#pct_container_images",
         "pct_container_network" : "link:/pve-docs/chapter-pct.html#pct_container_network",
         "pct_container_storage" : "link:/pve-docs/chapter-pct.html#pct_container_storage",
         "pct_cpu" : "link:/pve-docs/chapter-pct.html#pct_cpu",
         "pct_general" : "link:/pve-docs/chapter-pct.html#pct_general",
         "pct_memory" : "link:/pve-docs/chapter-pct.html#pct_memory",
         "pct_migration" : "link:/pve-docs/chapter-pct.html#pct_migration",
         "pct_mount_points" : "link:/pve-docs/chapter-pct.html#pct_mount_points",
         "pct_options" : "link:/pve-docs/chapter-pct.html#pct_options",
         "pct_settings" : "link:/pve-docs/chapter-pct.html#pct_settings",
         "pct_snapshots" : "link:/pve-docs/chapter-pct.html#pct_snapshots",
         "pct_startup_and_shutdown" : "link:/pve-docs/chapter-pct.html#pct_startup_and_shutdown",
         "pct_supported_distributions" : "link:/pve-docs/chapter-pct.html#pct_supported_distributions",
         "proxmox_node_management" : "link:/pve-docs/chapter-sysadmin.html#proxmox_node_management",
         "pve_ceph_device_classes" : "link:/pve-docs/chapter-pveceph.html#pve_ceph_device_classes",
         "pve_ceph_ec_pools" : "link:/pve-docs/chapter-pveceph.html#pve_ceph_ec_pools",
         "pve_ceph_install" : "link:/pve-docs/chapter-pveceph.html#pve_ceph_install",
         "pve_ceph_install_wizard" : "link:/pve-docs/chapter-pveceph.html#pve_ceph_install_wizard",
         "pve_ceph_manager" : "link:/pve-docs/chapter-pveceph.html#pve_ceph_manager",
         "pve_ceph_mon_and_ts" : "link:/pve-docs/chapter-pveceph.html#pve_ceph_mon_and_ts",
         "pve_ceph_monitors" : "link:/pve-docs/chapter-pveceph.html#pve_ceph_monitors",
         "pve_ceph_osd_create" : "link:/pve-docs/chapter-pveceph.html#pve_ceph_osd_create",
         "pve_ceph_osd_destroy" : "link:/pve-docs/chapter-pveceph.html#pve_ceph_osd_destroy",
         "pve_ceph_osd_replace" : "link:/pve-docs/chapter-pveceph.html#pve_ceph_osd_replace",
         "pve_ceph_osds" : "link:/pve-docs/chapter-pveceph.html#pve_ceph_osds",
         "pve_ceph_pools" : "link:/pve-docs/chapter-pveceph.html#pve_ceph_pools",
         "pve_ceph_recommendation_cpu" : "link:/pve-docs/chapter-pveceph.html#pve_ceph_recommendation_cpu",
         "pve_ceph_recommendation_disk" : "link:/pve-docs/chapter-pveceph.html#pve_ceph_recommendation_disk",
         "pve_ceph_recommendation_memory" : "link:/pve-docs/chapter-pveceph.html#pve_ceph_recommendation_memory",
         "pve_ceph_recommendation_network" : "link:/pve-docs/chapter-pveceph.html#pve_ceph_recommendation_network",
         "pve_ceph_recommendation_raid" : "link:/pve-docs/chapter-pveceph.html#pve_ceph_recommendation_raid",
         "pve_ceph_ts" : "link:/pve-docs/chapter-pveceph.html#pve_ceph_ts",
         "pve_ceph_ts_causes" : "link:/pve-docs/chapter-pveceph.html#pve_ceph_ts_causes",
         "pve_ceph_ts_logs" : "link:/pve-docs/chapter-pveceph.html#pve_ceph_ts_logs",
         "pve_ceph_ts_problems" : "link:/pve-docs/chapter-pveceph.html#pve_ceph_ts_problems",
         "pve_ceph_wizard_networks" : "link:/pve-docs/chapter-pveceph.html#pve_ceph_wizard_networks",
         "pve_firewall_cluster_wide_setup" : "link:/pve-docs/chapter-pve-firewall.html#pve_firewall_cluster_wide_setup",
         "pve_firewall_default_rules" : "link:/pve-docs/chapter-pve-firewall.html#pve_firewall_default_rules",
         "pve_firewall_host_specific_configuration" : "link:/pve-docs/chapter-pve-firewall.html#pve_firewall_host_specific_configuration",
         "pve_firewall_ip_aliases" : "link:/pve-docs/chapter-pve-firewall.html#pve_firewall_ip_aliases",
         "pve_firewall_ip_sets" : "link:/pve-docs/chapter-pve-firewall.html#pve_firewall_ip_sets",
         "pve_firewall_ipfilter_section" : "link:/pve-docs/chapter-pve-firewall.html#pve_firewall_ipfilter_section",
         "pve_firewall_iptables_inspect" : "link:/pve-docs/chapter-pve-firewall.html#pve_firewall_iptables_inspect",
         "pve_firewall_log_levels" : "link:/pve-docs/chapter-pve-firewall.html#pve_firewall_log_levels",
         "pve_firewall_nft" : "link:/pve-docs/chapter-pve-firewall.html#pve_firewall_nft",
         "pve_firewall_nft_helpful_commands" : "link:/pve-docs/chapter-pve-firewall.html#pve_firewall_nft_helpful_commands",
         "pve_firewall_security_groups" : "link:/pve-docs/chapter-pve-firewall.html#pve_firewall_security_groups",
         "pve_firewall_services_commands" : "link:/pve-docs/chapter-pve-firewall.html#pve_firewall_services_commands",
         "pve_firewall_vm_container_configuration" : "link:/pve-docs/chapter-pve-firewall.html#pve_firewall_vm_container_configuration",
         "pve_firewall_vnet_configuration" : "link:/pve-docs/chapter-pve-firewall.html#pve_firewall_vnet_configuration",
         "pveceph_create_mgr" : "link:/pve-docs/chapter-pveceph.html#pveceph_create_mgr",
         "pveceph_create_mon" : "link:/pve-docs/chapter-pveceph.html#pveceph_create_mon",
         "pveceph_destroy_mgr" : "link:/pve-docs/chapter-pveceph.html#pveceph_destroy_mgr",
         "pveceph_destroy_mon" : "link:/pve-docs/chapter-pveceph.html#pveceph_destroy_mon",
         "pveceph_fs" : "link:/pve-docs/chapter-pveceph.html#pveceph_fs",
         "pveceph_fs_create" : "link:/pve-docs/chapter-pveceph.html#pveceph_fs_create",
         "pveceph_fs_mds" : "link:/pve-docs/chapter-pveceph.html#pveceph_fs_mds",
         "pveceph_scrub" : "link:/pve-docs/chapter-pveceph.html#pveceph_scrub",
         "pveceph_shutdown" : "link:/pve-docs/chapter-pveceph.html#pveceph_shutdown",
         "pvecm_adding_nodes_with_separated_cluster_network" : "link:/pve-docs/chapter-pvecm.html#pvecm_adding_nodes_with_separated_cluster_network",
         "pvecm_cluster_create_via_cli" : "link:/pve-docs/chapter-pvecm.html#pvecm_cluster_create_via_cli",
         "pvecm_cluster_create_via_gui" : "link:/pve-docs/chapter-pvecm.html#pvecm_cluster_create_via_gui",
         "pvecm_cluster_network" : "link:/pve-docs/chapter-pvecm.html#pvecm_cluster_network",
         "pvecm_cluster_network_requirements" : "link:/pve-docs/chapter-pvecm.html#pvecm_cluster_network_requirements",
         "pvecm_corosync_addresses" : "link:/pve-docs/chapter-pvecm.html#pvecm_corosync_addresses",
         "pvecm_corosync_conf_glossary" : "link:/pve-docs/chapter-pvecm.html#pvecm_corosync_conf_glossary",
         "pvecm_create_cluster" : "link:/pve-docs/chapter-pvecm.html#pvecm_create_cluster",
         "pvecm_edit_corosync_conf" : "link:/pve-docs/chapter-pvecm.html#pvecm_edit_corosync_conf",
         "pvecm_join_node_to_cluster" : "link:/pve-docs/chapter-pvecm.html#pvecm_join_node_to_cluster",
         "pvecm_migration_network" : "link:/pve-docs/chapter-pvecm.html#pvecm_migration_network",
         "pvecm_next_id_range" : "link:/pve-docs/chapter-pvecm.html#pvecm_next_id_range",
         "pvecm_qdevice_status_flags" : "link:/pve-docs/chapter-pvecm.html#pvecm_qdevice_status_flags",
         "pvecm_redundancy" : "link:/pve-docs/chapter-pvecm.html#pvecm_redundancy",
         "pvecm_separate_cluster_net_after_creation" : "link:/pve-docs/chapter-pvecm.html#pvecm_separate_cluster_net_after_creation",
         "pvecm_separate_node_without_reinstall" : "link:/pve-docs/chapter-pvecm.html#pvecm_separate_node_without_reinstall",
         "pveproxy_custom_tls_cert" : "link:/pve-docs/pve-admin-guide.html#pveproxy_custom_tls_cert",
         "pveproxy_host_acls" : "link:/pve-docs/pve-admin-guide.html#pveproxy_host_acls",
         "pveproxy_listening_address" : "link:/pve-docs/pve-admin-guide.html#pveproxy_listening_address",
         "pveproxy_real_ip" : "link:/pve-docs/pve-admin-guide.html#pveproxy_real_ip",
         "pveproxy_response_compression" : "link:/pve-docs/pve-admin-guide.html#pveproxy_response_compression",
         "pvesdn_config_common_options" : "link:/pve-docs/chapter-pvesdn.html#pvesdn_config_common_options",
         "pvesdn_config_controllers" : "link:/pve-docs/chapter-pvesdn.html#pvesdn_config_controllers",
         "pvesdn_config_dhcp" : "link:/pve-docs/chapter-pvesdn.html#pvesdn_config_dhcp",
         "pvesdn_config_dns" : "link:/pve-docs/chapter-pvesdn.html#pvesdn_config_dns",
         "pvesdn_config_ipam" : "link:/pve-docs/chapter-pvesdn.html#pvesdn_config_ipam",
         "pvesdn_config_subnet" : "link:/pve-docs/chapter-pvesdn.html#pvesdn_config_subnet",
         "pvesdn_config_vnet" : "link:/pve-docs/chapter-pvesdn.html#pvesdn_config_vnet",
         "pvesdn_config_zone" : "link:/pve-docs/chapter-pvesdn.html#pvesdn_config_zone",
         "pvesdn_controller_plugin_BGP" : "link:/pve-docs/chapter-pvesdn.html#pvesdn_controller_plugin_BGP",
         "pvesdn_controller_plugin_ISIS" : "link:/pve-docs/chapter-pvesdn.html#pvesdn_controller_plugin_ISIS",
         "pvesdn_controller_plugin_evpn" : "link:/pve-docs/chapter-pvesdn.html#pvesdn_controller_plugin_evpn",
         "pvesdn_dns_plugin_powerdns" : "link:/pve-docs/chapter-pvesdn.html#pvesdn_dns_plugin_powerdns",
         "pvesdn_firewall_integration" : "link:/pve-docs/chapter-pvesdn.html#pvesdn_firewall_integration",
         "pvesdn_install_dhcp_ipam" : "link:/pve-docs/chapter-pvesdn.html#pvesdn_install_dhcp_ipam",
         "pvesdn_install_frrouting" : "link:/pve-docs/chapter-pvesdn.html#pvesdn_install_frrouting",
         "pvesdn_installation" : "link:/pve-docs/chapter-pvesdn.html#pvesdn_installation",
         "pvesdn_ipam_plugin_netbox" : "link:/pve-docs/chapter-pvesdn.html#pvesdn_ipam_plugin_netbox",
         "pvesdn_ipam_plugin_phpipam" : "link:/pve-docs/chapter-pvesdn.html#pvesdn_ipam_plugin_phpipam",
         "pvesdn_ipam_plugin_pveipam" : "link:/pve-docs/chapter-pvesdn.html#pvesdn_ipam_plugin_pveipam",
         "pvesdn_main_configuration" : "link:/pve-docs/chapter-pvesdn.html#pvesdn_main_configuration",
         "pvesdn_notes" : "link:/pve-docs/chapter-pvesdn.html#pvesdn_notes",
         "pvesdn_overview" : "link:/pve-docs/chapter-pvesdn.html#pvesdn_overview",
         "pvesdn_setup_example_evpn" : "link:/pve-docs/chapter-pvesdn.html#pvesdn_setup_example_evpn",
         "pvesdn_setup_example_nat" : "link:/pve-docs/chapter-pvesdn.html#pvesdn_setup_example_nat",
         "pvesdn_setup_example_qinq" : "link:/pve-docs/chapter-pvesdn.html#pvesdn_setup_example_qinq",
         "pvesdn_setup_example_simple" : "link:/pve-docs/chapter-pvesdn.html#pvesdn_setup_example_simple",
         "pvesdn_setup_example_vlan" : "link:/pve-docs/chapter-pvesdn.html#pvesdn_setup_example_vlan",
         "pvesdn_setup_example_vxlan" : "link:/pve-docs/chapter-pvesdn.html#pvesdn_setup_example_vxlan",
         "pvesdn_setup_examples" : "link:/pve-docs/chapter-pvesdn.html#pvesdn_setup_examples",
         "pvesdn_support_status" : "link:/pve-docs/chapter-pvesdn.html#pvesdn_support_status",
         "pvesdn_tech_and_config_overview" : "link:/pve-docs/chapter-pvesdn.html#pvesdn_tech_and_config_overview",
         "pvesdn_zone_plugin_evpn" : "link:/pve-docs/chapter-pvesdn.html#pvesdn_zone_plugin_evpn",
         "pvesdn_zone_plugin_qinq" : "link:/pve-docs/chapter-pvesdn.html#pvesdn_zone_plugin_qinq",
         "pvesdn_zone_plugin_simple" : "link:/pve-docs/chapter-pvesdn.html#pvesdn_zone_plugin_simple",
         "pvesdn_zone_plugin_vlan" : "link:/pve-docs/chapter-pvesdn.html#pvesdn_zone_plugin_vlan",
         "pvesdn_zone_plugin_vxlan" : "link:/pve-docs/chapter-pvesdn.html#pvesdn_zone_plugin_vxlan",
         "pvesr_schedule_format_examples" : "link:/pve-docs/pve-admin-guide.html#pvesr_schedule_format_examples",
         "pvesr_schedule_time_format" : "link:/pve-docs/chapter-pvesr.html#pvesr_schedule_time_format",
         "pveum_authentication_realms" : "link:/pve-docs/chapter-pveum.html#pveum_authentication_realms",
         "pveum_configure_u2f" : "link:/pve-docs/chapter-pveum.html#pveum_configure_u2f",
         "pveum_configure_webauthn" : "link:/pve-docs/chapter-pveum.html#pveum_configure_webauthn",
         "pveum_groups" : "link:/pve-docs/chapter-pveum.html#pveum_groups",
         "pveum_ldap_reserved_characters" : "link:/pve-docs/chapter-pveum.html#pveum_ldap_reserved_characters",
         "pveum_ldap_sync" : "link:/pve-docs/chapter-pveum.html#pveum_ldap_sync",
         "pveum_ldap_sync_options" : "link:/pve-docs/chapter-pveum.html#pveum_ldap_sync_options",
         "pveum_openid" : "link:/pve-docs/chapter-pveum.html#pveum_openid",
         "pveum_permission_management" : "link:/pve-docs/chapter-pveum.html#pveum_permission_management",
         "pveum_pools" : "link:/pve-docs/chapter-pveum.html#pveum_pools",
         "pveum_resource_pools" : "link:/pve-docs/chapter-pveum.html#pveum_resource_pools",
         "pveum_roles" : "link:/pve-docs/chapter-pveum.html#pveum_roles",
         "pveum_templated_paths" : "link:/pve-docs/chapter-pveum.html#pveum_templated_paths",
         "pveum_tfa_auth" : "link:/pve-docs/chapter-pveum.html#pveum_tfa_auth",
         "pveum_tfa_lockout" : "link:/pve-docs/chapter-pveum.html#pveum_tfa_lockout",
         "pveum_tokens" : "link:/pve-docs/chapter-pveum.html#pveum_tokens",
         "pveum_user_configured_totp" : "link:/pve-docs/chapter-pveum.html#pveum_user_configured_totp",
         "pveum_user_configured_u2f" : "link:/pve-docs/chapter-pveum.html#pveum_user_configured_u2f",
         "pveum_users" : "link:/pve-docs/chapter-pveum.html#pveum_users",
         "qm_audio_device" : "link:/pve-docs/chapter-qm.html#qm_audio_device",
         "qm_ballooning" : "link:/pve-docs/chapter-qm.html#qm_ballooning",
         "qm_bios_and_uefi" : "link:/pve-docs/chapter-qm.html#qm_bios_and_uefi",
         "qm_bootorder" : "link:/pve-docs/chapter-qm.html#qm_bootorder",
         "qm_cloud_init" : "link:/pve-docs/chapter-qm.html#qm_cloud_init",
         "qm_configuration" : "link:/pve-docs/chapter-qm.html#qm_configuration",
         "qm_copy_and_clone" : "link:/pve-docs/chapter-qm.html#qm_copy_and_clone",
         "qm_cpu" : "link:/pve-docs/chapter-qm.html#qm_cpu",
         "qm_cpu_resource_limits" : "link:/pve-docs/chapter-qm.html#qm_cpu_resource_limits",
         "qm_display" : "link:/pve-docs/chapter-qm.html#qm_display",
         "qm_general_settings" : "link:/pve-docs/chapter-qm.html#qm_general_settings",
         "qm_hard_disk" : "link:/pve-docs/chapter-qm.html#qm_hard_disk",
         "qm_hard_disk_bus" : "link:/pve-docs/chapter-qm.html#qm_hard_disk_bus",
         "qm_hard_disk_cache" : "link:/pve-docs/chapter-qm.html#qm_hard_disk_cache",
         "qm_hard_disk_discard" : "link:/pve-docs/chapter-qm.html#qm_hard_disk_discard",
         "qm_hard_disk_formats" : "link:/pve-docs/chapter-qm.html#qm_hard_disk_formats",
         "qm_hard_disk_iothread" : "link:/pve-docs/chapter-qm.html#qm_hard_disk_iothread",
         "qm_hibernate" : "link:/pve-docs/chapter-qm.html#qm_hibernate",
         "qm_import_virtual_machines" : "link:/pve-docs/chapter-qm.html#qm_import_virtual_machines",
         "qm_ivshmem" : "link:/pve-docs/chapter-qm.html#qm_ivshmem",
         "qm_machine_type" : "link:/pve-docs/chapter-qm.html#qm_machine_type",
         "qm_machine_update" : "link:/pve-docs/chapter-qm.html#qm_machine_update",
         "qm_meltdown_spectre" : "link:/pve-docs/chapter-qm.html#qm_meltdown_spectre",
         "qm_memory" : "link:/pve-docs/chapter-qm.html#qm_memory",
         "qm_memory_encryption" : "link:/pve-docs/chapter-qm.html#qm_memory_encryption",
         "qm_memory_encryption_sev" : "link:/pve-docs/chapter-qm.html#qm_memory_encryption_sev",
         "qm_migration" : "link:/pve-docs/chapter-qm.html#qm_migration",
         "qm_network_device" : "link:/pve-docs/chapter-qm.html#qm_network_device",
         "qm_options" : "link:/pve-docs/chapter-qm.html#qm_options",
         "qm_os_settings" : "link:/pve-docs/chapter-qm.html#qm_os_settings",
         "qm_pci_passthrough" : "link:/pve-docs/chapter-qm.html#qm_pci_passthrough",
         "qm_pci_passthrough_update_initramfs" : "link:/pve-docs/chapter-qm.html#qm_pci_passthrough_update_initramfs",
         "qm_pci_passthrough_vm_config" : "link:/pve-docs/chapter-qm.html#qm_pci_passthrough_vm_config",
         "qm_pci_viommu" : "link:/pve-docs/chapter-qm.html#qm_pci_viommu",
         "qm_qemu_agent" : "link:/pve-docs/chapter-qm.html#qm_qemu_agent",
         "qm_qga_auto_trim" : "link:/pve-docs/chapter-qm.html#qm_qga_auto_trim",
         "qm_qga_enable" : "link:/pve-docs/chapter-qm.html#qm_qga_enable",
         "qm_qga_fsfreeze" : "link:/pve-docs/chapter-qm.html#qm_qga_fsfreeze",
         "qm_snapshots" : "link:/pve-docs/chapter-qm.html#qm_snapshots",
         "qm_spice_enhancements" : "link:/pve-docs/chapter-qm.html#qm_spice_enhancements",
         "qm_startup_and_shutdown" : "link:/pve-docs/chapter-qm.html#qm_startup_and_shutdown",
         "qm_system_settings" : "link:/pve-docs/chapter-qm.html#qm_system_settings",
         "qm_templates" : "link:/pve-docs/chapter-qm.html#qm_templates",
         "qm_tpm" : "link:/pve-docs/chapter-qm.html#qm_tpm",
         "qm_usb_passthrough" : "link:/pve-docs/chapter-qm.html#qm_usb_passthrough",
         "qm_virtio_rng" : "link:/pve-docs/chapter-qm.html#qm_virtio_rng",
         "qm_virtiofs" : "link:/pve-docs/chapter-qm.html#qm_virtiofs",
         "qm_virtual_machines_settings" : "link:/pve-docs/chapter-qm.html#qm_virtual_machines_settings",
         "qm_vmstatestorage" : "link:/pve-docs/chapter-qm.html#qm_vmstatestorage",
         "repos_secure_rpm" : "link:/pve-docs/chapter-sysadmin.html#repos_secure_rpm",
         "resource_mapping" : "link:/pve-docs/chapter-qm.html#resource_mapping",
         "storage_btrfs" : "link:/pve-docs/chapter-pvesm.html#storage_btrfs",
         "storage_cephfs" : "link:/pve-docs/chapter-pvesm.html#storage_cephfs",
         "storage_cephfs_config" : "link:/pve-docs/chapter-pvesm.html#storage_cephfs_config",
         "storage_cifs" : "link:/pve-docs/chapter-pvesm.html#storage_cifs",
         "storage_directory" : "link:/pve-docs/chapter-pvesm.html#storage_directory",
         "storage_glusterfs" : "link:/pve-docs/chapter-pvesm.html#storage_glusterfs",
         "storage_iscsidirect" : "link:/pve-docs/chapter-pvesm.html#storage_iscsidirect",
         "storage_lvm" : "link:/pve-docs/chapter-pvesm.html#storage_lvm",
         "storage_lvmthin" : "link:/pve-docs/chapter-pvesm.html#storage_lvmthin",
         "storage_nfs" : "link:/pve-docs/chapter-pvesm.html#storage_nfs",
         "storage_open_iscsi" : "link:/pve-docs/chapter-pvesm.html#storage_open_iscsi",
         "storage_pbs" : "link:/pve-docs/chapter-pvesm.html#storage_pbs",
         "storage_pbs_encryption" : "link:/pve-docs/chapter-pvesm.html#storage_pbs_encryption",
         "storage_rbd_config" : "link:/pve-docs/chapter-pvesm.html#storage_rbd_config",
         "storage_zfs" : "link:/pve-docs/chapter-pvesm.html#storage_zfs",
         "storage_zfspool" : "link:/pve-docs/chapter-pvesm.html#storage_zfspool",
         "sysadmin_certificate_management" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_certificate_management",
         "sysadmin_certs_acme_account" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_certs_acme_account",
         "sysadmin_certs_acme_automatic_renewal" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_certs_acme_automatic_renewal",
         "sysadmin_certs_acme_dns_api_config" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_certs_acme_dns_api_config",
         "sysadmin_certs_acme_dns_challenge" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_certs_acme_dns_challenge",
         "sysadmin_certs_acme_http_challenge" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_certs_acme_http_challenge",
         "sysadmin_certs_acme_plugins" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_certs_acme_plugins",
         "sysadmin_certs_acme_switch_from_staging" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_certs_acme_switch_from_staging",
         "sysadmin_certs_api_gui" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_certs_api_gui",
         "sysadmin_certs_get_trusted_acme_cert" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_certs_get_trusted_acme_cert",
         "sysadmin_certs_upload_custom" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_certs_upload_custom",
         "sysadmin_firmware_cpu" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_firmware_cpu",
         "sysadmin_firmware_persistent" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_firmware_persistent",
         "sysadmin_firmware_runtime_files" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_firmware_runtime_files",
         "sysadmin_firmware_troubleshooting" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_firmware_troubleshooting",
         "sysadmin_network_bond" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_network_bond",
         "sysadmin_network_configuration" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_network_configuration",
         "sysadmin_network_masquerading" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_network_masquerading",
         "sysadmin_network_routed" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_network_routed",
         "sysadmin_network_vlan" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_network_vlan",
         "sysadmin_package_repositories" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_package_repositories",
         "sysadmin_package_repositories_ceph" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_package_repositories_ceph",
         "sysadmin_pxvirt_repo" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_pxvirt_repo",
         "sysadmin_zfs_add_cache_and_log_dev" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_zfs_add_cache_and_log_dev",
         "sysadmin_zfs_change_failed_dev" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_zfs_change_failed_dev",
         "sysadmin_zfs_create_new_zpool" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_zfs_create_new_zpool",
         "sysadmin_zfs_create_new_zpool_raid0" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_zfs_create_new_zpool_raid0",
         "sysadmin_zfs_create_new_zpool_raid1" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_zfs_create_new_zpool_raid1",
         "sysadmin_zfs_create_new_zpool_raid10" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_zfs_create_new_zpool_raid10",
         "sysadmin_zfs_create_new_zpool_raidz1" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_zfs_create_new_zpool_raidz1",
         "sysadmin_zfs_create_new_zpool_with_cache" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_zfs_create_new_zpool_with_cache",
         "sysadmin_zfs_create_new_zpool_with_log" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_zfs_create_new_zpool_with_log",
         "sysadmin_zfs_features" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_zfs_features",
         "sysadmin_zfs_limit_memory_usage" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_zfs_limit_memory_usage",
         "sysadmin_zfs_raid_considerations" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_zfs_raid_considerations",
         "sysadmin_zfs_raid_performance" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_zfs_raid_performance",
         "sysadmin_zfs_raid_size_space_usage_redundancy" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_zfs_raid_size_space_usage_redundancy",
         "sysadmin_zfs_special_device" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_zfs_special_device",
         "sysboot" : "link:/pve-docs/chapter-sysadmin.html#sysboot",
         "sysboot_determine_bootloader_used" : "link:/pve-docs/chapter-sysadmin.html#sysboot_determine_bootloader_used",
         "sysboot_edit_kernel_cmdline" : "link:/pve-docs/chapter-sysadmin.html#sysboot_edit_kernel_cmdline",
         "sysboot_grub" : "link:/pve-docs/chapter-sysadmin.html#sysboot_grub",
         "sysboot_installer_part_scheme" : "link:/pve-docs/chapter-sysadmin.html#sysboot_installer_part_scheme",
         "sysboot_kernel_pin" : "link:/pve-docs/chapter-sysadmin.html#sysboot_kernel_pin",
         "sysboot_proxmox_boot_refresh" : "link:/pve-docs/chapter-sysadmin.html#sysboot_proxmox_boot_refresh",
         "sysboot_proxmox_boot_setup" : "link:/pve-docs/chapter-sysadmin.html#sysboot_proxmox_boot_setup",
         "sysboot_proxmox_boot_tool" : "link:/pve-docs/chapter-sysadmin.html#sysboot_proxmox_boot_tool",
         "sysboot_secure_boot" : "link:/pve-docs/chapter-sysadmin.html#sysboot_secure_boot",
         "sysboot_systemd_boot" : "link:/pve-docs/chapter-sysadmin.html#sysboot_systemd_boot",
         "sysboot_systemd_boot_config" : "link:/pve-docs/chapter-sysadmin.html#sysboot_systemd_boot_config",
         "system_software_updates" : "link:/pve-docs/chapter-sysadmin.html#system_software_updates",
         "systemd_network_interface_names" : "link:/pve-docs/chapter-sysadmin.html#systemd_network_interface_names",
         "translation" : "link:/pve-docs/pve-admin-guide.html#translation",
         "udp" : "link:/pve-docs/chapter-sysadmin.html#udp",
         "user-realms-ad" : "link:/pve-docs/chapter-pveum.html#user-realms-ad",
         "user-realms-ldap" : "link:/pve-docs/chapter-pveum.html#user-realms-ldap",
         "user-realms-pam" : "link:/pve-docs/chapter-pveum.html#user-realms-pam",
         "user-realms-pve" : "link:/pve-docs/chapter-pveum.html#user-realms-pve",
         "user_mgmt" : "link:/pve-docs/chapter-pveum.html#user_mgmt",
         "user_tfa_setup_recovery_keys" : "link:/pve-docs/chapter-pveum.html#user_tfa_setup_recovery_keys",
         "user_tfa_setup_totp" : "link:/pve-docs/chapter-pveum.html#user_tfa_setup_totp",
         "user_tfa_setup_webauthn" : "link:/pve-docs/chapter-pveum.html#user_tfa_setup_webauthn",
         "vzdump_configuration" : "link:/pve-docs/chapter-vzdump.html#vzdump_configuration",
         "vzdump_jobs" : "link:/pve-docs/chapter-vzdump.html#vzdump_jobs",
         "vzdump_notes" : "link:/pve-docs/chapter-vzdump.html#vzdump_notes",
         "vzdump_protection" : "link:/pve-docs/chapter-vzdump.html#vzdump_protection",
         "vzdump_restore" : "link:/pve-docs/chapter-vzdump.html#vzdump_restore",
         "vzdump_retention" : "link:/pve-docs/chapter-vzdump.html#vzdump_retention",
         "zfs_compression" : "link:/pve-docs/chapter-sysadmin.html#zfs_compression",
         "zfs_encryption" : "link:/pve-docs/chapter-sysadmin.html#zfs_encryption",
         "zfs_swap" : "link:/pve-docs/chapter-sysadmin.html#zfs_swap"
      },
      "manvolnum" : {
         "Ahmed15" : "pve-bibliography.adoc",
         "Ahmed16" : "pve-bibliography.adoc",
         "Bessen09" : "pve-bibliography.adoc",
         "Bir96" : "pve-bibliography.adoc",
         "Cheng14" : "pve-bibliography.adoc",
         "Goldman16" : "pve-bibliography.adoc",
         "Hertzog13" : "pve-bibliography.adoc",
         "Kreibich10" : "pve-bibliography.adoc",
         "Loeliger12" : "pve-bibliography.adoc",
         "Loshin03" : "pve-bibliography.adoc",
         "Mauerer08" : "pve-bibliography.adoc",
         "Richardson07" : "pve-bibliography.adoc",
         "Singh15" : "pve-bibliography.adoc",
         "Singh16" : "pve-bibliography.adoc",
         "Surber16" : "pve-bibliography.adoc",
         "Walsh10" : "pve-bibliography.adoc",
         "_recommendations_for_a_healthy_ceph_cluster" : "pveceph.adoc",
         "advanced_btrfs_options" : "pve-installation.adoc",
         "advanced_lvm_options" : "pve-installation.adoc",
         "advanced_zfs_options" : "pve-installation.adoc",
         "ballooning-target" : "sysadmin.adoc",
         "ceph_rados_block_devices" : "pvesm.adoc",
         "chapter_btrfs" : "sysadmin.adoc",
         "chapter_calendar_events" : "calendar-events.adoc",
         "chapter_firmware_updates" : "sysadmin.adoc",
         "chapter_gui" : "pve-gui.adoc",
         "chapter_ha_manager" : "ha-manager.adoc",
         "chapter_hyper_converged_infrastructure" : "pve-intro.adoc",
         "chapter_installation" : "pve-installation.adoc",
         "chapter_lvm" : "sysadmin.adoc",
         "chapter_notifications" : "notifications.adoc",
         "chapter_pct" : "pct.adoc",
         "chapter_pmxcfs" : "pmxcfs.adoc",
         "chapter_pve_firewall" : "pve-firewall.adoc",
         "chapter_pveceph" : "pveceph.adoc",
         "chapter_pvecm" : "pvecm.adoc",
         "chapter_pvesdn" : "pvesdn.adoc",
         "chapter_pvesr" : "pvesr.adoc",
         "chapter_qm_vcpu_list" : "qm-vcpu-list.adoc",
         "chapter_storage" : "pvesm.adoc",
         "chapter_system_administration" : "sysadmin.adoc",
         "chapter_user_management" : "pveum.adoc",
         "chapter_virtual_machines" : "qm.adoc",
         "chapter_vzdump" : "vzdump.adoc",
         "chapter_zfs" : "sysadmin.adoc",
         "cli_general" : "cli-general.adoc",
         "configuration_files" : "configuration-files.adoc",
         "configuration_files_casing" : "configuration-files.adoc",
         "datacenter_configuration_file" : "configuration-files.adoc",
         "disk_health_monitoring" : "sysadmin.adoc",
         "external_metric_server" : "sysadmin.adoc",
         "faq-support-table" : "pve-faq.adoc",
         "faq-upgrade" : "pve-faq.adoc",
         "faq-upgrade-major" : "pve-faq.adoc",
         "first_guest_boot_delay" : "sysadmin.adoc",
         "getting_help" : "pve-intro.adoc",
         "gui_consent_banner" : "pve-gui.adoc",
         "gui_my_settings" : "pve-gui.adoc",
         "gui_tags" : "pve-gui.adoc",
         "ha_manager_crm" : "ha-manager.adoc",
         "ha_manager_crs" : "ha-manager.adoc",
         "ha_manager_error_recovery" : "ha-manager.adoc",
         "ha_manager_fencing" : "ha-manager.adoc",
         "ha_manager_groups" : "ha-manager.adoc",
         "ha_manager_lrm" : "ha-manager.adoc",
         "ha_manager_node_maintenance" : "ha-manager.adoc",
         "ha_manager_package_updates" : "ha-manager.adoc",
         "ha_manager_resource_config" : "ha-manager.adoc",
         "ha_manager_resources" : "ha-manager.adoc",
         "ha_manager_service_states" : "ha-manager.adoc",
         "ha_manager_shutdown_policy" : "ha-manager.adoc",
         "ha_manager_start_failure_policy" : "ha-manager.adoc",
         "howto_improve_pve_docs" : "pve-intro.adoc",
         "i18n_with_git" : "pve-intro.adoc",
         "i18n_without_git" : "pve-intro.adoc",
         "install_minimal_requirements" : "pve-installation.adoc",
         "install_recommended_requirements" : "pve-installation.adoc",
         "installation_installer" : "pve-installation.adoc",
         "installation_prepare_media" : "pve-installation.adoc",
         "installation_unattended" : "pve-installation.adoc",
         "intro_central_management" : "pve-intro.adoc",
         "intro_project_history" : "pve-intro.adoc",
         "kernel_samepage_merging" : "sysadmin.adoc",
         "markdown_basics" : "markdown-primer.adoc",
         "metric_server_graphite" : "sysadmin.adoc",
         "metric_server_influxdb" : "sysadmin.adoc",
         "network_override_device_names" : "sysadmin.adoc",
         "network_pin_naming_scheme_version" : "sysadmin.adoc",
         "nomodeset_kernel_param" : "pve-installation.adoc",
         "notification_events" : "notifications.adoc",
         "notification_matchers" : "notifications.adoc",
         "notification_matchers_calendar" : "notifications.adoc",
         "notification_matchers_field" : "notifications.adoc",
         "notification_matchers_severity" : "notifications.adoc",
         "notification_mode" : "notifications.adoc",
         "notification_targets" : "notifications.adoc",
         "notification_targets_gotify" : "notifications.adoc",
         "notification_targets_sendmail" : "notifications.adoc",
         "notification_targets_smtp" : "notifications.adoc",
         "notification_targets_webhook" : "notifications.adoc",
         "pct_cgroup" : "pct.adoc",
         "pct_cgroup_change_version" : "pct.adoc",
         "pct_cgroup_compat" : "pct.adoc",
         "pct_configuration" : "pct.adoc",
         "pct_container_images" : "pct.adoc",
         "pct_container_network" : "pct.adoc",
         "pct_container_storage" : "pct.adoc",
         "pct_cpu" : "pct.adoc",
         "pct_general" : "pct.adoc",
         "pct_memory" : "pct.adoc",
         "pct_migration" : "pct.adoc",
         "pct_mount_points" : "pct.adoc",
         "pct_options" : "pct.adoc",
         "pct_settings" : "pct.adoc",
         "pct_snapshots" : "pct.adoc",
         "pct_startup_and_shutdown" : "pct.adoc",
         "pct_supported_distributions" : "pct.adoc",
         "pve_ceph_device_classes" : "pveceph.adoc",
         "pve_ceph_ec_pools" : "pveceph.adoc",
         "pve_ceph_install" : "pveceph.adoc",
         "pve_ceph_install_wizard" : "pveceph.adoc",
         "pve_ceph_manager" : "pveceph.adoc",
         "pve_ceph_mon_and_ts" : "pveceph.adoc",
         "pve_ceph_monitors" : "pveceph.adoc",
         "pve_ceph_osd_create" : "pveceph.adoc",
         "pve_ceph_osd_destroy" : "pveceph.adoc",
         "pve_ceph_osd_replace" : "pveceph.adoc",
         "pve_ceph_osds" : "pveceph.adoc",
         "pve_ceph_pools" : "pveceph.adoc",
         "pve_ceph_recommendation_cpu" : "pveceph.adoc",
         "pve_ceph_recommendation_disk" : "pveceph.adoc",
         "pve_ceph_recommendation_memory" : "pveceph.adoc",
         "pve_ceph_recommendation_network" : "pveceph.adoc",
         "pve_ceph_recommendation_raid" : "pveceph.adoc",
         "pve_ceph_ts" : "pveceph.adoc",
         "pve_ceph_ts_causes" : "pveceph.adoc",
         "pve_ceph_ts_logs" : "pveceph.adoc",
         "pve_ceph_ts_problems" : "pveceph.adoc",
         "pve_ceph_wizard_networks" : "pveceph.adoc",
         "pve_firewall_cluster_wide_setup" : "pve-firewall.adoc",
         "pve_firewall_default_rules" : "pve-firewall.adoc",
         "pve_firewall_host_specific_configuration" : "pve-firewall.adoc",
         "pve_firewall_ip_aliases" : "pve-firewall.adoc",
         "pve_firewall_ip_sets" : "pve-firewall.adoc",
         "pve_firewall_ipfilter_section" : "pve-firewall.adoc",
         "pve_firewall_iptables_inspect" : "pve-firewall.adoc",
         "pve_firewall_log_levels" : "pve-firewall.adoc",
         "pve_firewall_nft" : "pve-firewall.adoc",
         "pve_firewall_nft_helpful_commands" : "pve-firewall.adoc",
         "pve_firewall_security_groups" : "pve-firewall.adoc",
         "pve_firewall_services_commands" : "pve-firewall.adoc",
         "pve_firewall_vm_container_configuration" : "pve-firewall.adoc",
         "pve_firewall_vnet_configuration" : "pve-firewall.adoc",
         "pveceph_create_mgr" : "pveceph.adoc",
         "pveceph_create_mon" : "pveceph.adoc",
         "pveceph_destroy_mgr" : "pveceph.adoc",
         "pveceph_destroy_mon" : "pveceph.adoc",
         "pveceph_fs" : "pveceph.adoc",
         "pveceph_fs_create" : "pveceph.adoc",
         "pveceph_fs_mds" : "pveceph.adoc",
         "pveceph_scrub" : "pveceph.adoc",
         "pveceph_shutdown" : "pveceph.adoc",
         "pvecm_adding_nodes_with_separated_cluster_network" : "pvecm.adoc",
         "pvecm_cluster_create_via_cli" : "pvecm.adoc",
         "pvecm_cluster_create_via_gui" : "pvecm.adoc",
         "pvecm_cluster_network" : "pvecm.adoc",
         "pvecm_cluster_network_requirements" : "pvecm.adoc",
         "pvecm_corosync_addresses" : "pvecm.adoc",
         "pvecm_corosync_conf_glossary" : "pvecm.adoc",
         "pvecm_create_cluster" : "pvecm.adoc",
         "pvecm_edit_corosync_conf" : "pvecm.adoc",
         "pvecm_join_node_to_cluster" : "pvecm.adoc",
         "pvecm_migration_network" : "pvecm.adoc",
         "pvecm_next_id_range" : "pvecm.adoc",
         "pvecm_qdevice_status_flags" : "pvecm.adoc",
         "pvecm_redundancy" : "pvecm.adoc",
         "pvecm_separate_cluster_net_after_creation" : "pvecm.adoc",
         "pvecm_separate_node_without_reinstall" : "pvecm.adoc",
         "pveproxy_custom_tls_cert" : "pveproxy.adoc",
         "pveproxy_host_acls" : "pveproxy.adoc",
         "pveproxy_listening_address" : "pveproxy.adoc",
         "pveproxy_real_ip" : "pveproxy.adoc",
         "pveproxy_response_compression" : "pveproxy.adoc",
         "pvesdn_config_common_options" : "pvesdn.adoc",
         "pvesdn_config_controllers" : "pvesdn.adoc",
         "pvesdn_config_dhcp" : "pvesdn.adoc",
         "pvesdn_config_dns" : "pvesdn.adoc",
         "pvesdn_config_ipam" : "pvesdn.adoc",
         "pvesdn_config_subnet" : "pvesdn.adoc",
         "pvesdn_config_vnet" : "pvesdn.adoc",
         "pvesdn_config_zone" : "pvesdn.adoc",
         "pvesdn_controller_plugin_BGP" : "pvesdn.adoc",
         "pvesdn_controller_plugin_ISIS" : "pvesdn.adoc",
         "pvesdn_controller_plugin_evpn" : "pvesdn.adoc",
         "pvesdn_dns_plugin_powerdns" : "pvesdn.adoc",
         "pvesdn_firewall_integration" : "pvesdn.adoc",
         "pvesdn_install_dhcp_ipam" : "pvesdn.adoc",
         "pvesdn_install_frrouting" : "pvesdn.adoc",
         "pvesdn_installation" : "pvesdn.adoc",
         "pvesdn_ipam_plugin_netbox" : "pvesdn.adoc",
         "pvesdn_ipam_plugin_phpipam" : "pvesdn.adoc",
         "pvesdn_ipam_plugin_pveipam" : "pvesdn.adoc",
         "pvesdn_main_configuration" : "pvesdn.adoc",
         "pvesdn_notes" : "pvesdn.adoc",
         "pvesdn_overview" : "pvesdn.adoc",
         "pvesdn_setup_example_evpn" : "pvesdn.adoc",
         "pvesdn_setup_example_nat" : "pvesdn.adoc",
         "pvesdn_setup_example_qinq" : "pvesdn.adoc",
         "pvesdn_setup_example_simple" : "pvesdn.adoc",
         "pvesdn_setup_example_vlan" : "pvesdn.adoc",
         "pvesdn_setup_example_vxlan" : "pvesdn.adoc",
         "pvesdn_setup_examples" : "pvesdn.adoc",
         "pvesdn_support_status" : "pvesdn.adoc",
         "pvesdn_tech_and_config_overview" : "pvesdn.adoc",
         "pvesdn_zone_plugin_evpn" : "pvesdn.adoc",
         "pvesdn_zone_plugin_qinq" : "pvesdn.adoc",
         "pvesdn_zone_plugin_simple" : "pvesdn.adoc",
         "pvesdn_zone_plugin_vlan" : "pvesdn.adoc",
         "pvesdn_zone_plugin_vxlan" : "pvesdn.adoc",
         "pvesr_schedule_format_examples" : "calendar-events.adoc",
         "pvesr_schedule_time_format" : "pvesr.adoc",
         "pveum_authentication_realms" : "pveum.adoc",
         "pveum_configure_u2f" : "pveum.adoc",
         "pveum_configure_webauthn" : "pveum.adoc",
         "pveum_groups" : "pveum.adoc",
         "pveum_ldap_reserved_characters" : "pveum.adoc",
         "pveum_ldap_sync" : "pveum.adoc",
         "pveum_ldap_sync_options" : "pveum.adoc",
         "pveum_openid" : "pveum.adoc",
         "pveum_permission_management" : "pveum.adoc",
         "pveum_pools" : "pveum.adoc",
         "pveum_resource_pools" : "pveum.adoc",
         "pveum_roles" : "pveum.adoc",
         "pveum_templated_paths" : "pveum.adoc",
         "pveum_tfa_auth" : "pveum.adoc",
         "pveum_tfa_lockout" : "pveum.adoc",
         "pveum_tokens" : "pveum.adoc",
         "pveum_user_configured_totp" : "pveum.adoc",
         "pveum_user_configured_u2f" : "pveum.adoc",
         "pveum_users" : "pveum.adoc",
         "qm_audio_device" : "qm.adoc",
         "qm_ballooning" : "qm.adoc",
         "qm_bios_and_uefi" : "qm.adoc",
         "qm_bootorder" : "qm.adoc",
         "qm_cloud_init" : "qm.adoc",
         "qm_configuration" : "qm.adoc",
         "qm_copy_and_clone" : "qm.adoc",
         "qm_cpu" : "qm.adoc",
         "qm_cpu_resource_limits" : "qm.adoc",
         "qm_display" : "qm.adoc",
         "qm_general_settings" : "qm.adoc",
         "qm_hard_disk" : "qm.adoc",
         "qm_hard_disk_bus" : "qm.adoc",
         "qm_hard_disk_cache" : "qm.adoc",
         "qm_hard_disk_discard" : "qm.adoc",
         "qm_hard_disk_formats" : "qm.adoc",
         "qm_hard_disk_iothread" : "qm.adoc",
         "qm_hibernate" : "qm.adoc",
         "qm_import_virtual_machines" : "qm.adoc",
         "qm_ivshmem" : "qm.adoc",
         "qm_machine_type" : "qm.adoc",
         "qm_machine_update" : "qm.adoc",
         "qm_meltdown_spectre" : "qm.adoc",
         "qm_memory" : "qm.adoc",
         "qm_memory_encryption" : "qm.adoc",
         "qm_memory_encryption_sev" : "qm.adoc",
         "qm_migration" : "qm.adoc",
         "qm_network_device" : "qm.adoc",
         "qm_options" : "qm.adoc",
         "qm_os_settings" : "qm.adoc",
         "qm_pci_passthrough" : "qm.adoc",
         "qm_pci_passthrough_update_initramfs" : "qm.adoc",
         "qm_pci_passthrough_vm_config" : "qm.adoc",
         "qm_pci_viommu" : "qm.adoc",
         "qm_qemu_agent" : "qm.adoc",
         "qm_qga_auto_trim" : "qm.adoc",
         "qm_qga_enable" : "qm.adoc",
         "qm_qga_fsfreeze" : "qm.adoc",
         "qm_snapshots" : "qm.adoc",
         "qm_spice_enhancements" : "qm.adoc",
         "qm_startup_and_shutdown" : "qm.adoc",
         "qm_system_settings" : "qm.adoc",
         "qm_templates" : "qm.adoc",
         "qm_tpm" : "qm.adoc",
         "qm_usb_passthrough" : "qm.adoc",
         "qm_virtio_rng" : "qm.adoc",
         "qm_virtiofs" : "qm.adoc",
         "qm_virtual_machines_settings" : "qm.adoc",
         "qm_vmstatestorage" : "qm.adoc",
         "repos_secure_rpm" : "sysadmin.adoc",
         "resource_mapping" : "qm.adoc",
         "storage_btrfs" : "pvesm.adoc",
         "storage_cephfs" : "pvesm.adoc",
         "storage_cephfs_config" : "pvesm.adoc",
         "storage_cifs" : "pvesm.adoc",
         "storage_directory" : "pvesm.adoc",
         "storage_glusterfs" : "pvesm.adoc",
         "storage_iscsidirect" : "pvesm.adoc",
         "storage_lvm" : "pvesm.adoc",
         "storage_lvmthin" : "pvesm.adoc",
         "storage_nfs" : "pvesm.adoc",
         "storage_open_iscsi" : "pvesm.adoc",
         "storage_pbs" : "pvesm.adoc",
         "storage_pbs_encryption" : "pvesm.adoc",
         "storage_rbd_config" : "pvesm.adoc",
         "storage_zfs" : "pvesm.adoc",
         "storage_zfspool" : "pvesm.adoc",
         "sysadmin_certificate_management" : "sysadmin.adoc",
         "sysadmin_certs_acme_account" : "sysadmin.adoc",
         "sysadmin_certs_acme_automatic_renewal" : "sysadmin.adoc",
         "sysadmin_certs_acme_dns_api_config" : "sysadmin.adoc",
         "sysadmin_certs_acme_dns_challenge" : "sysadmin.adoc",
         "sysadmin_certs_acme_http_challenge" : "sysadmin.adoc",
         "sysadmin_certs_acme_plugins" : "sysadmin.adoc",
         "sysadmin_certs_acme_switch_from_staging" : "sysadmin.adoc",
         "sysadmin_certs_api_gui" : "sysadmin.adoc",
         "sysadmin_certs_get_trusted_acme_cert" : "sysadmin.adoc",
         "sysadmin_certs_upload_custom" : "sysadmin.adoc",
         "sysadmin_firmware_cpu" : "sysadmin.adoc",
         "sysadmin_firmware_persistent" : "sysadmin.adoc",
         "sysadmin_firmware_runtime_files" : "sysadmin.adoc",
         "sysadmin_firmware_troubleshooting" : "sysadmin.adoc",
         "sysadmin_network_bond" : "sysadmin.adoc",
         "sysadmin_network_configuration" : "sysadmin.adoc",
         "sysadmin_network_masquerading" : "sysadmin.adoc",
         "sysadmin_network_routed" : "sysadmin.adoc",
         "sysadmin_network_vlan" : "sysadmin.adoc",
         "sysadmin_package_repositories" : "sysadmin.adoc",
         "sysadmin_package_repositories_ceph" : "sysadmin.adoc",
         "sysadmin_pxvirt_repo" : "sysadmin.adoc",
         "sysadmin_zfs_add_cache_and_log_dev" : "sysadmin.adoc",
         "sysadmin_zfs_change_failed_dev" : "sysadmin.adoc",
         "sysadmin_zfs_create_new_zpool" : "sysadmin.adoc",
         "sysadmin_zfs_create_new_zpool_raid0" : "sysadmin.adoc",
         "sysadmin_zfs_create_new_zpool_raid1" : "sysadmin.adoc",
         "sysadmin_zfs_create_new_zpool_raid10" : "sysadmin.adoc",
         "sysadmin_zfs_create_new_zpool_raidz1" : "sysadmin.adoc",
         "sysadmin_zfs_create_new_zpool_with_cache" : "sysadmin.adoc",
         "sysadmin_zfs_create_new_zpool_with_log" : "sysadmin.adoc",
         "sysadmin_zfs_features" : "sysadmin.adoc",
         "sysadmin_zfs_limit_memory_usage" : "sysadmin.adoc",
         "sysadmin_zfs_raid_considerations" : "sysadmin.adoc",
         "sysadmin_zfs_raid_performance" : "sysadmin.adoc",
         "sysadmin_zfs_raid_size_space_usage_redundancy" : "sysadmin.adoc",
         "sysadmin_zfs_special_device" : "sysadmin.adoc",
         "sysboot" : "sysadmin.adoc",
         "sysboot_determine_bootloader_used" : "sysadmin.adoc",
         "sysboot_edit_kernel_cmdline" : "sysadmin.adoc",
         "sysboot_grub" : "sysadmin.adoc",
         "sysboot_installer_part_scheme" : "sysadmin.adoc",
         "sysboot_kernel_pin" : "sysadmin.adoc",
         "sysboot_proxmox_boot_refresh" : "sysadmin.adoc",
         "sysboot_proxmox_boot_setup" : "sysadmin.adoc",
         "sysboot_proxmox_boot_tool" : "sysadmin.adoc",
         "sysboot_secure_boot" : "sysadmin.adoc",
         "sysboot_systemd_boot" : "sysadmin.adoc",
         "sysboot_systemd_boot_config" : "sysadmin.adoc",
         "system_software_updates" : "sysadmin.adoc",
         "systemd_network_interface_names" : "sysadmin.adoc",
         "translation" : "pve-intro.adoc",
         "udp" : "sysadmin.adoc",
         "user-realms-ad" : "pveum.adoc",
         "user-realms-ldap" : "pveum.adoc",
         "user-realms-pam" : "pveum.adoc",
         "user-realms-pve" : "pveum.adoc",
         "user_mgmt" : "pveum.adoc",
         "user_tfa_setup_recovery_keys" : "pveum.adoc",
         "user_tfa_setup_totp" : "pveum.adoc",
         "user_tfa_setup_webauthn" : "pveum.adoc",
         "vzdump_configuration" : "vzdump.adoc",
         "vzdump_jobs" : "vzdump.adoc",
         "vzdump_notes" : "vzdump.adoc",
         "vzdump_protection" : "vzdump.adoc",
         "vzdump_restore" : "vzdump.adoc",
         "vzdump_retention" : "vzdump.adoc",
         "zfs_compression" : "sysadmin.adoc",
         "zfs_encryption" : "sysadmin.adoc",
         "zfs_swap" : "sysadmin.adoc"
      },
      "wiki" : {
         "Ahmed15" : "link:/wiki/参考文献#Ahmed15",
         "Ahmed16" : "link:/wiki/参考文献#Ahmed16",
         "Bessen09" : "link:/wiki/参考文献#Bessen09",
         "Bir96" : "link:/wiki/参考文献#Bir96",
         "Cheng14" : "link:/wiki/参考文献#Cheng14",
         "Goldman16" : "link:/wiki/参考文献#Goldman16",
         "Hertzog13" : "link:/wiki/参考文献#Hertzog13",
         "Kreibich10" : "link:/wiki/参考文献#Kreibich10",
         "Loeliger12" : "link:/wiki/参考文献#Loeliger12",
         "Loshin03" : "link:/wiki/参考文献#Loshin03",
         "Mauerer08" : "link:/wiki/参考文献#Mauerer08",
         "Richardson07" : "link:/wiki/参考文献#Richardson07",
         "Singh15" : "link:/wiki/参考文献#Singh15",
         "Singh16" : "link:/wiki/参考文献#Singh16",
         "Surber16" : "link:/wiki/参考文献#Surber16",
         "Walsh10" : "link:/wiki/参考文献#Walsh10",
         "_recommendations_for_a_healthy_ceph_cluster" : "link:/wiki/部署超融合_Ceph_集群#_recommendations_for_a_healthy_ceph_cluster",
         "advanced_btrfs_options" : "link:/wiki/安装#advanced_btrfs_options",
         "advanced_lvm_options" : "link:/wiki/安装#advanced_lvm_options",
         "advanced_zfs_options" : "link:/wiki/安装#advanced_zfs_options",
         "ballooning-target" : "link:/wiki/Proxmox_节点管理#ballooning-target",
         "ceph_rados_block_devices" : "link:/wiki/Storage:_RBD#ceph_rados_block_devices",
         "chapter_btrfs" : "link:/wiki/BTRFS#chapter_btrfs",
         "chapter_calendar_events" : "link:/wiki/日历事件#chapter_calendar_events",
         "chapter_firmware_updates" : "link:/wiki/固件更新#chapter_firmware_updates",
         "chapter_gui" : "link:/wiki/图形用户界面#chapter_gui",
         "chapter_ha_manager" : "link:/wiki/高可用性#chapter_ha_manager",
         "chapter_hyper_converged_infrastructure" : "link:/wiki/简介#chapter_hyper_converged_infrastructure",
         "chapter_installation" : "link:/wiki/安装#chapter_installation",
         "chapter_lvm" : "link:/wiki/逻辑卷管理器_(LVM)#chapter_lvm",
         "chapter_notifications" : "link:/wiki/通知#chapter_notifications",
         "chapter_pct" : "link:/wiki/Linux_Container#chapter_pct",
         "chapter_pmxcfs" : "link:/wiki/Proxmox_Cluster_File_System_(pmxcfs)#chapter_pmxcfs",
         "chapter_pve_firewall" : "link:/wiki/Firewall#chapter_pve_firewall",
         "chapter_pveceph" : "link:/wiki/部署超融合_Ceph_集群#chapter_pveceph",
         "chapter_pvecm" : "link:/wiki/集群管理器#chapter_pvecm",
         "chapter_pvesdn" : "link:/wiki/软件定义网络#chapter_pvesdn",
         "chapter_pvesr" : "link:/wiki/存储复制#chapter_pvesr",
         "chapter_qm_vcpu_list" : "link:/wiki/简介#chapter_qm_vcpu_list",
         "chapter_storage" : "link:/wiki/Storage#chapter_storage",
         "chapter_system_administration" : "link:/wiki/主机系统管理#chapter_system_administration",
         "chapter_user_management" : "link:/wiki/用户管理#chapter_user_management",
         "chapter_virtual_machines" : "link:/wiki/QEMU/KVM_虚拟机#chapter_virtual_machines",
         "chapter_vzdump" : "link:/wiki/备份与还原#chapter_vzdump",
         "chapter_zfs" : "link:/wiki/Linux_上的_ZFS#chapter_zfs",
         "cli_general" : "link:/wiki/常规#cli_general",
         "configuration_files" : "link:/wiki/常规#configuration_files",
         "configuration_files_casing" : "link:/wiki/常规#configuration_files_casing",
         "datacenter_configuration_file" : "link:/wiki/常规#datacenter_configuration_file",
         "disk_health_monitoring" : "link:/wiki/磁盘健康监控#disk_health_monitoring",
         "external_metric_server" : "link:/wiki/外部指标服务器#external_metric_server",
         "faq-support-table" : "link:/wiki/FAQ#faq-support-table",
         "faq-upgrade" : "link:/wiki/FAQ#faq-upgrade",
         "faq-upgrade-major" : "link:/wiki/FAQ#faq-upgrade-major",
         "first_guest_boot_delay" : "link:/wiki/Proxmox_节点管理#first_guest_boot_delay",
         "getting_help" : "link:/wiki/简介#getting_help",
         "gui_consent_banner" : "link:/wiki/图形用户界面#gui_consent_banner",
         "gui_my_settings" : "link:/wiki/图形用户界面#gui_my_settings",
         "gui_tags" : "link:/wiki/图形用户界面#gui_tags",
         "ha_manager_crm" : "link:/wiki/高可用性#ha_manager_crm",
         "ha_manager_crs" : "link:/wiki/高可用性#ha_manager_crs",
         "ha_manager_error_recovery" : "link:/wiki/高可用性#ha_manager_error_recovery",
         "ha_manager_fencing" : "link:/wiki/高可用性#ha_manager_fencing",
         "ha_manager_groups" : "link:/wiki/高可用性#ha_manager_groups",
         "ha_manager_lrm" : "link:/wiki/高可用性#ha_manager_lrm",
         "ha_manager_node_maintenance" : "link:/wiki/高可用性#ha_manager_node_maintenance",
         "ha_manager_package_updates" : "link:/wiki/高可用性#ha_manager_package_updates",
         "ha_manager_resource_config" : "link:/wiki/高可用性#ha_manager_resource_config",
         "ha_manager_resources" : "link:/wiki/高可用性#ha_manager_resources",
         "ha_manager_service_states" : "link:/wiki/高可用性#ha_manager_service_states",
         "ha_manager_shutdown_policy" : "link:/wiki/高可用性#ha_manager_shutdown_policy",
         "ha_manager_start_failure_policy" : "link:/wiki/高可用性#ha_manager_start_failure_policy",
         "howto_improve_pve_docs" : "link:/wiki/简介#howto_improve_pve_docs",
         "i18n_with_git" : "link:/wiki/简介#i18n_with_git",
         "i18n_without_git" : "link:/wiki/简介#i18n_without_git",
         "install_minimal_requirements" : "link:/wiki/系统要求#install_minimal_requirements",
         "install_recommended_requirements" : "link:/wiki/系统要求#install_recommended_requirements",
         "installation_installer" : "link:/wiki/安装#installation_installer",
         "installation_prepare_media" : "link:/wiki/准备安装介质#installation_prepare_media",
         "installation_unattended" : "link:/wiki/安装#installation_unattended",
         "intro_central_management" : "link:/wiki/简介#intro_central_management",
         "intro_project_history" : "link:/wiki/简介#intro_project_history",
         "kernel_samepage_merging" : "link:/wiki/Kernel_Samepage_Merging_(KSM)#kernel_samepage_merging",
         "markdown_basics" : "link:/wiki/Markdown_入门#markdown_basics",
         "metric_server_graphite" : "link:/wiki/外部指标服务器#metric_server_graphite",
         "metric_server_influxdb" : "link:/wiki/外部指标服务器#metric_server_influxdb",
         "network_override_device_names" : "link:/wiki/网络配置#network_override_device_names",
         "network_pin_naming_scheme_version" : "link:/wiki/网络配置#network_pin_naming_scheme_version",
         "nomodeset_kernel_param" : "link:/wiki/安装#nomodeset_kernel_param",
         "notification_events" : "link:/wiki/通知#notification_events",
         "notification_matchers" : "link:/wiki/通知#notification_matchers",
         "notification_matchers_calendar" : "link:/wiki/通知#notification_matchers_calendar",
         "notification_matchers_field" : "link:/wiki/通知#notification_matchers_field",
         "notification_matchers_severity" : "link:/wiki/通知#notification_matchers_severity",
         "notification_mode" : "link:/wiki/通知#notification_mode",
         "notification_targets" : "link:/wiki/通知#notification_targets",
         "notification_targets_gotify" : "link:/wiki/通知#notification_targets_gotify",
         "notification_targets_sendmail" : "link:/wiki/通知#notification_targets_sendmail",
         "notification_targets_smtp" : "link:/wiki/通知#notification_targets_smtp",
         "notification_targets_webhook" : "link:/wiki/通知#notification_targets_webhook",
         "pct_cgroup" : "link:/wiki/Linux_Container#pct_cgroup",
         "pct_cgroup_change_version" : "link:/wiki/Linux_Container#pct_cgroup_change_version",
         "pct_cgroup_compat" : "link:/wiki/Linux_Container#pct_cgroup_compat",
         "pct_configuration" : "link:/wiki/Linux_Container#pct_configuration",
         "pct_container_images" : "link:/wiki/Linux_Container#pct_container_images",
         "pct_container_network" : "link:/wiki/Linux_Container#pct_container_network",
         "pct_container_storage" : "link:/wiki/Linux_Container#pct_container_storage",
         "pct_cpu" : "link:/wiki/Linux_Container#pct_cpu",
         "pct_general" : "link:/wiki/Linux_Container#pct_general",
         "pct_memory" : "link:/wiki/Linux_Container#pct_memory",
         "pct_migration" : "link:/wiki/Linux_Container#pct_migration",
         "pct_mount_points" : "link:/wiki/Linux_Container#pct_mount_points",
         "pct_options" : "link:/wiki/Linux_Container#pct_options",
         "pct_settings" : "link:/wiki/Linux_Container#pct_settings",
         "pct_snapshots" : "link:/wiki/Linux_Container#pct_snapshots",
         "pct_startup_and_shutdown" : "link:/wiki/Linux_Container#pct_startup_and_shutdown",
         "pct_supported_distributions" : "link:/wiki/Linux_Container#pct_supported_distributions",
         "proxmox_node_management" : "link:/wiki/Proxmox_节点管理#proxmox_node_management",
         "pve_ceph_device_classes" : "link:/wiki/部署超融合_Ceph_集群#pve_ceph_device_classes",
         "pve_ceph_ec_pools" : "link:/wiki/部署超融合_Ceph_集群#pve_ceph_ec_pools",
         "pve_ceph_install" : "link:/wiki/部署超融合_Ceph_集群#pve_ceph_install",
         "pve_ceph_install_wizard" : "link:/wiki/部署超融合_Ceph_集群#pve_ceph_install_wizard",
         "pve_ceph_manager" : "link:/wiki/部署超融合_Ceph_集群#pve_ceph_manager",
         "pve_ceph_mon_and_ts" : "link:/wiki/部署超融合_Ceph_集群#pve_ceph_mon_and_ts",
         "pve_ceph_monitors" : "link:/wiki/部署超融合_Ceph_集群#pve_ceph_monitors",
         "pve_ceph_osd_create" : "link:/wiki/部署超融合_Ceph_集群#pve_ceph_osd_create",
         "pve_ceph_osd_destroy" : "link:/wiki/部署超融合_Ceph_集群#pve_ceph_osd_destroy",
         "pve_ceph_osd_replace" : "link:/wiki/部署超融合_Ceph_集群#pve_ceph_osd_replace",
         "pve_ceph_osds" : "link:/wiki/部署超融合_Ceph_集群#pve_ceph_osds",
         "pve_ceph_pools" : "link:/wiki/部署超融合_Ceph_集群#pve_ceph_pools",
         "pve_ceph_recommendation_cpu" : "link:/wiki/部署超融合_Ceph_集群#pve_ceph_recommendation_cpu",
         "pve_ceph_recommendation_disk" : "link:/wiki/部署超融合_Ceph_集群#pve_ceph_recommendation_disk",
         "pve_ceph_recommendation_memory" : "link:/wiki/部署超融合_Ceph_集群#pve_ceph_recommendation_memory",
         "pve_ceph_recommendation_network" : "link:/wiki/部署超融合_Ceph_集群#pve_ceph_recommendation_network",
         "pve_ceph_recommendation_raid" : "link:/wiki/部署超融合_Ceph_集群#pve_ceph_recommendation_raid",
         "pve_ceph_ts" : "link:/wiki/部署超融合_Ceph_集群#pve_ceph_ts",
         "pve_ceph_ts_causes" : "link:/wiki/部署超融合_Ceph_集群#pve_ceph_ts_causes",
         "pve_ceph_ts_logs" : "link:/wiki/部署超融合_Ceph_集群#pve_ceph_ts_logs",
         "pve_ceph_ts_problems" : "link:/wiki/部署超融合_Ceph_集群#pve_ceph_ts_problems",
         "pve_ceph_wizard_networks" : "link:/wiki/部署超融合_Ceph_集群#pve_ceph_wizard_networks",
         "pve_firewall_cluster_wide_setup" : "link:/wiki/Firewall#pve_firewall_cluster_wide_setup",
         "pve_firewall_default_rules" : "link:/wiki/Firewall#pve_firewall_default_rules",
         "pve_firewall_host_specific_configuration" : "link:/wiki/Firewall#pve_firewall_host_specific_configuration",
         "pve_firewall_ip_aliases" : "link:/wiki/Firewall#pve_firewall_ip_aliases",
         "pve_firewall_ip_sets" : "link:/wiki/Firewall#pve_firewall_ip_sets",
         "pve_firewall_ipfilter_section" : "link:/wiki/Firewall#pve_firewall_ipfilter_section",
         "pve_firewall_iptables_inspect" : "link:/wiki/Firewall#pve_firewall_iptables_inspect",
         "pve_firewall_log_levels" : "link:/wiki/Firewall#pve_firewall_log_levels",
         "pve_firewall_nft" : "link:/wiki/Firewall#pve_firewall_nft",
         "pve_firewall_nft_helpful_commands" : "link:/wiki/Firewall#pve_firewall_nft_helpful_commands",
         "pve_firewall_security_groups" : "link:/wiki/Firewall#pve_firewall_security_groups",
         "pve_firewall_services_commands" : "link:/wiki/Firewall#pve_firewall_services_commands",
         "pve_firewall_vm_container_configuration" : "link:/wiki/Firewall#pve_firewall_vm_container_configuration",
         "pve_firewall_vnet_configuration" : "link:/wiki/Firewall#pve_firewall_vnet_configuration",
         "pveceph_create_mgr" : "link:/wiki/部署超融合_Ceph_集群#pveceph_create_mgr",
         "pveceph_create_mon" : "link:/wiki/部署超融合_Ceph_集群#pveceph_create_mon",
         "pveceph_destroy_mgr" : "link:/wiki/部署超融合_Ceph_集群#pveceph_destroy_mgr",
         "pveceph_destroy_mon" : "link:/wiki/部署超融合_Ceph_集群#pveceph_destroy_mon",
         "pveceph_fs" : "link:/wiki/部署超融合_Ceph_集群#pveceph_fs",
         "pveceph_fs_create" : "link:/wiki/部署超融合_Ceph_集群#pveceph_fs_create",
         "pveceph_fs_mds" : "link:/wiki/部署超融合_Ceph_集群#pveceph_fs_mds",
         "pveceph_scrub" : "link:/wiki/部署超融合_Ceph_集群#pveceph_scrub",
         "pveceph_shutdown" : "link:/wiki/部署超融合_Ceph_集群#pveceph_shutdown",
         "pvecm_adding_nodes_with_separated_cluster_network" : "link:/wiki/集群管理器#pvecm_adding_nodes_with_separated_cluster_network",
         "pvecm_cluster_create_via_cli" : "link:/wiki/集群管理器#pvecm_cluster_create_via_cli",
         "pvecm_cluster_create_via_gui" : "link:/wiki/集群管理器#pvecm_cluster_create_via_gui",
         "pvecm_cluster_network" : "link:/wiki/集群管理器#pvecm_cluster_network",
         "pvecm_cluster_network_requirements" : "link:/wiki/集群管理器#pvecm_cluster_network_requirements",
         "pvecm_corosync_addresses" : "link:/wiki/集群管理器#pvecm_corosync_addresses",
         "pvecm_corosync_conf_glossary" : "link:/wiki/集群管理器#pvecm_corosync_conf_glossary",
         "pvecm_create_cluster" : "link:/wiki/集群管理器#pvecm_create_cluster",
         "pvecm_edit_corosync_conf" : "link:/wiki/集群管理器#pvecm_edit_corosync_conf",
         "pvecm_join_node_to_cluster" : "link:/wiki/集群管理器#pvecm_join_node_to_cluster",
         "pvecm_migration_network" : "link:/wiki/集群管理器#pvecm_migration_network",
         "pvecm_next_id_range" : "link:/wiki/集群管理器#pvecm_next_id_range",
         "pvecm_qdevice_status_flags" : "link:/wiki/集群管理器#pvecm_qdevice_status_flags",
         "pvecm_redundancy" : "link:/wiki/集群管理器#pvecm_redundancy",
         "pvecm_separate_cluster_net_after_creation" : "link:/wiki/集群管理器#pvecm_separate_cluster_net_after_creation",
         "pvecm_separate_node_without_reinstall" : "link:/wiki/集群管理器#pvecm_separate_node_without_reinstall",
         "pveproxy_custom_tls_cert" : "link:/wiki/pveproxy_-_Proxmox_VE_API_代理守护进程#pveproxy_custom_tls_cert",
         "pveproxy_host_acls" : "link:/wiki/pveproxy_-_Proxmox_VE_API_代理守护进程#pveproxy_host_acls",
         "pveproxy_listening_address" : "link:/wiki/pveproxy_-_Proxmox_VE_API_代理守护进程#pveproxy_listening_address",
         "pveproxy_real_ip" : "link:/wiki/pveproxy_-_Proxmox_VE_API_代理守护进程#pveproxy_real_ip",
         "pveproxy_response_compression" : "link:/wiki/pveproxy_-_Proxmox_VE_API_代理守护进程#pveproxy_response_compression",
         "pvesdn_config_common_options" : "link:/wiki/软件定义网络#pvesdn_config_common_options",
         "pvesdn_config_controllers" : "link:/wiki/软件定义网络#pvesdn_config_controllers",
         "pvesdn_config_dhcp" : "link:/wiki/软件定义网络#pvesdn_config_dhcp",
         "pvesdn_config_dns" : "link:/wiki/软件定义网络#pvesdn_config_dns",
         "pvesdn_config_ipam" : "link:/wiki/软件定义网络#pvesdn_config_ipam",
         "pvesdn_config_subnet" : "link:/wiki/软件定义网络#pvesdn_config_subnet",
         "pvesdn_config_vnet" : "link:/wiki/软件定义网络#pvesdn_config_vnet",
         "pvesdn_config_zone" : "link:/wiki/软件定义网络#pvesdn_config_zone",
         "pvesdn_controller_plugin_BGP" : "link:/wiki/软件定义网络#pvesdn_controller_plugin_BGP",
         "pvesdn_controller_plugin_ISIS" : "link:/wiki/软件定义网络#pvesdn_controller_plugin_ISIS",
         "pvesdn_controller_plugin_evpn" : "link:/wiki/软件定义网络#pvesdn_controller_plugin_evpn",
         "pvesdn_dns_plugin_powerdns" : "link:/wiki/软件定义网络#pvesdn_dns_plugin_powerdns",
         "pvesdn_firewall_integration" : "link:/wiki/软件定义网络#pvesdn_firewall_integration",
         "pvesdn_install_dhcp_ipam" : "link:/wiki/软件定义网络#pvesdn_install_dhcp_ipam",
         "pvesdn_install_frrouting" : "link:/wiki/软件定义网络#pvesdn_install_frrouting",
         "pvesdn_installation" : "link:/wiki/软件定义网络#pvesdn_installation",
         "pvesdn_ipam_plugin_netbox" : "link:/wiki/软件定义网络#pvesdn_ipam_plugin_netbox",
         "pvesdn_ipam_plugin_phpipam" : "link:/wiki/软件定义网络#pvesdn_ipam_plugin_phpipam",
         "pvesdn_ipam_plugin_pveipam" : "link:/wiki/软件定义网络#pvesdn_ipam_plugin_pveipam",
         "pvesdn_main_configuration" : "link:/wiki/软件定义网络#pvesdn_main_configuration",
         "pvesdn_notes" : "link:/wiki/软件定义网络#pvesdn_notes",
         "pvesdn_overview" : "link:/wiki/软件定义网络#pvesdn_overview",
         "pvesdn_setup_example_evpn" : "link:/wiki/软件定义网络#pvesdn_setup_example_evpn",
         "pvesdn_setup_example_nat" : "link:/wiki/软件定义网络#pvesdn_setup_example_nat",
         "pvesdn_setup_example_qinq" : "link:/wiki/软件定义网络#pvesdn_setup_example_qinq",
         "pvesdn_setup_example_simple" : "link:/wiki/软件定义网络#pvesdn_setup_example_simple",
         "pvesdn_setup_example_vlan" : "link:/wiki/软件定义网络#pvesdn_setup_example_vlan",
         "pvesdn_setup_example_vxlan" : "link:/wiki/软件定义网络#pvesdn_setup_example_vxlan",
         "pvesdn_setup_examples" : "link:/wiki/软件定义网络#pvesdn_setup_examples",
         "pvesdn_support_status" : "link:/wiki/软件定义网络#pvesdn_support_status",
         "pvesdn_tech_and_config_overview" : "link:/wiki/软件定义网络#pvesdn_tech_and_config_overview",
         "pvesdn_zone_plugin_evpn" : "link:/wiki/软件定义网络#pvesdn_zone_plugin_evpn",
         "pvesdn_zone_plugin_qinq" : "link:/wiki/软件定义网络#pvesdn_zone_plugin_qinq",
         "pvesdn_zone_plugin_simple" : "link:/wiki/软件定义网络#pvesdn_zone_plugin_simple",
         "pvesdn_zone_plugin_vlan" : "link:/wiki/软件定义网络#pvesdn_zone_plugin_vlan",
         "pvesdn_zone_plugin_vxlan" : "link:/wiki/软件定义网络#pvesdn_zone_plugin_vxlan",
         "pvesr_schedule_format_examples" : "link:/wiki/日历事件#pvesr_schedule_format_examples",
         "pvesr_schedule_time_format" : "link:/wiki/存储复制#pvesr_schedule_time_format",
         "pveum_authentication_realms" : "link:/wiki/用户管理#pveum_authentication_realms",
         "pveum_configure_u2f" : "link:/wiki/用户管理#pveum_configure_u2f",
         "pveum_configure_webauthn" : "link:/wiki/用户管理#pveum_configure_webauthn",
         "pveum_groups" : "link:/wiki/用户管理#pveum_groups",
         "pveum_ldap_reserved_characters" : "link:/wiki/用户管理#pveum_ldap_reserved_characters",
         "pveum_ldap_sync" : "link:/wiki/用户管理#pveum_ldap_sync",
         "pveum_ldap_sync_options" : "link:/wiki/用户管理#pveum_ldap_sync_options",
         "pveum_openid" : "link:/wiki/用户管理#pveum_openid",
         "pveum_permission_management" : "link:/wiki/用户管理#pveum_permission_management",
         "pveum_pools" : "link:/wiki/用户管理#pveum_pools",
         "pveum_resource_pools" : "link:/wiki/用户管理#pveum_resource_pools",
         "pveum_roles" : "link:/wiki/用户管理#pveum_roles",
         "pveum_templated_paths" : "link:/wiki/用户管理#pveum_templated_paths",
         "pveum_tfa_auth" : "link:/wiki/用户管理#pveum_tfa_auth",
         "pveum_tfa_lockout" : "link:/wiki/用户管理#pveum_tfa_lockout",
         "pveum_tokens" : "link:/wiki/用户管理#pveum_tokens",
         "pveum_user_configured_totp" : "link:/wiki/用户管理#pveum_user_configured_totp",
         "pveum_user_configured_u2f" : "link:/wiki/用户管理#pveum_user_configured_u2f",
         "pveum_users" : "link:/wiki/用户管理#pveum_users",
         "qm_audio_device" : "link:/wiki/QEMU/KVM_虚拟机#qm_audio_device",
         "qm_ballooning" : "link:/wiki/QEMU/KVM_虚拟机#qm_ballooning",
         "qm_bios_and_uefi" : "link:/wiki/QEMU/KVM_虚拟机#qm_bios_and_uefi",
         "qm_bootorder" : "link:/wiki/QEMU/KVM_虚拟机#qm_bootorder",
         "qm_cloud_init" : "link:/wiki/Cloud-Init_支持#qm_cloud_init",
         "qm_configuration" : "link:/wiki/QEMU/KVM_虚拟机#qm_configuration",
         "qm_copy_and_clone" : "link:/wiki/QEMU/KVM_虚拟机#qm_copy_and_clone",
         "qm_cpu" : "link:/wiki/QEMU/KVM_虚拟机#qm_cpu",
         "qm_cpu_resource_limits" : "link:/wiki/QEMU/KVM_虚拟机#qm_cpu_resource_limits",
         "qm_display" : "link:/wiki/QEMU/KVM_虚拟机#qm_display",
         "qm_general_settings" : "link:/wiki/QEMU/KVM_虚拟机#qm_general_settings",
         "qm_hard_disk" : "link:/wiki/QEMU/KVM_虚拟机#qm_hard_disk",
         "qm_hard_disk_bus" : "link:/wiki/QEMU/KVM_虚拟机#qm_hard_disk_bus",
         "qm_hard_disk_cache" : "link:/wiki/QEMU/KVM_虚拟机#qm_hard_disk_cache",
         "qm_hard_disk_discard" : "link:/wiki/QEMU/KVM_虚拟机#qm_hard_disk_discard",
         "qm_hard_disk_formats" : "link:/wiki/QEMU/KVM_虚拟机#qm_hard_disk_formats",
         "qm_hard_disk_iothread" : "link:/wiki/QEMU/KVM_虚拟机#qm_hard_disk_iothread",
         "qm_hibernate" : "link:/wiki/QEMU/KVM_虚拟机#qm_hibernate",
         "qm_import_virtual_machines" : "link:/wiki/QEMU/KVM_虚拟机#qm_import_virtual_machines",
         "qm_ivshmem" : "link:/wiki/QEMU/KVM_虚拟机#qm_ivshmem",
         "qm_machine_type" : "link:/wiki/QEMU/KVM_虚拟机#qm_machine_type",
         "qm_machine_update" : "link:/wiki/QEMU/KVM_虚拟机#qm_machine_update",
         "qm_meltdown_spectre" : "link:/wiki/QEMU/KVM_虚拟机#qm_meltdown_spectre",
         "qm_memory" : "link:/wiki/QEMU/KVM_虚拟机#qm_memory",
         "qm_memory_encryption" : "link:/wiki/QEMU/KVM_虚拟机#qm_memory_encryption",
         "qm_memory_encryption_sev" : "link:/wiki/QEMU/KVM_虚拟机#qm_memory_encryption_sev",
         "qm_migration" : "link:/wiki/QEMU/KVM_虚拟机#qm_migration",
         "qm_network_device" : "link:/wiki/QEMU/KVM_虚拟机#qm_network_device",
         "qm_options" : "link:/wiki/QEMU/KVM_虚拟机#qm_options",
         "qm_os_settings" : "link:/wiki/QEMU/KVM_虚拟机#qm_os_settings",
         "qm_pci_passthrough" : "link:/wiki/PCI(e)_直通#qm_pci_passthrough",
         "qm_pci_passthrough_update_initramfs" : "link:/wiki/PCI(e)_直通#qm_pci_passthrough_update_initramfs",
         "qm_pci_passthrough_vm_config" : "link:/wiki/PCI(e)_直通#qm_pci_passthrough_vm_config",
         "qm_pci_viommu" : "link:/wiki/PCI(e)_直通#qm_pci_viommu",
         "qm_qemu_agent" : "link:/wiki/QEMU/KVM_虚拟机#qm_qemu_agent",
         "qm_qga_auto_trim" : "link:/wiki/QEMU/KVM_虚拟机#qm_qga_auto_trim",
         "qm_qga_enable" : "link:/wiki/QEMU/KVM_虚拟机#qm_qga_enable",
         "qm_qga_fsfreeze" : "link:/wiki/QEMU/KVM_虚拟机#qm_qga_fsfreeze",
         "qm_snapshots" : "link:/wiki/QEMU/KVM_虚拟机#qm_snapshots",
         "qm_spice_enhancements" : "link:/wiki/QEMU/KVM_虚拟机#qm_spice_enhancements",
         "qm_startup_and_shutdown" : "link:/wiki/QEMU/KVM_虚拟机#qm_startup_and_shutdown",
         "qm_system_settings" : "link:/wiki/QEMU/KVM_虚拟机#qm_system_settings",
         "qm_templates" : "link:/wiki/QEMU/KVM_虚拟机#qm_templates",
         "qm_tpm" : "link:/wiki/QEMU/KVM_虚拟机#qm_tpm",
         "qm_usb_passthrough" : "link:/wiki/QEMU/KVM_虚拟机#qm_usb_passthrough",
         "qm_virtio_rng" : "link:/wiki/QEMU/KVM_虚拟机#qm_virtio_rng",
         "qm_virtiofs" : "link:/wiki/QEMU/KVM_虚拟机#qm_virtiofs",
         "qm_virtual_machines_settings" : "link:/wiki/QEMU/KVM_虚拟机#qm_virtual_machines_settings",
         "qm_vmstatestorage" : "link:/wiki/QEMU/KVM_虚拟机#qm_vmstatestorage",
         "repos_secure_rpm" : "link:/wiki/软件包仓库#repos_secure_rpm",
         "resource_mapping" : "link:/wiki/QEMU/KVM_虚拟机#resource_mapping",
         "storage_btrfs" : "link:/wiki/Storage:_BTRFS#storage_btrfs",
         "storage_cephfs" : "link:/wiki/Storage:_CephFS#storage_cephfs",
         "storage_cephfs_config" : "link:/wiki/Storage:_CephFS#storage_cephfs_config",
         "storage_cifs" : "link:/wiki/Storage:_CIFS#storage_cifs",
         "storage_directory" : "link:/wiki/Storage:_Directory#storage_directory",
         "storage_glusterfs" : "link:/wiki/Storage:_GlusterFS#storage_glusterfs",
         "storage_iscsidirect" : "link:/wiki/Storage:_User_Mode_iSCSI#storage_iscsidirect",
         "storage_lvm" : "link:/wiki/Storage:_LVM#storage_lvm",
         "storage_lvmthin" : "link:/wiki/Storage:_LVM_Thin#storage_lvmthin",
         "storage_nfs" : "link:/wiki/Storage:_NFS#storage_nfs",
         "storage_open_iscsi" : "link:/wiki/存储：iSCSI#storage_open_iscsi",
         "storage_pbs" : "link:/wiki/存储：Proxmox_Backup_Server#storage_pbs",
         "storage_pbs_encryption" : "link:/wiki/存储：Proxmox_Backup_Server#storage_pbs_encryption",
         "storage_rbd_config" : "link:/wiki/Storage:_RBD#storage_rbd_config",
         "storage_zfs" : "link:/wiki/Storage:_ZFS_over_ISCSI#storage_zfs",
         "storage_zfspool" : "link:/wiki/Storage:_ZFS#storage_zfspool",
         "sysadmin_certificate_management" : "link:/wiki/证书管理#sysadmin_certificate_management",
         "sysadmin_certs_acme_account" : "link:/wiki/证书管理#sysadmin_certs_acme_account",
         "sysadmin_certs_acme_automatic_renewal" : "link:/wiki/证书管理#sysadmin_certs_acme_automatic_renewal",
         "sysadmin_certs_acme_dns_api_config" : "link:/wiki/证书管理#sysadmin_certs_acme_dns_api_config",
         "sysadmin_certs_acme_dns_challenge" : "link:/wiki/证书管理#sysadmin_certs_acme_dns_challenge",
         "sysadmin_certs_acme_http_challenge" : "link:/wiki/证书管理#sysadmin_certs_acme_http_challenge",
         "sysadmin_certs_acme_plugins" : "link:/wiki/证书管理#sysadmin_certs_acme_plugins",
         "sysadmin_certs_acme_switch_from_staging" : "link:/wiki/证书管理#sysadmin_certs_acme_switch_from_staging",
         "sysadmin_certs_api_gui" : "link:/wiki/证书管理#sysadmin_certs_api_gui",
         "sysadmin_certs_get_trusted_acme_cert" : "link:/wiki/证书管理#sysadmin_certs_get_trusted_acme_cert",
         "sysadmin_certs_upload_custom" : "link:/wiki/证书管理#sysadmin_certs_upload_custom",
         "sysadmin_firmware_cpu" : "link:/wiki/固件更新#sysadmin_firmware_cpu",
         "sysadmin_firmware_persistent" : "link:/wiki/固件更新#sysadmin_firmware_persistent",
         "sysadmin_firmware_runtime_files" : "link:/wiki/固件更新#sysadmin_firmware_runtime_files",
         "sysadmin_firmware_troubleshooting" : "link:/wiki/固件更新#sysadmin_firmware_troubleshooting",
         "sysadmin_network_bond" : "link:/wiki/网络配置#sysadmin_network_bond",
         "sysadmin_network_configuration" : "link:/wiki/网络配置#sysadmin_network_configuration",
         "sysadmin_network_masquerading" : "link:/wiki/网络配置#sysadmin_network_masquerading",
         "sysadmin_network_routed" : "link:/wiki/网络配置#sysadmin_network_routed",
         "sysadmin_network_vlan" : "link:/wiki/网络配置#sysadmin_network_vlan",
         "sysadmin_package_repositories" : "link:/wiki/软件包仓库#sysadmin_package_repositories",
         "sysadmin_package_repositories_ceph" : "link:/wiki/软件包仓库#sysadmin_package_repositories_ceph",
         "sysadmin_pxvirt_repo" : "link:/wiki/软件包仓库#sysadmin_pxvirt_repo",
         "sysadmin_zfs_add_cache_and_log_dev" : "link:/wiki/Linux_上的_ZFS#sysadmin_zfs_add_cache_and_log_dev",
         "sysadmin_zfs_change_failed_dev" : "link:/wiki/Linux_上的_ZFS#sysadmin_zfs_change_failed_dev",
         "sysadmin_zfs_create_new_zpool" : "link:/wiki/Linux_上的_ZFS#sysadmin_zfs_create_new_zpool",
         "sysadmin_zfs_create_new_zpool_raid0" : "link:/wiki/Linux_上的_ZFS#sysadmin_zfs_create_new_zpool_raid0",
         "sysadmin_zfs_create_new_zpool_raid1" : "link:/wiki/Linux_上的_ZFS#sysadmin_zfs_create_new_zpool_raid1",
         "sysadmin_zfs_create_new_zpool_raid10" : "link:/wiki/Linux_上的_ZFS#sysadmin_zfs_create_new_zpool_raid10",
         "sysadmin_zfs_create_new_zpool_raidz1" : "link:/wiki/Linux_上的_ZFS#sysadmin_zfs_create_new_zpool_raidz1",
         "sysadmin_zfs_create_new_zpool_with_cache" : "link:/wiki/Linux_上的_ZFS#sysadmin_zfs_create_new_zpool_with_cache",
         "sysadmin_zfs_create_new_zpool_with_log" : "link:/wiki/Linux_上的_ZFS#sysadmin_zfs_create_new_zpool_with_log",
         "sysadmin_zfs_features" : "link:/wiki/Linux_上的_ZFS#sysadmin_zfs_features",
         "sysadmin_zfs_limit_memory_usage" : "link:/wiki/Linux_上的_ZFS#sysadmin_zfs_limit_memory_usage",
         "sysadmin_zfs_raid_considerations" : "link:/wiki/Linux_上的_ZFS#sysadmin_zfs_raid_considerations",
         "sysadmin_zfs_raid_performance" : "link:/wiki/Linux_上的_ZFS#sysadmin_zfs_raid_performance",
         "sysadmin_zfs_raid_size_space_usage_redundancy" : "link:/wiki/Linux_上的_ZFS#sysadmin_zfs_raid_size_space_usage_redundancy",
         "sysadmin_zfs_special_device" : "link:/wiki/Linux_上的_ZFS#sysadmin_zfs_special_device",
         "sysboot" : "link:/wiki/主机引导加载器#sysboot",
         "sysboot_determine_bootloader_used" : "link:/wiki/主机引导加载器#sysboot_determine_bootloader_used",
         "sysboot_edit_kernel_cmdline" : "link:/wiki/主机引导加载器#sysboot_edit_kernel_cmdline",
         "sysboot_grub" : "link:/wiki/主机引导加载器#sysboot_grub",
         "sysboot_installer_part_scheme" : "link:/wiki/主机引导加载器#sysboot_installer_part_scheme",
         "sysboot_kernel_pin" : "link:/wiki/主机引导加载器#sysboot_kernel_pin",
         "sysboot_proxmox_boot_refresh" : "link:/wiki/主机引导加载器#sysboot_proxmox_boot_refresh",
         "sysboot_proxmox_boot_setup" : "link:/wiki/主机引导加载器#sysboot_proxmox_boot_setup",
         "sysboot_proxmox_boot_tool" : "link:/wiki/主机引导加载器#sysboot_proxmox_boot_tool",
         "sysboot_secure_boot" : "link:/wiki/主机引导加载器#sysboot_secure_boot",
         "sysboot_systemd_boot" : "link:/wiki/主机引导加载器#sysboot_systemd_boot",
         "sysboot_systemd_boot_config" : "link:/wiki/主机引导加载器#sysboot_systemd_boot_config",
         "system_software_updates" : "link:/wiki/系统软件更新#system_software_updates",
         "systemd_network_interface_names" : "link:/wiki/网络配置#systemd_network_interface_names",
         "translation" : "link:/wiki/简介#translation",
         "udp" : "link:/wiki/外部指标服务器#udp",
         "user-realms-ad" : "link:/wiki/用户管理#user-realms-ad",
         "user-realms-ldap" : "link:/wiki/用户管理#user-realms-ldap",
         "user-realms-pam" : "link:/wiki/用户管理#user-realms-pam",
         "user-realms-pve" : "link:/wiki/用户管理#user-realms-pve",
         "user_mgmt" : "link:/wiki/用户管理#user_mgmt",
         "user_tfa_setup_recovery_keys" : "link:/wiki/用户管理#user_tfa_setup_recovery_keys",
         "user_tfa_setup_totp" : "link:/wiki/用户管理#user_tfa_setup_totp",
         "user_tfa_setup_webauthn" : "link:/wiki/用户管理#user_tfa_setup_webauthn",
         "vzdump_configuration" : "link:/wiki/备份与还原#vzdump_configuration",
         "vzdump_jobs" : "link:/wiki/备份与还原#vzdump_jobs",
         "vzdump_notes" : "link:/wiki/备份与还原#vzdump_notes",
         "vzdump_protection" : "link:/wiki/备份与还原#vzdump_protection",
         "vzdump_restore" : "link:/wiki/备份与还原#vzdump_restore",
         "vzdump_retention" : "link:/wiki/备份与还原#vzdump_retention",
         "zfs_compression" : "link:/wiki/Linux_上的_ZFS#zfs_compression",
         "zfs_encryption" : "link:/wiki/Linux_上的_ZFS#zfs_encryption",
         "zfs_swap" : "link:/wiki/Linux_上的_ZFS#zfs_swap"
      }
   },
   "doctype" : {
      "default" : {
         "GFDL.adoc" : 0,
         "README.adoc" : 0,
         "calendar-events.adoc" : 1,
         "certificate-management.adoc" : 1,
         "cli-general.adoc" : 1,
         "configuration-files.adoc" : 0,
         "cpu-models.conf.adoc" : 0,
         "datacenter.cfg.adoc" : 0,
         "firmware-updates.adoc" : 1,
         "getting-help.adoc" : 1,
         "ha-manager.adoc" : 0,
         "howto-improve-pve-docs.adoc" : 1,
         "hyper-converged-infrastructure.adoc" : 1,
         "index.adoc" : 0,
         "kernel-samepage-merging.adoc" : 1,
         "local-btrfs.adoc" : 1,
         "local-lvm.adoc" : 1,
         "local-zfs.adoc" : 1,
         "markdown-primer.adoc" : 0,
         "notifications.adoc" : 0,
         "output-format.adoc" : 1,
         "pct.adoc" : 0,
         "pct.conf.adoc" : 0,
         "pmxcfs.adoc" : 0,
         "pve-admin-guide.adoc" : 0,
         "pve-bibliography.adoc" : 0,
         "pve-copyright.adoc" : 1,
         "pve-disk-health-monitoring.adoc" : 1,
         "pve-external-metric-server.adoc" : 1,
         "pve-faq.adoc" : 0,
         "pve-firewall.adoc" : 0,
         "pve-gui.adoc" : 0,
         "pve-ha-crm.adoc" : 0,
         "pve-ha-lrm.adoc" : 0,
         "pve-installation-media.adoc" : 1,
         "pve-installation.adoc" : 0,
         "pve-intro.adoc" : 0,
         "pve-network.adoc" : 1,
         "pve-package-repos.adoc" : 1,
         "pve-storage-btrfs.adoc" : 1,
         "pve-storage-cephfs.adoc" : 1,
         "pve-storage-cifs.adoc" : 1,
         "pve-storage-dir.adoc" : 1,
         "pve-storage-glusterfs.adoc" : 1,
         "pve-storage-iscsi.adoc" : 1,
         "pve-storage-iscsidirect.adoc" : 1,
         "pve-storage-lvm.adoc" : 1,
         "pve-storage-lvmthin.adoc" : 1,
         "pve-storage-nfs.adoc" : 1,
         "pve-storage-pbs.adoc" : 1,
         "pve-storage-rbd.adoc" : 1,
         "pve-storage-zfs.adoc" : 1,
         "pve-storage-zfspool.adoc" : 1,
         "pve-system-requirements.adoc" : 1,
         "pveam.adoc" : 0,
         "pvebcache.adoc" : 0,
         "pveceph.adoc" : 0,
         "pvecm.adoc" : 0,
         "pvedaemon.adoc" : 0,
         "pvenode.adoc" : 1,
         "pveperf.adoc" : 0,
         "pveproxy.adoc" : 0,
         "pvescheduler.adoc" : 0,
         "pvesdn.adoc" : 0,
         "pvesh.adoc" : 0,
         "pvesm.adoc" : 0,
         "pvesr.adoc" : 0,
         "pvestatd.adoc" : 0,
         "pvesubscription.adoc" : 0,
         "pveum.adoc" : 0,
         "qm-cloud-init.adoc" : 1,
         "qm-pci-passthrough.adoc" : 1,
         "qm-vcpu-list.adoc" : 1,
         "qm.adoc" : 0,
         "qm.conf.adoc" : 0,
         "qmeventd.adoc" : 0,
         "qmrestore.adoc" : 0,
         "spiceproxy.adoc" : 0,
         "sysadmin.adoc" : 0,
         "system-booting.adoc" : 1,
         "system-software-updates.adoc" : 1,
         "system-timesync.adoc" : 1,
         "translation.adoc" : 1,
         "vxlan-and-evpn.adoc" : 2,
         "vzdump.adoc" : 0
      },
      "manvolnum" : {
         "GFDL.adoc" : 0,
         "README.adoc" : 0,
         "calendar-events.adoc" : 1,
         "certificate-management.adoc" : 1,
         "cli-general.adoc" : 1,
         "configuration-files.adoc" : 0,
         "cpu-models.conf.adoc" : 0,
         "datacenter.cfg.adoc" : 0,
         "firmware-updates.adoc" : 1,
         "getting-help.adoc" : 1,
         "ha-manager.adoc" : 0,
         "howto-improve-pve-docs.adoc" : 1,
         "hyper-converged-infrastructure.adoc" : 1,
         "index.adoc" : 0,
         "kernel-samepage-merging.adoc" : 1,
         "local-btrfs.adoc" : 1,
         "local-lvm.adoc" : 1,
         "local-zfs.adoc" : 1,
         "markdown-primer.adoc" : 0,
         "notifications.adoc" : 0,
         "output-format.adoc" : 1,
         "pct.adoc" : 0,
         "pct.conf.adoc" : 0,
         "pmxcfs.adoc" : 0,
         "pve-admin-guide.adoc" : 0,
         "pve-bibliography.adoc" : 0,
         "pve-copyright.adoc" : 1,
         "pve-disk-health-monitoring.adoc" : 1,
         "pve-external-metric-server.adoc" : 1,
         "pve-faq.adoc" : 0,
         "pve-firewall.adoc" : 0,
         "pve-gui.adoc" : 0,
         "pve-ha-crm.adoc" : 0,
         "pve-ha-lrm.adoc" : 0,
         "pve-installation-media.adoc" : 1,
         "pve-installation.adoc" : 0,
         "pve-intro.adoc" : 0,
         "pve-network.adoc" : 1,
         "pve-package-repos.adoc" : 1,
         "pve-storage-btrfs.adoc" : 1,
         "pve-storage-cephfs.adoc" : 1,
         "pve-storage-cifs.adoc" : 1,
         "pve-storage-dir.adoc" : 1,
         "pve-storage-glusterfs.adoc" : 1,
         "pve-storage-iscsi.adoc" : 1,
         "pve-storage-iscsidirect.adoc" : 1,
         "pve-storage-lvm.adoc" : 1,
         "pve-storage-lvmthin.adoc" : 1,
         "pve-storage-nfs.adoc" : 1,
         "pve-storage-pbs.adoc" : 1,
         "pve-storage-rbd.adoc" : 1,
         "pve-storage-zfs.adoc" : 1,
         "pve-storage-zfspool.adoc" : 1,
         "pve-system-requirements.adoc" : 1,
         "pveam.adoc" : 0,
         "pvebcache.adoc" : 0,
         "pveceph.adoc" : 0,
         "pvecm.adoc" : 0,
         "pvedaemon.adoc" : 0,
         "pvenode.adoc" : 0,
         "pveperf.adoc" : 0,
         "pveproxy.adoc" : 0,
         "pvescheduler.adoc" : 0,
         "pvesdn.adoc" : 0,
         "pvesh.adoc" : 0,
         "pvesm.adoc" : 0,
         "pvesr.adoc" : 0,
         "pvestatd.adoc" : 0,
         "pvesubscription.adoc" : 0,
         "pveum.adoc" : 0,
         "qm-cloud-init.adoc" : 1,
         "qm-pci-passthrough.adoc" : 1,
         "qm-vcpu-list.adoc" : 1,
         "qm.adoc" : 0,
         "qm.conf.adoc" : 0,
         "qmeventd.adoc" : 0,
         "qmrestore.adoc" : 0,
         "spiceproxy.adoc" : 0,
         "sysadmin.adoc" : 0,
         "system-booting.adoc" : 1,
         "system-software-updates.adoc" : 1,
         "system-timesync.adoc" : 1,
         "translation.adoc" : 1,
         "vxlan-and-evpn.adoc" : 2,
         "vzdump.adoc" : 0
      },
      "wiki" : {
         "GFDL.adoc" : 0,
         "README.adoc" : 0,
         "calendar-events.adoc" : 0,
         "certificate-management.adoc" : 1,
         "cli-general.adoc" : 1,
         "configuration-files.adoc" : 0,
         "cpu-models.conf.adoc" : 0,
         "datacenter.cfg.adoc" : 0,
         "firmware-updates.adoc" : 1,
         "getting-help.adoc" : 1,
         "ha-manager.adoc" : 0,
         "howto-improve-pve-docs.adoc" : 1,
         "hyper-converged-infrastructure.adoc" : 1,
         "index.adoc" : 0,
         "kernel-samepage-merging.adoc" : 1,
         "local-btrfs.adoc" : 1,
         "local-lvm.adoc" : 1,
         "local-zfs.adoc" : 1,
         "markdown-primer.adoc" : 0,
         "notifications.adoc" : 0,
         "output-format.adoc" : 1,
         "pct.adoc" : 0,
         "pct.conf.adoc" : 0,
         "pmxcfs.adoc" : 0,
         "pve-admin-guide.adoc" : 0,
         "pve-bibliography.adoc" : 0,
         "pve-copyright.adoc" : 1,
         "pve-disk-health-monitoring.adoc" : 1,
         "pve-external-metric-server.adoc" : 1,
         "pve-faq.adoc" : 0,
         "pve-firewall.adoc" : 0,
         "pve-gui.adoc" : 0,
         "pve-ha-crm.adoc" : 0,
         "pve-ha-lrm.adoc" : 0,
         "pve-installation-media.adoc" : 1,
         "pve-installation.adoc" : 0,
         "pve-intro.adoc" : 0,
         "pve-network.adoc" : 1,
         "pve-package-repos.adoc" : 1,
         "pve-storage-btrfs.adoc" : 1,
         "pve-storage-cephfs.adoc" : 1,
         "pve-storage-cifs.adoc" : 1,
         "pve-storage-dir.adoc" : 1,
         "pve-storage-glusterfs.adoc" : 1,
         "pve-storage-iscsi.adoc" : 1,
         "pve-storage-iscsidirect.adoc" : 1,
         "pve-storage-lvm.adoc" : 1,
         "pve-storage-lvmthin.adoc" : 1,
         "pve-storage-nfs.adoc" : 1,
         "pve-storage-pbs.adoc" : 1,
         "pve-storage-rbd.adoc" : 1,
         "pve-storage-zfs.adoc" : 1,
         "pve-storage-zfspool.adoc" : 1,
         "pve-system-requirements.adoc" : 1,
         "pveam.adoc" : 0,
         "pvebcache.adoc" : 0,
         "pveceph.adoc" : 0,
         "pvecm.adoc" : 0,
         "pvedaemon.adoc" : 0,
         "pvenode.adoc" : 1,
         "pveperf.adoc" : 0,
         "pveproxy.adoc" : 0,
         "pvescheduler.adoc" : 0,
         "pvesdn.adoc" : 0,
         "pvesh.adoc" : 0,
         "pvesm.adoc" : 0,
         "pvesr.adoc" : 0,
         "pvestatd.adoc" : 0,
         "pvesubscription.adoc" : 0,
         "pveum.adoc" : 0,
         "qm-cloud-init.adoc" : 1,
         "qm-pci-passthrough.adoc" : 1,
         "qm-vcpu-list.adoc" : 1,
         "qm.adoc" : 0,
         "qm.conf.adoc" : 0,
         "qmeventd.adoc" : 0,
         "qmrestore.adoc" : 0,
         "spiceproxy.adoc" : 0,
         "sysadmin.adoc" : 0,
         "system-booting.adoc" : 1,
         "system-software-updates.adoc" : 1,
         "system-timesync.adoc" : 1,
         "translation.adoc" : 1,
         "vxlan-and-evpn.adoc" : 2,
         "vzdump.adoc" : 0
      }
   },
   "include" : {
      "default" : {
         "GFDL.adoc" : {
            "LICENSE" : 1
         },
         "LICENSE" : {},
         "calendar-events.adoc" : {},
         "certificate-management.adoc" : {},
         "chapter-index-table.adoc" : {},
         "cli-general.adoc" : {},
         "configuration-files.adoc" : {
            "datacenter.cfg.adoc" : 1
         },
         "cpu-models.conf.5-opts.adoc" : {},
         "cpu-models.conf.adoc" : {
            "cpu-models.conf.5-opts.adoc" : 1
         },
         "datacenter.cfg.5-opts.adoc" : {},
         "datacenter.cfg.adoc" : {
            "datacenter.cfg.5-opts.adoc" : 1
         },
         "firmware-updates.adoc" : {},
         "getting-help.adoc" : {},
         "ha-groups-opts.adoc" : {},
         "ha-manager.1-synopsis.adoc" : {},
         "ha-manager.adoc" : {
            "ha-groups-opts.adoc" : 1,
            "ha-resources-opts.adoc" : 1
         },
         "ha-resources-opts.adoc" : {},
         "howto-improve-pve-docs.adoc" : {},
         "hyper-converged-infrastructure.adoc" : {},
         "index.adoc" : {
            "chapter-index-table.adoc" : 1,
            "man1-index-table.adoc" : 1,
            "man5-index-table.adoc" : 1,
            "man8-index-table.adoc" : 1
         },
         "kernel-samepage-merging.adoc" : {},
         "local-btrfs.adoc" : {},
         "local-lvm.adoc" : {},
         "local-zfs.adoc" : {},
         "man1-index-table.adoc" : {},
         "man5-index-table.adoc" : {},
         "man8-index-table.adoc" : {},
         "markdown-primer.adoc" : {},
         "notifications.adoc" : {},
         "output-format-opts.adoc" : {},
         "output-format.adoc" : {
            "output-format-opts.adoc" : 1
         },
         "pct-mountpoint-opts.adoc" : {},
         "pct-network-opts.adoc" : {},
         "pct.1-synopsis.adoc" : {},
         "pct.adoc" : {
            "pct-mountpoint-opts.adoc" : 1,
            "pct-network-opts.adoc" : 1,
            "pct.conf.5-opts.adoc" : 1
         },
         "pct.conf.5-opts.adoc" : {},
         "pct.conf.adoc" : {
            "pct.conf.5-opts.adoc" : 1
         },
         "pmxcfs.8-synopsis.adoc" : {},
         "pmxcfs.adoc" : {},
         "pve-admin-guide.adoc" : {
            "GFDL.adoc" : 1,
            "calendar-events.adoc" : 1,
            "cli-general.adoc" : 1,
            "configuration-files.adoc" : 1,
            "ha-manager.1-synopsis.adoc" : 1,
            "ha-manager.adoc" : 1,
            "markdown-primer.adoc" : 1,
            "notifications.adoc" : 1,
            "output-format.adoc" : 1,
            "pct.1-synopsis.adoc" : 1,
            "pct.adoc" : 1,
            "pmxcfs.8-synopsis.adoc" : 1,
            "pmxcfs.adoc" : 1,
            "pve-bibliography.adoc" : 1,
            "pve-faq.adoc" : 1,
            "pve-firewall-macros.adoc" : 1,
            "pve-firewall.8-synopsis.adoc" : 1,
            "pve-firewall.adoc" : 1,
            "pve-gui.adoc" : 1,
            "pve-ha-crm.8-synopsis.adoc" : 1,
            "pve-ha-lrm.8-synopsis.adoc" : 1,
            "pve-installation.adoc" : 1,
            "pve-intro.adoc" : 1,
            "pveam.1-synopsis.adoc" : 1,
            "pvebcache.1-synopsis.adoc" : 1,
            "pvebcache.adoc" : 1,
            "pveceph.1-synopsis.adoc" : 1,
            "pveceph.adoc" : 1,
            "pvecm.1-synopsis.adoc" : 1,
            "pvecm.adoc" : 1,
            "pvedaemon.8-synopsis.adoc" : 1,
            "pvedaemon.adoc" : 1,
            "pvenode.1-synopsis.adoc" : 1,
            "pveperf.1-synopsis.adoc" : 1,
            "pveperf.adoc" : 1,
            "pveproxy.8-synopsis.adoc" : 1,
            "pveproxy.adoc" : 1,
            "pvescheduler.8-synopsis.adoc" : 1,
            "pvescheduler.adoc" : 1,
            "pvesdn.adoc" : 1,
            "pvesh.1-synopsis.adoc" : 1,
            "pvesh.adoc" : 1,
            "pvesm.1-synopsis.adoc" : 1,
            "pvesm.adoc" : 1,
            "pvesr.1-synopsis.adoc" : 1,
            "pvesr.adoc" : 1,
            "pvestatd.8-synopsis.adoc" : 1,
            "pvestatd.adoc" : 1,
            "pvesubscription.1-synopsis.adoc" : 1,
            "pvesubscription.adoc" : 1,
            "pveum.1-synopsis.adoc" : 1,
            "pveum.adoc" : 1,
            "qm-vcpu-list.adoc" : 1,
            "qm.1-synopsis.adoc" : 1,
            "qm.adoc" : 1,
            "qmrestore.1-synopsis.adoc" : 1,
            "spiceproxy.8-synopsis.adoc" : 1,
            "spiceproxy.adoc" : 1,
            "sysadmin.adoc" : 1,
            "vzdump.1-synopsis.adoc" : 1,
            "vzdump.adoc" : 1
         },
         "pve-bibliography.adoc" : {},
         "pve-disk-health-monitoring.adoc" : {},
         "pve-external-metric-server.adoc" : {},
         "pve-faq.adoc" : {},
         "pve-firewall-cluster-opts.adoc" : {},
         "pve-firewall-host-opts.adoc" : {},
         "pve-firewall-macros.adoc" : {},
         "pve-firewall-rules-opts.adoc" : {},
         "pve-firewall-vm-opts.adoc" : {},
         "pve-firewall-vnet-opts.adoc" : {},
         "pve-firewall.8-synopsis.adoc" : {},
         "pve-firewall.adoc" : {
            "pve-firewall-cluster-opts.adoc" : 1,
            "pve-firewall-host-opts.adoc" : 1,
            "pve-firewall-rules-opts.adoc" : 1,
            "pve-firewall-vm-opts.adoc" : 1,
            "pve-firewall-vnet-opts.adoc" : 1
         },
         "pve-gui.adoc" : {},
         "pve-ha-crm.8-synopsis.adoc" : {},
         "pve-ha-lrm.8-synopsis.adoc" : {},
         "pve-installation-media.adoc" : {},
         "pve-installation.adoc" : {
            "pve-installation-media.adoc" : 1,
            "pve-system-requirements.adoc" : 1
         },
         "pve-intro.adoc" : {
            "getting-help.adoc" : 1,
            "howto-improve-pve-docs.adoc" : 1,
            "hyper-converged-infrastructure.adoc" : 1,
            "translation.adoc" : 1
         },
         "pve-network.adoc" : {},
         "pve-package-repos.adoc" : {},
         "pve-storage-btrfs.adoc" : {},
         "pve-storage-cephfs.adoc" : {},
         "pve-storage-cifs.adoc" : {},
         "pve-storage-dir.adoc" : {},
         "pve-storage-glusterfs.adoc" : {},
         "pve-storage-iscsi.adoc" : {},
         "pve-storage-iscsidirect.adoc" : {},
         "pve-storage-lvm.adoc" : {},
         "pve-storage-lvmthin.adoc" : {},
         "pve-storage-nfs.adoc" : {},
         "pve-storage-pbs.adoc" : {},
         "pve-storage-rbd.adoc" : {},
         "pve-storage-zfs.adoc" : {},
         "pve-storage-zfspool.adoc" : {},
         "pve-system-requirements.adoc" : {},
         "pveam.1-synopsis.adoc" : {},
         "pvebcache.1-synopsis.adoc" : {},
         "pvebcache.adoc" : {},
         "pveceph.1-synopsis.adoc" : {},
         "pveceph.adoc" : {},
         "pvecm.1-synopsis.adoc" : {},
         "pvecm.adoc" : {},
         "pvedaemon.8-synopsis.adoc" : {},
         "pvedaemon.adoc" : {},
         "pvenode.1-synopsis.adoc" : {},
         "pvenode.adoc" : {},
         "pveperf.1-synopsis.adoc" : {},
         "pveperf.adoc" : {},
         "pveproxy.8-synopsis.adoc" : {},
         "pveproxy.adoc" : {},
         "pvescheduler.8-synopsis.adoc" : {},
         "pvescheduler.adoc" : {},
         "pvesdn.adoc" : {},
         "pvesh.1-synopsis.adoc" : {},
         "pvesh.adoc" : {},
         "pvesm.1-synopsis.adoc" : {},
         "pvesm.adoc" : {
            "pve-storage-btrfs.adoc" : 1,
            "pve-storage-cephfs.adoc" : 1,
            "pve-storage-cifs.adoc" : 1,
            "pve-storage-dir.adoc" : 1,
            "pve-storage-glusterfs.adoc" : 1,
            "pve-storage-iscsi.adoc" : 1,
            "pve-storage-iscsidirect.adoc" : 1,
            "pve-storage-lvm.adoc" : 1,
            "pve-storage-lvmthin.adoc" : 1,
            "pve-storage-nfs.adoc" : 1,
            "pve-storage-pbs.adoc" : 1,
            "pve-storage-rbd.adoc" : 1,
            "pve-storage-zfs.adoc" : 1,
            "pve-storage-zfspool.adoc" : 1
         },
         "pvesr.1-synopsis.adoc" : {},
         "pvesr.adoc" : {},
         "pvestatd.8-synopsis.adoc" : {},
         "pvestatd.adoc" : {},
         "pvesubscription.1-synopsis.adoc" : {},
         "pvesubscription.adoc" : {},
         "pveum.1-synopsis.adoc" : {},
         "pveum.adoc" : {},
         "qm-cloud-init-opts.adoc" : {},
         "qm-cloud-init.adoc" : {
            "qm-cloud-init-opts.adoc" : 1
         },
         "qm-pci-passthrough.adoc" : {},
         "qm-vcpu-list.adoc" : {},
         "qm.1-synopsis.adoc" : {},
         "qm.adoc" : {
            "qm-cloud-init.adoc" : 1,
            "qm-pci-passthrough.adoc" : 1,
            "qm.conf.5-opts.adoc" : 1
         },
         "qm.conf.5-opts.adoc" : {},
         "qm.conf.adoc" : {
            "qm.conf.5-opts.adoc" : 1
         },
         "qmrestore.1-synopsis.adoc" : {},
         "spiceproxy.8-synopsis.adoc" : {},
         "spiceproxy.adoc" : {},
         "sysadmin.adoc" : {
            "certificate-management.adoc" : 1,
            "firmware-updates.adoc" : 1,
            "kernel-samepage-merging.adoc" : 1,
            "local-btrfs.adoc" : 1,
            "local-lvm.adoc" : 1,
            "local-zfs.adoc" : 1,
            "pve-disk-health-monitoring.adoc" : 1,
            "pve-external-metric-server.adoc" : 1,
            "pve-network.adoc" : 1,
            "pve-package-repos.adoc" : 1,
            "pvenode.adoc" : 1,
            "system-booting.adoc" : 1,
            "system-software-updates.adoc" : 1,
            "system-timesync.adoc" : 1
         },
         "system-booting.adoc" : {},
         "system-software-updates.adoc" : {},
         "system-timesync.adoc" : {},
         "translation.adoc" : {},
         "vzdump.1-synopsis.adoc" : {},
         "vzdump.adoc" : {
            "vzdump.conf.5-opts.adoc" : 1
         },
         "vzdump.conf.5-opts.adoc" : {}
      },
      "manvolnum" : {
         "GFDL.adoc" : {
            "LICENSE" : 1
         },
         "LICENSE" : {},
         "certificate-management.adoc" : {},
         "chapter-index-table.adoc" : {},
         "configuration-files.adoc" : {
            "datacenter.cfg.adoc" : 1
         },
         "cpu-models.conf.5-opts.adoc" : {},
         "cpu-models.conf.adoc" : {
            "cpu-models.conf.5-opts.adoc" : 1,
            "pve-copyright.adoc" : 1
         },
         "datacenter.cfg.5-opts.adoc" : {},
         "datacenter.cfg.adoc" : {
            "datacenter.cfg.5-opts.adoc" : 1,
            "pve-copyright.adoc" : 1
         },
         "firmware-updates.adoc" : {},
         "getting-help.adoc" : {},
         "ha-groups-opts.adoc" : {},
         "ha-manager.1-synopsis.adoc" : {},
         "ha-manager.adoc" : {
            "ha-groups-opts.adoc" : 1,
            "ha-manager.1-synopsis.adoc" : 1,
            "ha-resources-opts.adoc" : 1,
            "pve-copyright.adoc" : 1
         },
         "ha-resources-opts.adoc" : {},
         "howto-improve-pve-docs.adoc" : {},
         "hyper-converged-infrastructure.adoc" : {},
         "index.adoc" : {
            "chapter-index-table.adoc" : 1,
            "man1-index-table.adoc" : 1,
            "man5-index-table.adoc" : 1,
            "man8-index-table.adoc" : 1
         },
         "kernel-samepage-merging.adoc" : {},
         "local-btrfs.adoc" : {},
         "local-lvm.adoc" : {},
         "local-zfs.adoc" : {},
         "man1-index-table.adoc" : {},
         "man5-index-table.adoc" : {},
         "man8-index-table.adoc" : {},
         "output-format-opts.adoc" : {},
         "output-format.adoc" : {
            "output-format-opts.adoc" : 1
         },
         "pct-mountpoint-opts.adoc" : {},
         "pct-network-opts.adoc" : {},
         "pct.1-synopsis.adoc" : {},
         "pct.adoc" : {
            "pct-mountpoint-opts.adoc" : 1,
            "pct-network-opts.adoc" : 1,
            "pct.1-synopsis.adoc" : 1,
            "pct.conf.5-opts.adoc" : 1,
            "pve-copyright.adoc" : 1
         },
         "pct.conf.5-opts.adoc" : {},
         "pct.conf.adoc" : {
            "pct.conf.5-opts.adoc" : 1,
            "pve-copyright.adoc" : 1
         },
         "pmxcfs.8-synopsis.adoc" : {},
         "pmxcfs.adoc" : {
            "pmxcfs.8-synopsis.adoc" : 1,
            "pve-copyright.adoc" : 1
         },
         "pve-copyright.adoc" : {},
         "pve-disk-health-monitoring.adoc" : {},
         "pve-external-metric-server.adoc" : {},
         "pve-firewall-cluster-opts.adoc" : {},
         "pve-firewall-host-opts.adoc" : {},
         "pve-firewall-macros.adoc" : {},
         "pve-firewall-rules-opts.adoc" : {},
         "pve-firewall-vm-opts.adoc" : {},
         "pve-firewall-vnet-opts.adoc" : {},
         "pve-firewall.8-synopsis.adoc" : {},
         "pve-firewall.adoc" : {
            "pve-copyright.adoc" : 1,
            "pve-firewall-cluster-opts.adoc" : 1,
            "pve-firewall-host-opts.adoc" : 1,
            "pve-firewall-macros.adoc" : 1,
            "pve-firewall-rules-opts.adoc" : 1,
            "pve-firewall-vm-opts.adoc" : 1,
            "pve-firewall-vnet-opts.adoc" : 1,
            "pve-firewall.8-synopsis.adoc" : 1
         },
         "pve-ha-crm.8-synopsis.adoc" : {},
         "pve-ha-crm.adoc" : {
            "pve-copyright.adoc" : 1,
            "pve-ha-crm.8-synopsis.adoc" : 1
         },
         "pve-ha-lrm.8-synopsis.adoc" : {},
         "pve-ha-lrm.adoc" : {
            "pve-copyright.adoc" : 1,
            "pve-ha-lrm.8-synopsis.adoc" : 1
         },
         "pve-installation-media.adoc" : {},
         "pve-installation.adoc" : {
            "pve-installation-media.adoc" : 1,
            "pve-system-requirements.adoc" : 1
         },
         "pve-intro.adoc" : {
            "getting-help.adoc" : 1,
            "howto-improve-pve-docs.adoc" : 1,
            "hyper-converged-infrastructure.adoc" : 1,
            "translation.adoc" : 1
         },
         "pve-network.adoc" : {},
         "pve-package-repos.adoc" : {
            "pve-copyright.adoc" : 1
         },
         "pve-storage-btrfs.adoc" : {},
         "pve-storage-cephfs.adoc" : {},
         "pve-storage-cifs.adoc" : {},
         "pve-storage-dir.adoc" : {},
         "pve-storage-glusterfs.adoc" : {},
         "pve-storage-iscsi.adoc" : {},
         "pve-storage-iscsidirect.adoc" : {},
         "pve-storage-lvm.adoc" : {},
         "pve-storage-lvmthin.adoc" : {},
         "pve-storage-nfs.adoc" : {},
         "pve-storage-pbs.adoc" : {},
         "pve-storage-rbd.adoc" : {},
         "pve-storage-zfs.adoc" : {},
         "pve-storage-zfspool.adoc" : {},
         "pve-system-requirements.adoc" : {},
         "pveam.1-synopsis.adoc" : {},
         "pveam.adoc" : {
            "pve-copyright.adoc" : 1,
            "pveam.1-synopsis.adoc" : 1
         },
         "pvebcache.1-synopsis.adoc" : {},
         "pvebcache.adoc" : {
            "pve-copyright.adoc" : 1,
            "pvebcache.1-synopsis.adoc" : 1
         },
         "pveceph.1-synopsis.adoc" : {},
         "pveceph.adoc" : {
            "pve-copyright.adoc" : 1,
            "pveceph.1-synopsis.adoc" : 1
         },
         "pvecm.1-synopsis.adoc" : {},
         "pvecm.adoc" : {
            "pve-copyright.adoc" : 1,
            "pvecm.1-synopsis.adoc" : 1
         },
         "pvedaemon.8-synopsis.adoc" : {},
         "pvedaemon.adoc" : {
            "pve-copyright.adoc" : 1,
            "pvedaemon.8-synopsis.adoc" : 1
         },
         "pvenode.1-synopsis.adoc" : {},
         "pvenode.adoc" : {
            "output-format.adoc" : 1,
            "pve-copyright.adoc" : 1,
            "pvenode.1-synopsis.adoc" : 1
         },
         "pveperf.1-synopsis.adoc" : {},
         "pveperf.adoc" : {
            "pveperf.1-synopsis.adoc" : 1
         },
         "pveproxy.8-synopsis.adoc" : {},
         "pveproxy.adoc" : {
            "pve-copyright.adoc" : 1,
            "pveproxy.8-synopsis.adoc" : 1
         },
         "pvescheduler.8-synopsis.adoc" : {},
         "pvescheduler.adoc" : {
            "pve-copyright.adoc" : 1,
            "pvescheduler.8-synopsis.adoc" : 1
         },
         "pvesh.1-synopsis.adoc" : {},
         "pvesh.adoc" : {
            "output-format.adoc" : 1,
            "pve-copyright.adoc" : 1,
            "pvesh.1-synopsis.adoc" : 1
         },
         "pvesm.1-synopsis.adoc" : {},
         "pvesm.adoc" : {
            "pve-copyright.adoc" : 1,
            "pve-storage-btrfs.adoc" : 1,
            "pve-storage-cephfs.adoc" : 1,
            "pve-storage-cifs.adoc" : 1,
            "pve-storage-dir.adoc" : 1,
            "pve-storage-glusterfs.adoc" : 1,
            "pve-storage-iscsi.adoc" : 1,
            "pve-storage-iscsidirect.adoc" : 1,
            "pve-storage-lvm.adoc" : 1,
            "pve-storage-lvmthin.adoc" : 1,
            "pve-storage-nfs.adoc" : 1,
            "pve-storage-pbs.adoc" : 1,
            "pve-storage-rbd.adoc" : 1,
            "pve-storage-zfs.adoc" : 1,
            "pve-storage-zfspool.adoc" : 1,
            "pvesm.1-synopsis.adoc" : 1
         },
         "pvesr.1-synopsis.adoc" : {},
         "pvesr.adoc" : {
            "pve-copyright.adoc" : 1,
            "pvesr.1-synopsis.adoc" : 1
         },
         "pvestatd.8-synopsis.adoc" : {},
         "pvestatd.adoc" : {
            "pve-copyright.adoc" : 1,
            "pvestatd.8-synopsis.adoc" : 1
         },
         "pvesubscription.1-synopsis.adoc" : {},
         "pvesubscription.adoc" : {
            "pve-copyright.adoc" : 1,
            "pvesubscription.1-synopsis.adoc" : 1
         },
         "pveum.1-synopsis.adoc" : {},
         "pveum.adoc" : {
            "pve-copyright.adoc" : 1,
            "pveum.1-synopsis.adoc" : 1
         },
         "qm-cloud-init-opts.adoc" : {},
         "qm-cloud-init.adoc" : {
            "qm-cloud-init-opts.adoc" : 1
         },
         "qm-pci-passthrough.adoc" : {},
         "qm.1-synopsis.adoc" : {},
         "qm.adoc" : {
            "pve-copyright.adoc" : 1,
            "qm-cloud-init.adoc" : 1,
            "qm-pci-passthrough.adoc" : 1,
            "qm.1-synopsis.adoc" : 1,
            "qm.conf.5-opts.adoc" : 1
         },
         "qm.conf.5-opts.adoc" : {},
         "qm.conf.adoc" : {
            "pve-copyright.adoc" : 1,
            "qm.conf.5-opts.adoc" : 1
         },
         "qmeventd.8-synopsis.adoc" : {},
         "qmeventd.adoc" : {
            "pve-copyright.adoc" : 1,
            "qmeventd.8-synopsis.adoc" : 1
         },
         "qmrestore.1-synopsis.adoc" : {},
         "qmrestore.adoc" : {
            "pve-copyright.adoc" : 1,
            "qmrestore.1-synopsis.adoc" : 1
         },
         "spiceproxy.8-synopsis.adoc" : {},
         "spiceproxy.adoc" : {
            "pve-copyright.adoc" : 1,
            "spiceproxy.8-synopsis.adoc" : 1
         },
         "sysadmin.adoc" : {
            "certificate-management.adoc" : 1,
            "firmware-updates.adoc" : 1,
            "kernel-samepage-merging.adoc" : 1,
            "local-btrfs.adoc" : 1,
            "local-lvm.adoc" : 1,
            "local-zfs.adoc" : 1,
            "pve-disk-health-monitoring.adoc" : 1,
            "pve-external-metric-server.adoc" : 1,
            "pve-network.adoc" : 1,
            "pve-package-repos.adoc" : 1,
            "pvenode.adoc" : 1,
            "system-booting.adoc" : 1,
            "system-software-updates.adoc" : 1,
            "system-timesync.adoc" : 1
         },
         "system-booting.adoc" : {},
         "system-software-updates.adoc" : {},
         "system-timesync.adoc" : {},
         "translation.adoc" : {},
         "vzdump.1-synopsis.adoc" : {},
         "vzdump.adoc" : {
            "pve-copyright.adoc" : 1,
            "vzdump.1-synopsis.adoc" : 1,
            "vzdump.conf.5-opts.adoc" : 1
         },
         "vzdump.conf.5-opts.adoc" : {}
      },
      "wiki" : {
         "GFDL.adoc" : {
            "LICENSE" : 1
         },
         "LICENSE" : {},
         "chapter-index-table.adoc" : {},
         "configuration-files.adoc" : {
            "datacenter.cfg.adoc" : 1
         },
         "cpu-models.conf.5-opts.adoc" : {},
         "cpu-models.conf.adoc" : {
            "cpu-models.conf.5-opts.adoc" : 1
         },
         "datacenter.cfg.5-opts.adoc" : {},
         "datacenter.cfg.adoc" : {
            "datacenter.cfg.5-opts.adoc" : 1
         },
         "getting-help.adoc" : {},
         "ha-groups-opts.adoc" : {},
         "ha-manager.adoc" : {
            "ha-groups-opts.adoc" : 1,
            "ha-resources-opts.adoc" : 1
         },
         "ha-resources-opts.adoc" : {},
         "howto-improve-pve-docs.adoc" : {},
         "hyper-converged-infrastructure.adoc" : {},
         "index.adoc" : {
            "chapter-index-table.adoc" : 1,
            "man1-index-table.adoc" : 1,
            "man5-index-table.adoc" : 1,
            "man8-index-table.adoc" : 1
         },
         "man1-index-table.adoc" : {},
         "man5-index-table.adoc" : {},
         "man8-index-table.adoc" : {},
         "output-format-opts.adoc" : {},
         "output-format.adoc" : {
            "output-format-opts.adoc" : 1
         },
         "pct-mountpoint-opts.adoc" : {},
         "pct-network-opts.adoc" : {},
         "pct.adoc" : {
            "pct-mountpoint-opts.adoc" : 1,
            "pct-network-opts.adoc" : 1,
            "pct.conf.5-opts.adoc" : 1
         },
         "pct.conf.5-opts.adoc" : {},
         "pct.conf.adoc" : {
            "pct.conf.5-opts.adoc" : 1
         },
         "pve-firewall-cluster-opts.adoc" : {},
         "pve-firewall-host-opts.adoc" : {},
         "pve-firewall-rules-opts.adoc" : {},
         "pve-firewall-vm-opts.adoc" : {},
         "pve-firewall-vnet-opts.adoc" : {},
         "pve-firewall.adoc" : {
            "pve-firewall-cluster-opts.adoc" : 1,
            "pve-firewall-host-opts.adoc" : 1,
            "pve-firewall-rules-opts.adoc" : 1,
            "pve-firewall-vm-opts.adoc" : 1,
            "pve-firewall-vnet-opts.adoc" : 1
         },
         "pve-intro.adoc" : {
            "getting-help.adoc" : 1,
            "howto-improve-pve-docs.adoc" : 1,
            "hyper-converged-infrastructure.adoc" : 1,
            "translation.adoc" : 1
         },
         "qm-cloud-init-opts.adoc" : {},
         "qm-cloud-init.adoc" : {
            "qm-cloud-init-opts.adoc" : 1
         },
         "qm.adoc" : {
            "qm.conf.5-opts.adoc" : 1
         },
         "qm.conf.5-opts.adoc" : {},
         "qm.conf.adoc" : {
            "qm.conf.5-opts.adoc" : 1
         },
         "translation.adoc" : {},
         "vzdump.adoc" : {
            "vzdump.conf.5-opts.adoc" : 1
         },
         "vzdump.conf.5-opts.adoc" : {}
      }
   },
   "mansection" : {
      "manvolnum" : {
         "cpu-models.conf.adoc" : "5",
         "datacenter.cfg.adoc" : "5",
         "ha-manager.adoc" : "1",
         "pct.adoc" : "1",
         "pct.conf.adoc" : "5",
         "pmxcfs.adoc" : "8",
         "pve-firewall.adoc" : "8",
         "pve-ha-crm.adoc" : "8",
         "pve-ha-lrm.adoc" : "8",
         "pveam.adoc" : "1",
         "pvebcache.adoc" : "1",
         "pveceph.adoc" : "1",
         "pvecm.adoc" : "1",
         "pvedaemon.adoc" : "8",
         "pvenode.adoc" : "1",
         "pveperf.adoc" : "1",
         "pveproxy.adoc" : "8",
         "pvescheduler.adoc" : "8",
         "pvesh.adoc" : "1",
         "pvesm.adoc" : "1",
         "pvesr.adoc" : "1",
         "pvestatd.adoc" : "8",
         "pvesubscription.adoc" : "1",
         "pveum.adoc" : "1",
         "qm.adoc" : "1",
         "qm.conf.adoc" : "5",
         "qmeventd.adoc" : "8",
         "qmrestore.adoc" : "1",
         "spiceproxy.adoc" : "8",
         "vzdump.adoc" : "1"
      }
   },
   "outfile" : {
      "default" : {
         "ha-manager.adoc" : "chapter-ha-manager.html",
         "notifications.adoc" : "chapter-notifications.html",
         "pct.adoc" : "chapter-pct.html",
         "pmxcfs.adoc" : "chapter-pmxcfs.html",
         "pve-admin-guide.adoc" : "pve-admin-guide.html",
         "pve-bibliography.adoc" : "chapter-pve-bibliography.html",
         "pve-faq.adoc" : "chapter-pve-faq.html",
         "pve-firewall.adoc" : "chapter-pve-firewall.html",
         "pve-gui.adoc" : "chapter-pve-gui.html",
         "pve-installation.adoc" : "chapter-pve-installation.html",
         "pvebcache.adoc" : "chapter-pvebcache.html",
         "pveceph.adoc" : "chapter-pveceph.html",
         "pvecm.adoc" : "chapter-pvecm.html",
         "pvesdn.adoc" : "chapter-pvesdn.html",
         "pvesh.adoc" : "chapter-pvesh.html",
         "pvesm.adoc" : "chapter-pvesm.html",
         "pvesr.adoc" : "chapter-pvesr.html",
         "pveum.adoc" : "chapter-pveum.html",
         "qm.adoc" : "chapter-qm.html",
         "qmeventd.adoc" : "chapter-qmeventd.html",
         "sysadmin.adoc" : "chapter-sysadmin.html",
         "vzdump.adoc" : "chapter-vzdump.html"
      },
      "manvolnum" : {
         "cpu-models.conf.adoc" : "cpu-models.conf.5",
         "datacenter.cfg.adoc" : "datacenter.cfg.5",
         "ha-manager.adoc" : "ha-manager.1",
         "pct.adoc" : "pct.1",
         "pct.conf.adoc" : "pct.conf.5",
         "pmxcfs.adoc" : "pmxcfs.8",
         "pve-firewall.adoc" : "pve-firewall.8",
         "pve-ha-crm.adoc" : "pve-ha-crm.8",
         "pve-ha-lrm.adoc" : "pve-ha-lrm.8",
         "pveam.adoc" : "pveam.1",
         "pvebcache.adoc" : "pvebcache.1",
         "pveceph.adoc" : "pveceph.1",
         "pvecm.adoc" : "pvecm.1",
         "pvedaemon.adoc" : "pvedaemon.8",
         "pvenode.adoc" : "pvenode.1",
         "pveperf.adoc" : "pveperf.1",
         "pveproxy.adoc" : "pveproxy.8",
         "pvescheduler.adoc" : "pvescheduler.8",
         "pvesh.adoc" : "pvesh.1",
         "pvesm.adoc" : "pvesm.1",
         "pvesr.adoc" : "pvesr.1",
         "pvestatd.adoc" : "pvestatd.8",
         "pvesubscription.adoc" : "pvesubscription.1",
         "pveum.adoc" : "pveum.1",
         "qm.adoc" : "qm.1",
         "qm.conf.adoc" : "qm.conf.5",
         "qmeventd.adoc" : "qmeventd.8",
         "qmrestore.adoc" : "qmrestore.1",
         "spiceproxy.adoc" : "spiceproxy.8",
         "vzdump.adoc" : "vzdump.1"
      },
      "wiki" : {
         "calendar-events.adoc" : "calendar-events-plain.html",
         "certificate-management.adoc" : "certificate-management-plain.html",
         "cpu-models.conf.adoc" : "cpu-models.conf.5-plain.html",
         "datacenter.cfg.adoc" : "datacenter.cfg.5-plain.html",
         "firmware-updates.adoc" : "firmware-updates-plain.html",
         "getting-help.adoc" : "getting-help-plain.html",
         "ha-manager.adoc" : "ha-manager-plain.html",
         "howto-improve-pve-docs.adoc" : "howto-improve-pve-docs-plain.html",
         "hyper-converged-infrastructure.adoc" : "hyper-converged-infrastructure-plain.html",
         "kernel-samepage-merging.adoc" : "kernel-samepage-merging-plain.html",
         "local-btrfs.adoc" : "local-btrfs-plain.html",
         "local-lvm.adoc" : "local-lvm-plain.html",
         "local-zfs.adoc" : "local-zfs-plain.html",
         "notifications.adoc" : "notifications-plain.html",
         "pct.adoc" : "pct-plain.html",
         "pct.conf.adoc" : "pct.conf.5-plain.html",
         "pmxcfs.adoc" : "pmxcfs-plain.html",
         "pve-bibliography.adoc" : "pve-bibliography-plain.html",
         "pve-disk-health-monitoring.adoc" : "pve-disk-health-monitoring-plain.html",
         "pve-external-metric-server.adoc" : "pve-external-metric-server-plain.html",
         "pve-faq.adoc" : "pve-faq-plain.html",
         "pve-firewall.adoc" : "pve-firewall-plain.html",
         "pve-gui.adoc" : "pve-gui-plain.html",
         "pve-installation-media.adoc" : "pve-installation-media-plain.html",
         "pve-installation.adoc" : "pve-installation-plain.html",
         "pve-network.adoc" : "pve-network-plain.html",
         "pve-package-repos.adoc" : "pve-package-repos-plain.html",
         "pve-storage-btrfs.adoc" : "pve-storage-btrfs-plain.html",
         "pve-storage-cephfs.adoc" : "pve-storage-cephfs-plain.html",
         "pve-storage-cifs.adoc" : "pve-storage-cifs-plain.html",
         "pve-storage-dir.adoc" : "pve-storage-dir-plain.html",
         "pve-storage-glusterfs.adoc" : "pve-storage-glusterfs-plain.html",
         "pve-storage-iscsi.adoc" : "pve-storage-iscsi-plain.html",
         "pve-storage-iscsidirect.adoc" : "pve-storage-iscsidirect-plain.html",
         "pve-storage-lvm.adoc" : "pve-storage-lvm-plain.html",
         "pve-storage-lvmthin.adoc" : "pve-storage-lvmthin-plain.html",
         "pve-storage-nfs.adoc" : "pve-storage-nfs-plain.html",
         "pve-storage-pbs.adoc" : "pve-storage-pbs-plain.html",
         "pve-storage-rbd.adoc" : "pve-storage-rbd-plain.html",
         "pve-storage-zfs.adoc" : "pve-storage-zfs-plain.html",
         "pve-storage-zfspool.adoc" : "pve-storage-zfspool-plain.html",
         "pve-system-requirements.adoc" : "pve-system-requirements-plain.html",
         "pvebcache.adoc" : "pvebcache-plain.html",
         "pveceph.adoc" : "pveceph-plain.html",
         "pvecm.adoc" : "pvecm-plain.html",
         "pvenode.adoc" : "pvenode-plain.html",
         "pvesdn.adoc" : "pvesdn-plain.html",
         "pvesh.adoc" : "pvesh-plain.html",
         "pvesm.adoc" : "pvesm-plain.html",
         "pvesr.adoc" : "pvesr-plain.html",
         "pveum.adoc" : "pveum-plain.html",
         "qm-cloud-init.adoc" : "qm-cloud-init-plain.html",
         "qm-pci-passthrough.adoc" : "qm-pci-passthrough-plain.html",
         "qm.adoc" : "qm-plain.html",
         "qm.conf.adoc" : "qm.conf.5-plain.html",
         "qmeventd.adoc" : "qmeventd-plain.html",
         "sysadmin.adoc" : "sysadmin-plain.html",
         "system-booting.adoc" : "system-booting-plain.html",
         "system-software-updates.adoc" : "system-software-updates-plain.html",
         "system-timesync.adoc" : "system-timesync-plain.html",
         "translation.adoc" : "translation-plain.html",
         "vzdump.adoc" : "vzdump-plain.html"
      }
   },
   "reftext" : {
      "default" : {
         "Ahmed15" : "&#91;Ahmed15&#93;",
         "Ahmed16" : "&#91;Ahmed16&#93;",
         "Bessen09" : "&#91;Bessen09&#93;",
         "Bir96" : "&#91;Bir96&#93;",
         "Cheng14" : "&#91;Cheng14&#93;",
         "Goldman16" : "&#91;Goldman16&#93;",
         "Hertzog13" : "&#91;Hertzog13&#93;",
         "Kreibich10" : "&#91;Kreibich10&#93;",
         "Loeliger12" : "&#91;Loeliger12&#93;",
         "Loshin03" : "&#91;Loshin03&#93;",
         "Mauerer08" : "&#91;Mauerer08&#93;",
         "Richardson07" : "&#91;Richardson07&#93;",
         "Singh15" : "&#91;Singh15&#93;",
         "Singh16" : "&#91;Singh16&#93;",
         "Surber16" : "&#91;Surber16&#93;",
         "Walsh10" : "&#91;Walsh10&#93;",
         "_recommendations_for_a_healthy_ceph_cluster" : "",
         "advanced_btrfs_options" : "",
         "advanced_lvm_options" : "",
         "advanced_zfs_options" : "",
         "ballooning-target" : "",
         "ceph_rados_block_devices" : "",
         "chapter_btrfs" : "",
         "chapter_calendar_events" : "",
         "chapter_firmware_updates" : "",
         "chapter_gui" : "",
         "chapter_ha_manager" : "",
         "chapter_hyper_converged_infrastructure" : "",
         "chapter_installation" : "",
         "chapter_lvm" : "",
         "chapter_notifications" : "",
         "chapter_pct" : "",
         "chapter_pmxcfs" : "",
         "chapter_pve_firewall" : "",
         "chapter_pveceph" : "",
         "chapter_pvecm" : "",
         "chapter_pvesdn" : "",
         "chapter_pvesr" : "",
         "chapter_qm_vcpu_list" : "",
         "chapter_storage" : "",
         "chapter_system_administration" : "",
         "chapter_user_management" : "",
         "chapter_virtual_machines" : "",
         "chapter_vzdump" : "",
         "chapter_zfs" : "",
         "cli_general" : "",
         "configuration_files" : "",
         "configuration_files_casing" : "",
         "datacenter_configuration_file" : "",
         "disk_health_monitoring" : "",
         "external_metric_server" : "",
         "faq-support-table" : "",
         "faq-upgrade" : "",
         "faq-upgrade-major" : "",
         "first_guest_boot_delay" : "",
         "getting_help" : "",
         "gui_consent_banner" : "",
         "gui_my_settings" : "",
         "gui_tags" : "",
         "ha_manager_crm" : "",
         "ha_manager_crs" : "",
         "ha_manager_error_recovery" : "",
         "ha_manager_fencing" : "",
         "ha_manager_groups" : "",
         "ha_manager_lrm" : "",
         "ha_manager_node_maintenance" : "",
         "ha_manager_package_updates" : "",
         "ha_manager_resource_config" : "",
         "ha_manager_resources" : "",
         "ha_manager_service_states" : "",
         "ha_manager_shutdown_policy" : "",
         "ha_manager_start_failure_policy" : "",
         "howto_improve_pve_docs" : "",
         "i18n_with_git" : "",
         "i18n_without_git" : "",
         "install_minimal_requirements" : "",
         "install_recommended_requirements" : "",
         "installation_installer" : "",
         "installation_prepare_media" : "",
         "installation_unattended" : "",
         "intro_central_management" : "",
         "intro_project_history" : "",
         "kernel_samepage_merging" : "",
         "markdown_basics" : "",
         "metric_server_graphite" : "",
         "metric_server_influxdb" : "",
         "network_override_device_names" : "",
         "network_pin_naming_scheme_version" : "",
         "nomodeset_kernel_param" : "",
         "notification_events" : "",
         "notification_matchers" : "",
         "notification_matchers_calendar" : "",
         "notification_matchers_field" : "",
         "notification_matchers_severity" : "",
         "notification_mode" : "",
         "notification_targets" : "",
         "notification_targets_gotify" : "",
         "notification_targets_sendmail" : "",
         "notification_targets_smtp" : "",
         "notification_targets_webhook" : "",
         "pct_cgroup" : "",
         "pct_cgroup_change_version" : "",
         "pct_cgroup_compat" : "",
         "pct_configuration" : "",
         "pct_container_images" : "",
         "pct_container_network" : "",
         "pct_container_storage" : "",
         "pct_cpu" : "",
         "pct_general" : "",
         "pct_memory" : "",
         "pct_migration" : "",
         "pct_mount_points" : "",
         "pct_options" : "",
         "pct_settings" : "",
         "pct_snapshots" : "",
         "pct_startup_and_shutdown" : "",
         "pct_supported_distributions" : "",
         "proxmox_node_management" : "",
         "pve_ceph_device_classes" : "",
         "pve_ceph_ec_pools" : "",
         "pve_ceph_install" : "",
         "pve_ceph_install_wizard" : "",
         "pve_ceph_manager" : "",
         "pve_ceph_mon_and_ts" : "",
         "pve_ceph_monitors" : "",
         "pve_ceph_osd_create" : "",
         "pve_ceph_osd_destroy" : "",
         "pve_ceph_osd_replace" : "",
         "pve_ceph_osds" : "",
         "pve_ceph_pools" : "",
         "pve_ceph_recommendation_cpu" : "",
         "pve_ceph_recommendation_disk" : "",
         "pve_ceph_recommendation_memory" : "",
         "pve_ceph_recommendation_network" : "",
         "pve_ceph_recommendation_raid" : "",
         "pve_ceph_ts" : "",
         "pve_ceph_ts_causes" : "",
         "pve_ceph_ts_logs" : "",
         "pve_ceph_ts_problems" : "",
         "pve_ceph_wizard_networks" : "",
         "pve_firewall_cluster_wide_setup" : "",
         "pve_firewall_default_rules" : "",
         "pve_firewall_host_specific_configuration" : "",
         "pve_firewall_ip_aliases" : "",
         "pve_firewall_ip_sets" : "",
         "pve_firewall_ipfilter_section" : "",
         "pve_firewall_iptables_inspect" : "",
         "pve_firewall_log_levels" : "",
         "pve_firewall_nft" : "",
         "pve_firewall_nft_helpful_commands" : "",
         "pve_firewall_security_groups" : "",
         "pve_firewall_services_commands" : "",
         "pve_firewall_vm_container_configuration" : "",
         "pve_firewall_vnet_configuration" : "",
         "pveceph_create_mgr" : "",
         "pveceph_create_mon" : "",
         "pveceph_destroy_mgr" : "",
         "pveceph_destroy_mon" : "",
         "pveceph_fs" : "",
         "pveceph_fs_create" : "",
         "pveceph_fs_mds" : "",
         "pveceph_scrub" : "",
         "pveceph_shutdown" : "",
         "pvecm_adding_nodes_with_separated_cluster_network" : "",
         "pvecm_cluster_create_via_cli" : "",
         "pvecm_cluster_create_via_gui" : "",
         "pvecm_cluster_network" : "",
         "pvecm_cluster_network_requirements" : "",
         "pvecm_corosync_addresses" : "",
         "pvecm_corosync_conf_glossary" : "",
         "pvecm_create_cluster" : "",
         "pvecm_edit_corosync_conf" : "",
         "pvecm_join_node_to_cluster" : "",
         "pvecm_migration_network" : "",
         "pvecm_next_id_range" : "",
         "pvecm_qdevice_status_flags" : "",
         "pvecm_redundancy" : "",
         "pvecm_separate_cluster_net_after_creation" : "",
         "pvecm_separate_node_without_reinstall" : "",
         "pveproxy_custom_tls_cert" : "",
         "pveproxy_host_acls" : "",
         "pveproxy_listening_address" : "",
         "pveproxy_real_ip" : "",
         "pveproxy_response_compression" : "",
         "pvesdn_config_common_options" : "",
         "pvesdn_config_controllers" : "",
         "pvesdn_config_dhcp" : "",
         "pvesdn_config_dns" : "",
         "pvesdn_config_ipam" : "",
         "pvesdn_config_subnet" : "",
         "pvesdn_config_vnet" : "",
         "pvesdn_config_zone" : "",
         "pvesdn_controller_plugin_BGP" : "",
         "pvesdn_controller_plugin_ISIS" : "",
         "pvesdn_controller_plugin_evpn" : "",
         "pvesdn_dns_plugin_powerdns" : "",
         "pvesdn_firewall_integration" : "",
         "pvesdn_install_dhcp_ipam" : "",
         "pvesdn_install_frrouting" : "",
         "pvesdn_installation" : "",
         "pvesdn_ipam_plugin_netbox" : "",
         "pvesdn_ipam_plugin_phpipam" : "",
         "pvesdn_ipam_plugin_pveipam" : "",
         "pvesdn_main_configuration" : "",
         "pvesdn_notes" : "",
         "pvesdn_overview" : "",
         "pvesdn_setup_example_evpn" : "",
         "pvesdn_setup_example_nat" : "",
         "pvesdn_setup_example_qinq" : "",
         "pvesdn_setup_example_simple" : "",
         "pvesdn_setup_example_vlan" : "",
         "pvesdn_setup_example_vxlan" : "",
         "pvesdn_setup_examples" : "",
         "pvesdn_support_status" : "",
         "pvesdn_tech_and_config_overview" : "",
         "pvesdn_zone_plugin_evpn" : "",
         "pvesdn_zone_plugin_qinq" : "",
         "pvesdn_zone_plugin_simple" : "",
         "pvesdn_zone_plugin_vlan" : "",
         "pvesdn_zone_plugin_vxlan" : "",
         "pvesr_schedule_format_examples" : "",
         "pvesr_schedule_time_format" : "",
         "pveum_authentication_realms" : "",
         "pveum_configure_u2f" : "",
         "pveum_configure_webauthn" : "",
         "pveum_groups" : "",
         "pveum_ldap_reserved_characters" : "",
         "pveum_ldap_sync" : "",
         "pveum_ldap_sync_options" : "",
         "pveum_openid" : "",
         "pveum_permission_management" : "",
         "pveum_pools" : "",
         "pveum_resource_pools" : "",
         "pveum_roles" : "",
         "pveum_templated_paths" : "",
         "pveum_tfa_auth" : "",
         "pveum_tfa_lockout" : "",
         "pveum_tokens" : "",
         "pveum_user_configured_totp" : "",
         "pveum_user_configured_u2f" : "",
         "pveum_users" : "",
         "qm_audio_device" : "",
         "qm_ballooning" : "",
         "qm_bios_and_uefi" : "",
         "qm_bootorder" : "",
         "qm_cloud_init" : "",
         "qm_configuration" : "",
         "qm_copy_and_clone" : "",
         "qm_cpu" : "",
         "qm_cpu_resource_limits" : "",
         "qm_display" : "",
         "qm_general_settings" : "",
         "qm_hard_disk" : "",
         "qm_hard_disk_bus" : "",
         "qm_hard_disk_cache" : "",
         "qm_hard_disk_discard" : "",
         "qm_hard_disk_formats" : "",
         "qm_hard_disk_iothread" : "",
         "qm_hibernate" : "",
         "qm_import_virtual_machines" : "",
         "qm_ivshmem" : "",
         "qm_machine_type" : "",
         "qm_machine_update" : "",
         "qm_meltdown_spectre" : "",
         "qm_memory" : "",
         "qm_memory_encryption" : "",
         "qm_memory_encryption_sev" : "",
         "qm_migration" : "",
         "qm_network_device" : "",
         "qm_options" : "",
         "qm_os_settings" : "",
         "qm_pci_passthrough" : "",
         "qm_pci_passthrough_update_initramfs" : "",
         "qm_pci_passthrough_vm_config" : "",
         "qm_pci_viommu" : "",
         "qm_qemu_agent" : "",
         "qm_qga_auto_trim" : "",
         "qm_qga_enable" : "",
         "qm_qga_fsfreeze" : "",
         "qm_snapshots" : "",
         "qm_spice_enhancements" : "",
         "qm_startup_and_shutdown" : "",
         "qm_system_settings" : "",
         "qm_templates" : "",
         "qm_tpm" : "",
         "qm_usb_passthrough" : "",
         "qm_virtio_rng" : "",
         "qm_virtiofs" : "",
         "qm_virtual_machines_settings" : "",
         "qm_vmstatestorage" : "",
         "repos_secure_rpm" : "",
         "resource_mapping" : "",
         "storage_btrfs" : "",
         "storage_cephfs" : "",
         "storage_cephfs_config" : "",
         "storage_cifs" : "",
         "storage_directory" : "",
         "storage_glusterfs" : "",
         "storage_iscsidirect" : "",
         "storage_lvm" : "",
         "storage_lvmthin" : "",
         "storage_nfs" : "",
         "storage_open_iscsi" : "",
         "storage_pbs" : "",
         "storage_pbs_encryption" : "",
         "storage_rbd_config" : "",
         "storage_zfs" : "",
         "storage_zfspool" : "",
         "sysadmin_certificate_management" : "",
         "sysadmin_certs_acme_account" : "",
         "sysadmin_certs_acme_automatic_renewal" : "",
         "sysadmin_certs_acme_dns_api_config" : "",
         "sysadmin_certs_acme_dns_challenge" : "",
         "sysadmin_certs_acme_http_challenge" : "",
         "sysadmin_certs_acme_plugins" : "",
         "sysadmin_certs_acme_switch_from_staging" : "",
         "sysadmin_certs_api_gui" : "",
         "sysadmin_certs_get_trusted_acme_cert" : "",
         "sysadmin_certs_upload_custom" : "",
         "sysadmin_firmware_cpu" : "",
         "sysadmin_firmware_persistent" : "",
         "sysadmin_firmware_runtime_files" : "",
         "sysadmin_firmware_troubleshooting" : "",
         "sysadmin_network_bond" : "",
         "sysadmin_network_configuration" : "",
         "sysadmin_network_masquerading" : "",
         "sysadmin_network_routed" : "",
         "sysadmin_network_vlan" : "",
         "sysadmin_package_repositories" : "",
         "sysadmin_package_repositories_ceph" : "",
         "sysadmin_pxvirt_repo" : "",
         "sysadmin_zfs_add_cache_and_log_dev" : "",
         "sysadmin_zfs_change_failed_dev" : "",
         "sysadmin_zfs_create_new_zpool" : "",
         "sysadmin_zfs_create_new_zpool_raid0" : "",
         "sysadmin_zfs_create_new_zpool_raid1" : "",
         "sysadmin_zfs_create_new_zpool_raid10" : "",
         "sysadmin_zfs_create_new_zpool_raidz1" : "",
         "sysadmin_zfs_create_new_zpool_with_cache" : "",
         "sysadmin_zfs_create_new_zpool_with_log" : "",
         "sysadmin_zfs_features" : "",
         "sysadmin_zfs_limit_memory_usage" : "",
         "sysadmin_zfs_raid_considerations" : "",
         "sysadmin_zfs_raid_performance" : "",
         "sysadmin_zfs_raid_size_space_usage_redundancy" : "",
         "sysadmin_zfs_special_device" : "",
         "sysboot" : "",
         "sysboot_determine_bootloader_used" : "",
         "sysboot_edit_kernel_cmdline" : "",
         "sysboot_grub" : "",
         "sysboot_installer_part_scheme" : "",
         "sysboot_kernel_pin" : "",
         "sysboot_proxmox_boot_refresh" : "",
         "sysboot_proxmox_boot_setup" : "",
         "sysboot_proxmox_boot_tool" : "",
         "sysboot_secure_boot" : "",
         "sysboot_systemd_boot" : "",
         "sysboot_systemd_boot_config" : "",
         "system_software_updates" : "",
         "systemd_network_interface_names" : "",
         "translation" : "",
         "udp" : "",
         "user-realms-ad" : "",
         "user-realms-ldap" : "",
         "user-realms-pam" : "",
         "user-realms-pve" : "",
         "user_mgmt" : "",
         "user_tfa_setup_recovery_keys" : "",
         "user_tfa_setup_totp" : "",
         "user_tfa_setup_webauthn" : "",
         "vzdump_configuration" : "",
         "vzdump_jobs" : "",
         "vzdump_notes" : "",
         "vzdump_protection" : "",
         "vzdump_restore" : "",
         "vzdump_retention" : "",
         "zfs_compression" : "",
         "zfs_encryption" : "",
         "zfs_swap" : ""
      },
      "manvolnum" : {
         "Ahmed15" : "&#91;Ahmed15&#93;",
         "Ahmed16" : "&#91;Ahmed16&#93;",
         "Bessen09" : "&#91;Bessen09&#93;",
         "Bir96" : "&#91;Bir96&#93;",
         "Cheng14" : "&#91;Cheng14&#93;",
         "Goldman16" : "&#91;Goldman16&#93;",
         "Hertzog13" : "&#91;Hertzog13&#93;",
         "Kreibich10" : "&#91;Kreibich10&#93;",
         "Loeliger12" : "&#91;Loeliger12&#93;",
         "Loshin03" : "&#91;Loshin03&#93;",
         "Mauerer08" : "&#91;Mauerer08&#93;",
         "Richardson07" : "&#91;Richardson07&#93;",
         "Singh15" : "&#91;Singh15&#93;",
         "Singh16" : "&#91;Singh16&#93;",
         "Surber16" : "&#91;Surber16&#93;",
         "Walsh10" : "&#91;Walsh10&#93;",
         "_recommendations_for_a_healthy_ceph_cluster" : "",
         "advanced_btrfs_options" : "",
         "advanced_lvm_options" : "",
         "advanced_zfs_options" : "",
         "ballooning-target" : "",
         "ceph_rados_block_devices" : "",
         "chapter_btrfs" : "",
         "chapter_calendar_events" : "",
         "chapter_firmware_updates" : "",
         "chapter_gui" : "",
         "chapter_ha_manager" : "",
         "chapter_hyper_converged_infrastructure" : "",
         "chapter_installation" : "",
         "chapter_lvm" : "",
         "chapter_notifications" : "",
         "chapter_pct" : "",
         "chapter_pmxcfs" : "",
         "chapter_pve_firewall" : "",
         "chapter_pveceph" : "",
         "chapter_pvecm" : "",
         "chapter_pvesdn" : "",
         "chapter_pvesr" : "",
         "chapter_qm_vcpu_list" : "",
         "chapter_storage" : "",
         "chapter_system_administration" : "",
         "chapter_user_management" : "",
         "chapter_virtual_machines" : "",
         "chapter_vzdump" : "",
         "chapter_zfs" : "",
         "cli_general" : "",
         "configuration_files" : "",
         "configuration_files_casing" : "",
         "datacenter_configuration_file" : "",
         "disk_health_monitoring" : "",
         "external_metric_server" : "",
         "faq-support-table" : "",
         "faq-upgrade" : "",
         "faq-upgrade-major" : "",
         "first_guest_boot_delay" : "",
         "getting_help" : "",
         "gui_consent_banner" : "",
         "gui_my_settings" : "",
         "gui_tags" : "",
         "ha_manager_crm" : "",
         "ha_manager_crs" : "",
         "ha_manager_error_recovery" : "",
         "ha_manager_fencing" : "",
         "ha_manager_groups" : "",
         "ha_manager_lrm" : "",
         "ha_manager_node_maintenance" : "",
         "ha_manager_package_updates" : "",
         "ha_manager_resource_config" : "",
         "ha_manager_resources" : "",
         "ha_manager_service_states" : "",
         "ha_manager_shutdown_policy" : "",
         "ha_manager_start_failure_policy" : "",
         "howto_improve_pve_docs" : "",
         "i18n_with_git" : "",
         "i18n_without_git" : "",
         "install_minimal_requirements" : "",
         "install_recommended_requirements" : "",
         "installation_installer" : "",
         "installation_prepare_media" : "",
         "installation_unattended" : "",
         "intro_central_management" : "",
         "intro_project_history" : "",
         "kernel_samepage_merging" : "",
         "markdown_basics" : "",
         "metric_server_graphite" : "",
         "metric_server_influxdb" : "",
         "network_override_device_names" : "",
         "network_pin_naming_scheme_version" : "",
         "nomodeset_kernel_param" : "",
         "notification_events" : "",
         "notification_matchers" : "",
         "notification_matchers_calendar" : "",
         "notification_matchers_field" : "",
         "notification_matchers_severity" : "",
         "notification_mode" : "",
         "notification_targets" : "",
         "notification_targets_gotify" : "",
         "notification_targets_sendmail" : "",
         "notification_targets_smtp" : "",
         "notification_targets_webhook" : "",
         "pct_cgroup" : "",
         "pct_cgroup_change_version" : "",
         "pct_cgroup_compat" : "",
         "pct_configuration" : "",
         "pct_container_images" : "",
         "pct_container_network" : "",
         "pct_container_storage" : "",
         "pct_cpu" : "",
         "pct_general" : "",
         "pct_memory" : "",
         "pct_migration" : "",
         "pct_mount_points" : "",
         "pct_options" : "",
         "pct_settings" : "",
         "pct_snapshots" : "",
         "pct_startup_and_shutdown" : "",
         "pct_supported_distributions" : "",
         "pve_ceph_device_classes" : "",
         "pve_ceph_ec_pools" : "",
         "pve_ceph_install" : "",
         "pve_ceph_install_wizard" : "",
         "pve_ceph_manager" : "",
         "pve_ceph_mon_and_ts" : "",
         "pve_ceph_monitors" : "",
         "pve_ceph_osd_create" : "",
         "pve_ceph_osd_destroy" : "",
         "pve_ceph_osd_replace" : "",
         "pve_ceph_osds" : "",
         "pve_ceph_pools" : "",
         "pve_ceph_recommendation_cpu" : "",
         "pve_ceph_recommendation_disk" : "",
         "pve_ceph_recommendation_memory" : "",
         "pve_ceph_recommendation_network" : "",
         "pve_ceph_recommendation_raid" : "",
         "pve_ceph_ts" : "",
         "pve_ceph_ts_causes" : "",
         "pve_ceph_ts_logs" : "",
         "pve_ceph_ts_problems" : "",
         "pve_ceph_wizard_networks" : "",
         "pve_firewall_cluster_wide_setup" : "",
         "pve_firewall_default_rules" : "",
         "pve_firewall_host_specific_configuration" : "",
         "pve_firewall_ip_aliases" : "",
         "pve_firewall_ip_sets" : "",
         "pve_firewall_ipfilter_section" : "",
         "pve_firewall_iptables_inspect" : "",
         "pve_firewall_log_levels" : "",
         "pve_firewall_nft" : "",
         "pve_firewall_nft_helpful_commands" : "",
         "pve_firewall_security_groups" : "",
         "pve_firewall_services_commands" : "",
         "pve_firewall_vm_container_configuration" : "",
         "pve_firewall_vnet_configuration" : "",
         "pveceph_create_mgr" : "",
         "pveceph_create_mon" : "",
         "pveceph_destroy_mgr" : "",
         "pveceph_destroy_mon" : "",
         "pveceph_fs" : "",
         "pveceph_fs_create" : "",
         "pveceph_fs_mds" : "",
         "pveceph_scrub" : "",
         "pveceph_shutdown" : "",
         "pvecm_adding_nodes_with_separated_cluster_network" : "",
         "pvecm_cluster_create_via_cli" : "",
         "pvecm_cluster_create_via_gui" : "",
         "pvecm_cluster_network" : "",
         "pvecm_cluster_network_requirements" : "",
         "pvecm_corosync_addresses" : "",
         "pvecm_corosync_conf_glossary" : "",
         "pvecm_create_cluster" : "",
         "pvecm_edit_corosync_conf" : "",
         "pvecm_join_node_to_cluster" : "",
         "pvecm_migration_network" : "",
         "pvecm_next_id_range" : "",
         "pvecm_qdevice_status_flags" : "",
         "pvecm_redundancy" : "",
         "pvecm_separate_cluster_net_after_creation" : "",
         "pvecm_separate_node_without_reinstall" : "",
         "pveproxy_custom_tls_cert" : "",
         "pveproxy_host_acls" : "",
         "pveproxy_listening_address" : "",
         "pveproxy_real_ip" : "",
         "pveproxy_response_compression" : "",
         "pvesdn_config_common_options" : "",
         "pvesdn_config_controllers" : "",
         "pvesdn_config_dhcp" : "",
         "pvesdn_config_dns" : "",
         "pvesdn_config_ipam" : "",
         "pvesdn_config_subnet" : "",
         "pvesdn_config_vnet" : "",
         "pvesdn_config_zone" : "",
         "pvesdn_controller_plugin_BGP" : "",
         "pvesdn_controller_plugin_ISIS" : "",
         "pvesdn_controller_plugin_evpn" : "",
         "pvesdn_dns_plugin_powerdns" : "",
         "pvesdn_firewall_integration" : "",
         "pvesdn_install_dhcp_ipam" : "",
         "pvesdn_install_frrouting" : "",
         "pvesdn_installation" : "",
         "pvesdn_ipam_plugin_netbox" : "",
         "pvesdn_ipam_plugin_phpipam" : "",
         "pvesdn_ipam_plugin_pveipam" : "",
         "pvesdn_main_configuration" : "",
         "pvesdn_notes" : "",
         "pvesdn_overview" : "",
         "pvesdn_setup_example_evpn" : "",
         "pvesdn_setup_example_nat" : "",
         "pvesdn_setup_example_qinq" : "",
         "pvesdn_setup_example_simple" : "",
         "pvesdn_setup_example_vlan" : "",
         "pvesdn_setup_example_vxlan" : "",
         "pvesdn_setup_examples" : "",
         "pvesdn_support_status" : "",
         "pvesdn_tech_and_config_overview" : "",
         "pvesdn_zone_plugin_evpn" : "",
         "pvesdn_zone_plugin_qinq" : "",
         "pvesdn_zone_plugin_simple" : "",
         "pvesdn_zone_plugin_vlan" : "",
         "pvesdn_zone_plugin_vxlan" : "",
         "pvesr_schedule_format_examples" : "",
         "pvesr_schedule_time_format" : "",
         "pveum_authentication_realms" : "",
         "pveum_configure_u2f" : "",
         "pveum_configure_webauthn" : "",
         "pveum_groups" : "",
         "pveum_ldap_reserved_characters" : "",
         "pveum_ldap_sync" : "",
         "pveum_ldap_sync_options" : "",
         "pveum_openid" : "",
         "pveum_permission_management" : "",
         "pveum_pools" : "",
         "pveum_resource_pools" : "",
         "pveum_roles" : "",
         "pveum_templated_paths" : "",
         "pveum_tfa_auth" : "",
         "pveum_tfa_lockout" : "",
         "pveum_tokens" : "",
         "pveum_user_configured_totp" : "",
         "pveum_user_configured_u2f" : "",
         "pveum_users" : "",
         "qm_audio_device" : "",
         "qm_ballooning" : "",
         "qm_bios_and_uefi" : "",
         "qm_bootorder" : "",
         "qm_cloud_init" : "",
         "qm_configuration" : "",
         "qm_copy_and_clone" : "",
         "qm_cpu" : "",
         "qm_cpu_resource_limits" : "",
         "qm_display" : "",
         "qm_general_settings" : "",
         "qm_hard_disk" : "",
         "qm_hard_disk_bus" : "",
         "qm_hard_disk_cache" : "",
         "qm_hard_disk_discard" : "",
         "qm_hard_disk_formats" : "",
         "qm_hard_disk_iothread" : "",
         "qm_hibernate" : "",
         "qm_import_virtual_machines" : "",
         "qm_ivshmem" : "",
         "qm_machine_type" : "",
         "qm_machine_update" : "",
         "qm_meltdown_spectre" : "",
         "qm_memory" : "",
         "qm_memory_encryption" : "",
         "qm_memory_encryption_sev" : "",
         "qm_migration" : "",
         "qm_network_device" : "",
         "qm_options" : "",
         "qm_os_settings" : "",
         "qm_pci_passthrough" : "",
         "qm_pci_passthrough_update_initramfs" : "",
         "qm_pci_passthrough_vm_config" : "",
         "qm_pci_viommu" : "",
         "qm_qemu_agent" : "",
         "qm_qga_auto_trim" : "",
         "qm_qga_enable" : "",
         "qm_qga_fsfreeze" : "",
         "qm_snapshots" : "",
         "qm_spice_enhancements" : "",
         "qm_startup_and_shutdown" : "",
         "qm_system_settings" : "",
         "qm_templates" : "",
         "qm_tpm" : "",
         "qm_usb_passthrough" : "",
         "qm_virtio_rng" : "",
         "qm_virtiofs" : "",
         "qm_virtual_machines_settings" : "",
         "qm_vmstatestorage" : "",
         "repos_secure_rpm" : "",
         "resource_mapping" : "",
         "storage_btrfs" : "",
         "storage_cephfs" : "",
         "storage_cephfs_config" : "",
         "storage_cifs" : "",
         "storage_directory" : "",
         "storage_glusterfs" : "",
         "storage_iscsidirect" : "",
         "storage_lvm" : "",
         "storage_lvmthin" : "",
         "storage_nfs" : "",
         "storage_open_iscsi" : "",
         "storage_pbs" : "",
         "storage_pbs_encryption" : "",
         "storage_rbd_config" : "",
         "storage_zfs" : "",
         "storage_zfspool" : "",
         "sysadmin_certificate_management" : "",
         "sysadmin_certs_acme_account" : "",
         "sysadmin_certs_acme_automatic_renewal" : "",
         "sysadmin_certs_acme_dns_api_config" : "",
         "sysadmin_certs_acme_dns_challenge" : "",
         "sysadmin_certs_acme_http_challenge" : "",
         "sysadmin_certs_acme_plugins" : "",
         "sysadmin_certs_acme_switch_from_staging" : "",
         "sysadmin_certs_api_gui" : "",
         "sysadmin_certs_get_trusted_acme_cert" : "",
         "sysadmin_certs_upload_custom" : "",
         "sysadmin_firmware_cpu" : "",
         "sysadmin_firmware_persistent" : "",
         "sysadmin_firmware_runtime_files" : "",
         "sysadmin_firmware_troubleshooting" : "",
         "sysadmin_network_bond" : "",
         "sysadmin_network_configuration" : "",
         "sysadmin_network_masquerading" : "",
         "sysadmin_network_routed" : "",
         "sysadmin_network_vlan" : "",
         "sysadmin_package_repositories" : "",
         "sysadmin_package_repositories_ceph" : "",
         "sysadmin_pxvirt_repo" : "",
         "sysadmin_zfs_add_cache_and_log_dev" : "",
         "sysadmin_zfs_change_failed_dev" : "",
         "sysadmin_zfs_create_new_zpool" : "",
         "sysadmin_zfs_create_new_zpool_raid0" : "",
         "sysadmin_zfs_create_new_zpool_raid1" : "",
         "sysadmin_zfs_create_new_zpool_raid10" : "",
         "sysadmin_zfs_create_new_zpool_raidz1" : "",
         "sysadmin_zfs_create_new_zpool_with_cache" : "",
         "sysadmin_zfs_create_new_zpool_with_log" : "",
         "sysadmin_zfs_features" : "",
         "sysadmin_zfs_limit_memory_usage" : "",
         "sysadmin_zfs_raid_considerations" : "",
         "sysadmin_zfs_raid_performance" : "",
         "sysadmin_zfs_raid_size_space_usage_redundancy" : "",
         "sysadmin_zfs_special_device" : "",
         "sysboot" : "",
         "sysboot_determine_bootloader_used" : "",
         "sysboot_edit_kernel_cmdline" : "",
         "sysboot_grub" : "",
         "sysboot_installer_part_scheme" : "",
         "sysboot_kernel_pin" : "",
         "sysboot_proxmox_boot_refresh" : "",
         "sysboot_proxmox_boot_setup" : "",
         "sysboot_proxmox_boot_tool" : "",
         "sysboot_secure_boot" : "",
         "sysboot_systemd_boot" : "",
         "sysboot_systemd_boot_config" : "",
         "system_software_updates" : "",
         "systemd_network_interface_names" : "",
         "translation" : "",
         "udp" : "",
         "user-realms-ad" : "",
         "user-realms-ldap" : "",
         "user-realms-pam" : "",
         "user-realms-pve" : "",
         "user_mgmt" : "",
         "user_tfa_setup_recovery_keys" : "",
         "user_tfa_setup_totp" : "",
         "user_tfa_setup_webauthn" : "",
         "vzdump_configuration" : "",
         "vzdump_jobs" : "",
         "vzdump_notes" : "",
         "vzdump_protection" : "",
         "vzdump_restore" : "",
         "vzdump_retention" : "",
         "zfs_compression" : "",
         "zfs_encryption" : "",
         "zfs_swap" : ""
      },
      "wiki" : {
         "Ahmed15" : "&#91;Ahmed15&#93;",
         "Ahmed16" : "&#91;Ahmed16&#93;",
         "Bessen09" : "&#91;Bessen09&#93;",
         "Bir96" : "&#91;Bir96&#93;",
         "Cheng14" : "&#91;Cheng14&#93;",
         "Goldman16" : "&#91;Goldman16&#93;",
         "Hertzog13" : "&#91;Hertzog13&#93;",
         "Kreibich10" : "&#91;Kreibich10&#93;",
         "Loeliger12" : "&#91;Loeliger12&#93;",
         "Loshin03" : "&#91;Loshin03&#93;",
         "Mauerer08" : "&#91;Mauerer08&#93;",
         "Richardson07" : "&#91;Richardson07&#93;",
         "Singh15" : "&#91;Singh15&#93;",
         "Singh16" : "&#91;Singh16&#93;",
         "Surber16" : "&#91;Surber16&#93;",
         "Walsh10" : "&#91;Walsh10&#93;",
         "_recommendations_for_a_healthy_ceph_cluster" : "",
         "advanced_btrfs_options" : "",
         "advanced_lvm_options" : "",
         "advanced_zfs_options" : "",
         "ballooning-target" : "",
         "ceph_rados_block_devices" : "",
         "chapter_btrfs" : "",
         "chapter_calendar_events" : "",
         "chapter_firmware_updates" : "",
         "chapter_gui" : "",
         "chapter_ha_manager" : "",
         "chapter_hyper_converged_infrastructure" : "",
         "chapter_installation" : "",
         "chapter_lvm" : "",
         "chapter_notifications" : "",
         "chapter_pct" : "",
         "chapter_pmxcfs" : "",
         "chapter_pve_firewall" : "",
         "chapter_pveceph" : "",
         "chapter_pvecm" : "",
         "chapter_pvesdn" : "",
         "chapter_pvesr" : "",
         "chapter_qm_vcpu_list" : "",
         "chapter_storage" : "",
         "chapter_system_administration" : "",
         "chapter_user_management" : "",
         "chapter_virtual_machines" : "",
         "chapter_vzdump" : "",
         "chapter_zfs" : "",
         "cli_general" : "",
         "configuration_files" : "",
         "configuration_files_casing" : "",
         "datacenter_configuration_file" : "",
         "disk_health_monitoring" : "",
         "external_metric_server" : "",
         "faq-support-table" : "",
         "faq-upgrade" : "",
         "faq-upgrade-major" : "",
         "first_guest_boot_delay" : "",
         "getting_help" : "",
         "gui_consent_banner" : "",
         "gui_my_settings" : "",
         "gui_tags" : "",
         "ha_manager_crm" : "",
         "ha_manager_crs" : "",
         "ha_manager_error_recovery" : "",
         "ha_manager_fencing" : "",
         "ha_manager_groups" : "",
         "ha_manager_lrm" : "",
         "ha_manager_node_maintenance" : "",
         "ha_manager_package_updates" : "",
         "ha_manager_resource_config" : "",
         "ha_manager_resources" : "",
         "ha_manager_service_states" : "",
         "ha_manager_shutdown_policy" : "",
         "ha_manager_start_failure_policy" : "",
         "howto_improve_pve_docs" : "",
         "i18n_with_git" : "",
         "i18n_without_git" : "",
         "install_minimal_requirements" : "",
         "install_recommended_requirements" : "",
         "installation_installer" : "",
         "installation_prepare_media" : "",
         "installation_unattended" : "",
         "intro_central_management" : "",
         "intro_project_history" : "",
         "kernel_samepage_merging" : "",
         "markdown_basics" : "",
         "metric_server_graphite" : "",
         "metric_server_influxdb" : "",
         "network_override_device_names" : "",
         "network_pin_naming_scheme_version" : "",
         "nomodeset_kernel_param" : "",
         "notification_events" : "",
         "notification_matchers" : "",
         "notification_matchers_calendar" : "",
         "notification_matchers_field" : "",
         "notification_matchers_severity" : "",
         "notification_mode" : "",
         "notification_targets" : "",
         "notification_targets_gotify" : "",
         "notification_targets_sendmail" : "",
         "notification_targets_smtp" : "",
         "notification_targets_webhook" : "",
         "pct_cgroup" : "",
         "pct_cgroup_change_version" : "",
         "pct_cgroup_compat" : "",
         "pct_configuration" : "",
         "pct_container_images" : "",
         "pct_container_network" : "",
         "pct_container_storage" : "",
         "pct_cpu" : "",
         "pct_general" : "",
         "pct_memory" : "",
         "pct_migration" : "",
         "pct_mount_points" : "",
         "pct_options" : "",
         "pct_settings" : "",
         "pct_snapshots" : "",
         "pct_startup_and_shutdown" : "",
         "pct_supported_distributions" : "",
         "proxmox_node_management" : "",
         "pve_ceph_device_classes" : "",
         "pve_ceph_ec_pools" : "",
         "pve_ceph_install" : "",
         "pve_ceph_install_wizard" : "",
         "pve_ceph_manager" : "",
         "pve_ceph_mon_and_ts" : "",
         "pve_ceph_monitors" : "",
         "pve_ceph_osd_create" : "",
         "pve_ceph_osd_destroy" : "",
         "pve_ceph_osd_replace" : "",
         "pve_ceph_osds" : "",
         "pve_ceph_pools" : "",
         "pve_ceph_recommendation_cpu" : "",
         "pve_ceph_recommendation_disk" : "",
         "pve_ceph_recommendation_memory" : "",
         "pve_ceph_recommendation_network" : "",
         "pve_ceph_recommendation_raid" : "",
         "pve_ceph_ts" : "",
         "pve_ceph_ts_causes" : "",
         "pve_ceph_ts_logs" : "",
         "pve_ceph_ts_problems" : "",
         "pve_ceph_wizard_networks" : "",
         "pve_firewall_cluster_wide_setup" : "",
         "pve_firewall_default_rules" : "",
         "pve_firewall_host_specific_configuration" : "",
         "pve_firewall_ip_aliases" : "",
         "pve_firewall_ip_sets" : "",
         "pve_firewall_ipfilter_section" : "",
         "pve_firewall_iptables_inspect" : "",
         "pve_firewall_log_levels" : "",
         "pve_firewall_nft" : "",
         "pve_firewall_nft_helpful_commands" : "",
         "pve_firewall_security_groups" : "",
         "pve_firewall_services_commands" : "",
         "pve_firewall_vm_container_configuration" : "",
         "pve_firewall_vnet_configuration" : "",
         "pveceph_create_mgr" : "",
         "pveceph_create_mon" : "",
         "pveceph_destroy_mgr" : "",
         "pveceph_destroy_mon" : "",
         "pveceph_fs" : "",
         "pveceph_fs_create" : "",
         "pveceph_fs_mds" : "",
         "pveceph_scrub" : "",
         "pveceph_shutdown" : "",
         "pvecm_adding_nodes_with_separated_cluster_network" : "",
         "pvecm_cluster_create_via_cli" : "",
         "pvecm_cluster_create_via_gui" : "",
         "pvecm_cluster_network" : "",
         "pvecm_cluster_network_requirements" : "",
         "pvecm_corosync_addresses" : "",
         "pvecm_corosync_conf_glossary" : "",
         "pvecm_create_cluster" : "",
         "pvecm_edit_corosync_conf" : "",
         "pvecm_join_node_to_cluster" : "",
         "pvecm_migration_network" : "",
         "pvecm_next_id_range" : "",
         "pvecm_qdevice_status_flags" : "",
         "pvecm_redundancy" : "",
         "pvecm_separate_cluster_net_after_creation" : "",
         "pvecm_separate_node_without_reinstall" : "",
         "pveproxy_custom_tls_cert" : "",
         "pveproxy_host_acls" : "",
         "pveproxy_listening_address" : "",
         "pveproxy_real_ip" : "",
         "pveproxy_response_compression" : "",
         "pvesdn_config_common_options" : "",
         "pvesdn_config_controllers" : "",
         "pvesdn_config_dhcp" : "",
         "pvesdn_config_dns" : "",
         "pvesdn_config_ipam" : "",
         "pvesdn_config_subnet" : "",
         "pvesdn_config_vnet" : "",
         "pvesdn_config_zone" : "",
         "pvesdn_controller_plugin_BGP" : "",
         "pvesdn_controller_plugin_ISIS" : "",
         "pvesdn_controller_plugin_evpn" : "",
         "pvesdn_dns_plugin_powerdns" : "",
         "pvesdn_firewall_integration" : "",
         "pvesdn_install_dhcp_ipam" : "",
         "pvesdn_install_frrouting" : "",
         "pvesdn_installation" : "",
         "pvesdn_ipam_plugin_netbox" : "",
         "pvesdn_ipam_plugin_phpipam" : "",
         "pvesdn_ipam_plugin_pveipam" : "",
         "pvesdn_main_configuration" : "",
         "pvesdn_notes" : "",
         "pvesdn_overview" : "",
         "pvesdn_setup_example_evpn" : "",
         "pvesdn_setup_example_nat" : "",
         "pvesdn_setup_example_qinq" : "",
         "pvesdn_setup_example_simple" : "",
         "pvesdn_setup_example_vlan" : "",
         "pvesdn_setup_example_vxlan" : "",
         "pvesdn_setup_examples" : "",
         "pvesdn_support_status" : "",
         "pvesdn_tech_and_config_overview" : "",
         "pvesdn_zone_plugin_evpn" : "",
         "pvesdn_zone_plugin_qinq" : "",
         "pvesdn_zone_plugin_simple" : "",
         "pvesdn_zone_plugin_vlan" : "",
         "pvesdn_zone_plugin_vxlan" : "",
         "pvesr_schedule_format_examples" : "",
         "pvesr_schedule_time_format" : "",
         "pveum_authentication_realms" : "",
         "pveum_configure_u2f" : "",
         "pveum_configure_webauthn" : "",
         "pveum_groups" : "",
         "pveum_ldap_reserved_characters" : "",
         "pveum_ldap_sync" : "",
         "pveum_ldap_sync_options" : "",
         "pveum_openid" : "",
         "pveum_permission_management" : "",
         "pveum_pools" : "",
         "pveum_resource_pools" : "",
         "pveum_roles" : "",
         "pveum_templated_paths" : "",
         "pveum_tfa_auth" : "",
         "pveum_tfa_lockout" : "",
         "pveum_tokens" : "",
         "pveum_user_configured_totp" : "",
         "pveum_user_configured_u2f" : "",
         "pveum_users" : "",
         "qm_audio_device" : "",
         "qm_ballooning" : "",
         "qm_bios_and_uefi" : "",
         "qm_bootorder" : "",
         "qm_cloud_init" : "",
         "qm_configuration" : "",
         "qm_copy_and_clone" : "",
         "qm_cpu" : "",
         "qm_cpu_resource_limits" : "",
         "qm_display" : "",
         "qm_general_settings" : "",
         "qm_hard_disk" : "",
         "qm_hard_disk_bus" : "",
         "qm_hard_disk_cache" : "",
         "qm_hard_disk_discard" : "",
         "qm_hard_disk_formats" : "",
         "qm_hard_disk_iothread" : "",
         "qm_hibernate" : "",
         "qm_import_virtual_machines" : "",
         "qm_ivshmem" : "",
         "qm_machine_type" : "",
         "qm_machine_update" : "",
         "qm_meltdown_spectre" : "",
         "qm_memory" : "",
         "qm_memory_encryption" : "",
         "qm_memory_encryption_sev" : "",
         "qm_migration" : "",
         "qm_network_device" : "",
         "qm_options" : "",
         "qm_os_settings" : "",
         "qm_pci_passthrough" : "",
         "qm_pci_passthrough_update_initramfs" : "",
         "qm_pci_passthrough_vm_config" : "",
         "qm_pci_viommu" : "",
         "qm_qemu_agent" : "",
         "qm_qga_auto_trim" : "",
         "qm_qga_enable" : "",
         "qm_qga_fsfreeze" : "",
         "qm_snapshots" : "",
         "qm_spice_enhancements" : "",
         "qm_startup_and_shutdown" : "",
         "qm_system_settings" : "",
         "qm_templates" : "",
         "qm_tpm" : "",
         "qm_usb_passthrough" : "",
         "qm_virtio_rng" : "",
         "qm_virtiofs" : "",
         "qm_virtual_machines_settings" : "",
         "qm_vmstatestorage" : "",
         "repos_secure_rpm" : "",
         "resource_mapping" : "",
         "storage_btrfs" : "",
         "storage_cephfs" : "",
         "storage_cephfs_config" : "",
         "storage_cifs" : "",
         "storage_directory" : "",
         "storage_glusterfs" : "",
         "storage_iscsidirect" : "",
         "storage_lvm" : "",
         "storage_lvmthin" : "",
         "storage_nfs" : "",
         "storage_open_iscsi" : "",
         "storage_pbs" : "",
         "storage_pbs_encryption" : "",
         "storage_rbd_config" : "",
         "storage_zfs" : "",
         "storage_zfspool" : "",
         "sysadmin_certificate_management" : "",
         "sysadmin_certs_acme_account" : "",
         "sysadmin_certs_acme_automatic_renewal" : "",
         "sysadmin_certs_acme_dns_api_config" : "",
         "sysadmin_certs_acme_dns_challenge" : "",
         "sysadmin_certs_acme_http_challenge" : "",
         "sysadmin_certs_acme_plugins" : "",
         "sysadmin_certs_acme_switch_from_staging" : "",
         "sysadmin_certs_api_gui" : "",
         "sysadmin_certs_get_trusted_acme_cert" : "",
         "sysadmin_certs_upload_custom" : "",
         "sysadmin_firmware_cpu" : "",
         "sysadmin_firmware_persistent" : "",
         "sysadmin_firmware_runtime_files" : "",
         "sysadmin_firmware_troubleshooting" : "",
         "sysadmin_network_bond" : "",
         "sysadmin_network_configuration" : "",
         "sysadmin_network_masquerading" : "",
         "sysadmin_network_routed" : "",
         "sysadmin_network_vlan" : "",
         "sysadmin_package_repositories" : "",
         "sysadmin_package_repositories_ceph" : "",
         "sysadmin_pxvirt_repo" : "",
         "sysadmin_zfs_add_cache_and_log_dev" : "",
         "sysadmin_zfs_change_failed_dev" : "",
         "sysadmin_zfs_create_new_zpool" : "",
         "sysadmin_zfs_create_new_zpool_raid0" : "",
         "sysadmin_zfs_create_new_zpool_raid1" : "",
         "sysadmin_zfs_create_new_zpool_raid10" : "",
         "sysadmin_zfs_create_new_zpool_raidz1" : "",
         "sysadmin_zfs_create_new_zpool_with_cache" : "",
         "sysadmin_zfs_create_new_zpool_with_log" : "",
         "sysadmin_zfs_features" : "",
         "sysadmin_zfs_limit_memory_usage" : "",
         "sysadmin_zfs_raid_considerations" : "",
         "sysadmin_zfs_raid_performance" : "",
         "sysadmin_zfs_raid_size_space_usage_redundancy" : "",
         "sysadmin_zfs_special_device" : "",
         "sysboot" : "",
         "sysboot_determine_bootloader_used" : "",
         "sysboot_edit_kernel_cmdline" : "",
         "sysboot_grub" : "",
         "sysboot_installer_part_scheme" : "",
         "sysboot_kernel_pin" : "",
         "sysboot_proxmox_boot_refresh" : "",
         "sysboot_proxmox_boot_setup" : "",
         "sysboot_proxmox_boot_tool" : "",
         "sysboot_secure_boot" : "",
         "sysboot_systemd_boot" : "",
         "sysboot_systemd_boot_config" : "",
         "system_software_updates" : "",
         "systemd_network_interface_names" : "",
         "translation" : "",
         "udp" : "",
         "user-realms-ad" : "",
         "user-realms-ldap" : "",
         "user-realms-pam" : "",
         "user-realms-pve" : "",
         "user_mgmt" : "",
         "user_tfa_setup_recovery_keys" : "",
         "user_tfa_setup_totp" : "",
         "user_tfa_setup_webauthn" : "",
         "vzdump_configuration" : "",
         "vzdump_jobs" : "",
         "vzdump_notes" : "",
         "vzdump_protection" : "",
         "vzdump_restore" : "",
         "vzdump_retention" : "",
         "zfs_compression" : "",
         "zfs_encryption" : "",
         "zfs_swap" : ""
      }
   },
   "reftitle" : {
      "default" : {
         "_recommendations_for_a_healthy_ceph_cluster" : "健康 Ceph 集群的建议",
         "advanced_btrfs_options" : "高级 BTRFS 配置选项",
         "advanced_lvm_options" : "高级 LVM 配置选项",
         "advanced_zfs_options" : "高级 ZFS 配置选项",
         "ballooning-target" : "Ballooning 的 RAM 使用率目标",
         "ceph_rados_block_devices" : "Ceph RADOS 块设备（RBD）",
         "chapter_btrfs" : "BTRFS",
         "chapter_firmware_updates" : "固件更新",
         "chapter_gui" : "图形用户界面",
         "chapter_ha_manager" : "高可用性",
         "chapter_hyper_converged_infrastructure" : "超融合基础设施",
         "chapter_installation" : "安装 Proxmox VE",
         "chapter_lvm" : "逻辑卷管理器 (LVM)",
         "chapter_notifications" : "通知",
         "chapter_pve_firewall" : "Proxmox VE 防火墙",
         "chapter_pveceph" : "部署超融合 Ceph 集群",
         "chapter_pvesdn" : "软件定义网络",
         "chapter_qm_vcpu_list" : "简介",
         "chapter_storage" : "Proxmox VE 存储",
         "chapter_system_administration" : "主机系统管理",
         "chapter_virtual_machines" : "QEMU/KVM 虚拟机",
         "chapter_vzdump" : "备份与还原",
         "chapter_zfs" : "Linux 上的 ZFS",
         "cli_general" : "常规",
         "configuration_files" : "常规",
         "configuration_files_casing" : "属性名称的大小写形式",
         "datacenter_configuration_file" : "数据中心配置",
         "disk_health_monitoring" : "磁盘健康监控",
         "external_metric_server" : "外部指标服务器",
         "first_guest_boot_delay" : "首个客户机启动延迟",
         "getting_help" : "获取帮助",
         "gui_consent_banner" : "同意横幅",
         "gui_my_settings" : "我的设置",
         "gui_tags" : "标签",
         "ha_manager_crm" : "集群资源管理器",
         "ha_manager_crs" : "集群资源调度",
         "ha_manager_error_recovery" : "错误恢复",
         "ha_manager_fencing" : "Fencing",
         "ha_manager_groups" : "组",
         "ha_manager_lrm" : "本地资源管理器",
         "ha_manager_node_maintenance" : "节点维护",
         "ha_manager_package_updates" : "软件包更新",
         "ha_manager_resource_config" : "资源",
         "ha_manager_resources" : "资源",
         "ha_manager_service_states" : "服务状态",
         "ha_manager_shutdown_policy" : "关机策略",
         "ha_manager_start_failure_policy" : "启动失败策略",
         "howto_improve_pve_docs" : "改进 Proxmox VE 文档",
         "i18n_with_git" : "使用 git 翻译",
         "i18n_without_git" : "不使用 git 翻译",
         "install_minimal_requirements" : "最低要求，仅用于评估",
         "install_recommended_requirements" : "推荐系统要求",
         "installation_installer" : "使用 Proxmox VE 安装程序",
         "installation_prepare_media" : "准备安装介质",
         "installation_unattended" : "无人值守安装",
         "intro_central_management" : "集中管理",
         "intro_project_history" : "项目历史",
         "kernel_samepage_merging" : "Kernel Samepage Merging (KSM)",
         "metric_server_graphite" : "Graphite 服务器配置",
         "metric_server_influxdb" : "InfluxDB 插件配置",
         "network_override_device_names" : "覆盖网络设备名称",
         "network_pin_naming_scheme_version" : "固定特定命名方案版本",
         "nomodeset_kernel_param" : "添加 `nomodeset` 内核参数",
         "notification_events" : "通知事件",
         "notification_matchers" : "通知匹配器",
         "notification_matchers_calendar" : "日历匹配规则",
         "notification_matchers_field" : "字段匹配规则",
         "notification_matchers_severity" : "严重级别匹配规则",
         "notification_mode" : "通知模式",
         "notification_targets" : "通知目标",
         "notification_targets_gotify" : "Gotify",
         "notification_targets_sendmail" : "Sendmail",
         "notification_targets_smtp" : "SMTP",
         "notification_targets_webhook" : "Webhook",
         "pct_cgroup" : "Control Groups（'cgroup'）",
         "pct_cgroup_change_version" : "更改 CGroup 版本",
         "pct_cgroup_compat" : "CGroup 版本兼容性",
         "pct_configuration" : "配置",
         "pct_container_images" : "容器镜像",
         "pct_container_network" : "网络",
         "pct_container_storage" : "容器存储",
         "pct_cpu" : "CPU",
         "pct_general" : "常规设置",
         "pct_memory" : "内存",
         "pct_migration" : "迁移",
         "pct_mount_points" : "挂载点",
         "pct_options" : "选项",
         "pct_settings" : "容器设置",
         "pct_snapshots" : "快照",
         "pct_startup_and_shutdown" : "容器的自动启动和关闭",
         "pct_supported_distributions" : "支持的发行版",
         "proxmox_node_management" : "Proxmox 节点管理",
         "pve_ceph_device_classes" : "Ceph CRUSH 与设备类别",
         "pve_ceph_ec_pools" : "纠删码 Pool",
         "pve_ceph_install" : "通过 CLI 安装 Ceph 软件包",
         "pve_ceph_install_wizard" : "Ceph 初始安装与配置",
         "pve_ceph_manager" : "Ceph Manager",
         "pve_ceph_mon_and_ts" : "Ceph 监控与故障排查",
         "pve_ceph_monitors" : "Ceph Monitor",
         "pve_ceph_osd_create" : "创建 OSD",
         "pve_ceph_osd_destroy" : "销毁 OSD",
         "pve_ceph_osd_replace" : "替换 OSD",
         "pve_ceph_osds" : "Ceph OSDs",
         "pve_ceph_pools" : "Ceph Pools",
         "pve_ceph_ts" : "故障排查",
         "pve_firewall_cluster_wide_setup" : "集群范围设置",
         "pve_firewall_default_rules" : "默认防火墙规则",
         "pve_firewall_host_specific_configuration" : "主机专用配置",
         "pve_firewall_ip_aliases" : "IP 别名",
         "pve_firewall_ip_sets" : "IP 集",
         "pve_firewall_ipfilter_section" : "标准 IP 集 `ipfilter-net*`",
         "pve_firewall_nft" : "nftables",
         "pve_firewall_nft_helpful_commands" : "常用命令",
         "pve_firewall_security_groups" : "安全组",
         "pve_firewall_services_commands" : "服务和命令",
         "pve_firewall_vm_container_configuration" : "VM/容器配置",
         "pve_firewall_vnet_configuration" : "VNet 配置",
         "pveceph_create_mgr" : "创建 Manager",
         "pveceph_create_mon" : "创建 Monitor",
         "pveceph_destroy_mgr" : "销毁 Manager",
         "pveceph_destroy_mon" : "销毁 Monitor",
         "pveceph_fs" : "CephFS",
         "pveceph_fs_create" : "创建 CephFS",
         "pveceph_fs_mds" : "Metadata Server（MDS）",
         "pveceph_scrub" : "Scrub & Deep Scrub",
         "pveceph_shutdown" : "关闭 Proxmox VE + Ceph HCI 集群",
         "pvecm_adding_nodes_with_separated_cluster_network" : "使用独立集群网络添加节点",
         "pvecm_cluster_create_via_cli" : "通过命令行创建",
         "pvecm_cluster_create_via_gui" : "通过 Web GUI 创建",
         "pvecm_cluster_network" : "集群网络",
         "pvecm_cluster_network_requirements" : "网络要求",
         "pvecm_corosync_addresses" : "Corosync 地址",
         "pvecm_corosync_conf_glossary" : "Corosync 配置术语表",
         "pvecm_create_cluster" : "创建集群",
         "pvecm_edit_corosync_conf" : "编辑 corosync.conf",
         "pvecm_join_node_to_cluster" : "向集群添加节点",
         "pvecm_migration_network" : "迁移网络",
         "pvecm_next_id_range" : "客户机 VMID 自动选择",
         "pvecm_qdevice_status_flags" : "QDevice 状态标志",
         "pvecm_redundancy" : "Corosync 冗余",
         "pvecm_separate_cluster_net_after_creation" : "在创建集群后分离",
         "pvecm_separate_node_without_reinstall" : "不重装而分离节点",
         "pveproxy_custom_tls_cert" : "替代 HTTPS 证书",
         "pveproxy_host_acls" : "基于主机的访问控制",
         "pveproxy_listening_address" : "监听 IP 地址",
         "pveproxy_real_ip" : "真实客户端 IP 日志记录",
         "pveproxy_response_compression" : "响应压缩",
         "pvesdn_config_common_options" : "通用选项",
         "pvesdn_config_controllers" : "控制器",
         "pvesdn_config_dhcp" : "DHCP",
         "pvesdn_config_dns" : "DNS",
         "pvesdn_config_ipam" : "IPAM",
         "pvesdn_config_subnet" : "子网",
         "pvesdn_config_vnet" : "VNet",
         "pvesdn_config_zone" : "区域",
         "pvesdn_controller_plugin_BGP" : "BGP Controller",
         "pvesdn_controller_plugin_ISIS" : "ISIS Controller",
         "pvesdn_controller_plugin_evpn" : "EVPN Controller",
         "pvesdn_dns_plugin_powerdns" : "PowerDNS Plugin",
         "pvesdn_firewall_integration" : "防火墙集成",
         "pvesdn_install_dhcp_ipam" : "DHCP IPAM",
         "pvesdn_install_frrouting" : "FRRouting",
         "pvesdn_installation" : "安装",
         "pvesdn_ipam_plugin_netbox" : "NetBox IPAM Plugin",
         "pvesdn_ipam_plugin_phpipam" : "phpIPAM Plugin",
         "pvesdn_ipam_plugin_pveipam" : "PVE IPAM Plugin",
         "pvesdn_main_configuration" : "配置概览",
         "pvesdn_notes" : "说明",
         "pvesdn_overview" : "简介",
         "pvesdn_setup_example_evpn" : "EVPN 设置示例",
         "pvesdn_setup_example_nat" : "源 NAT 示例",
         "pvesdn_setup_example_qinq" : "QinQ 设置示例",
         "pvesdn_setup_example_simple" : "Simple 区域示例",
         "pvesdn_setup_example_vlan" : "VLAN 设置示例",
         "pvesdn_setup_example_vxlan" : "VXLAN 设置示例",
         "pvesdn_setup_examples" : "示例",
         "pvesdn_support_status" : "支持状态",
         "pvesdn_tech_and_config_overview" : "技术与配置",
         "pvesdn_zone_plugin_evpn" : "EVPN 区域",
         "pvesdn_zone_plugin_qinq" : "QinQ 区域",
         "pvesdn_zone_plugin_simple" : "Simple 区域",
         "pvesdn_zone_plugin_vlan" : "VLAN 区域",
         "pvesdn_zone_plugin_vxlan" : "VXLAN 区域",
         "pvesr_schedule_format_examples" : "示例：",
         "pvesr_schedule_time_format" : "调度格式",
         "pveum_authentication_realms" : "认证域",
         "pveum_configure_u2f" : "服务器端 U2F 配置",
         "pveum_configure_webauthn" : "服务器端 Webauthn 配置",
         "pveum_groups" : "组",
         "pveum_ldap_reserved_characters" : "保留字符",
         "pveum_ldap_sync" : "同步基于 LDAP 的域",
         "pveum_ldap_sync_options" : "同步选项",
         "pveum_openid" : "OpenID Connect",
         "pveum_permission_management" : "权限管理",
         "pveum_pools" : "池",
         "pveum_resource_pools" : "资源池",
         "pveum_roles" : "角色",
         "pveum_tfa_auth" : "双因素认证",
         "pveum_tfa_lockout" : "双因素认证限制与锁定",
         "pveum_tokens" : "API token",
         "pveum_user_configured_totp" : "用户配置的 TOTP 认证",
         "pveum_user_configured_u2f" : "用户启用 U2F",
         "pveum_users" : "用户",
         "qm_audio_device" : "音频设备",
         "qm_bios_and_uefi" : "BIOS 和 UEFI",
         "qm_bootorder" : "设备启动顺序",
         "qm_cloud_init" : "Cloud-Init 支持",
         "qm_configuration" : "配置",
         "qm_copy_and_clone" : "复制和克隆",
         "qm_cpu" : "CPU",
         "qm_cpu_resource_limits" : "资源限制",
         "qm_display" : "显示",
         "qm_general_settings" : "常规设置",
         "qm_hard_disk" : "硬盘",
         "qm_hard_disk_bus" : "总线/控制器",
         "qm_hard_disk_cache" : "缓存模式",
         "qm_hard_disk_discard" : "Trim/Discard",
         "qm_hard_disk_formats" : "镜像格式",
         "qm_hard_disk_iothread" : "IO Thread",
         "qm_hibernate" : "休眠",
         "qm_import_virtual_machines" : "导入虚拟机",
         "qm_ivshmem" : "VM 间共享内存",
         "qm_meltdown_spectre" : "Meltdown / Spectre 相关 CPU flags",
         "qm_memory" : "内存",
         "qm_memory_encryption" : "内存加密",
         "qm_memory_encryption_sev" : "AMD SEV",
         "qm_migration" : "迁移",
         "qm_network_device" : "网络设备",
         "qm_options" : "选项",
         "qm_os_settings" : "操作系统设置",
         "qm_pci_passthrough" : "PCI(e) 直通",
         "qm_pci_passthrough_vm_config" : "虚拟机配置",
         "qm_pci_viommu" : "vIOMMU（模拟 IOMMU）",
         "qm_qemu_agent" : "QEMU Guest Agent",
         "qm_qga_auto_trim" : "使用 QGA 自动 TRIM",
         "qm_qga_enable" : "启用 Guest Agent 通信",
         "qm_qga_fsfreeze" : "备份时文件系统 Freeze 和 Thaw",
         "qm_snapshots" : "快照",
         "qm_spice_enhancements" : "SPICE 增强",
         "qm_startup_and_shutdown" : "虚拟机自动启动和关闭",
         "qm_system_settings" : "系统设置",
         "qm_templates" : "虚拟机模板",
         "qm_tpm" : "可信平台模块 (TPM)",
         "qm_usb_passthrough" : "USB 直通",
         "qm_virtio_rng" : "VirtIO RNG",
         "qm_virtiofs" : "Virtiofs",
         "qm_virtual_machines_settings" : "虚拟机设置",
         "repos_secure_rpm" : "软件包签名验证",
         "resource_mapping" : "资源映射",
         "storage_btrfs" : "BTRFS 后端",
         "storage_cephfs" : "Ceph 文件系统（CephFS）",
         "storage_cephfs_config" : "配置",
         "storage_cifs" : "CIFS 后端",
         "storage_directory" : "目录后端",
         "storage_glusterfs" : "GlusterFS 后端",
         "storage_iscsidirect" : "用户态 iSCSI 后端",
         "storage_lvm" : "LVM 后端",
         "storage_lvmthin" : "LVM thin 后端",
         "storage_nfs" : "NFS 后端",
         "storage_open_iscsi" : "Open-iSCSI initiator",
         "storage_pbs" : "Proxmox Backup Server",
         "storage_pbs_encryption" : "加密",
         "storage_rbd_config" : "配置",
         "storage_zfs" : "ZFS over iSCSI 后端",
         "storage_zfspool" : "本地 ZFS Pool 后端",
         "sysadmin_certificate_management" : "证书管理",
         "sysadmin_certs_acme_account" : "ACME 账户",
         "sysadmin_certs_acme_automatic_renewal" : "ACME 证书自动续期",
         "sysadmin_certs_acme_dns_api_config" : "配置用于验证的 ACME DNS API",
         "sysadmin_certs_acme_dns_challenge" : "ACME DNS API 挑战插件",
         "sysadmin_certs_acme_http_challenge" : "ACME HTTP 挑战插件",
         "sysadmin_certs_acme_plugins" : "ACME 插件",
         "sysadmin_certs_acme_switch_from_staging" : "示例：从 `staging` 切换到常规 ACME 目录",
         "sysadmin_certs_api_gui" : "API 和 Web GUI 证书",
         "sysadmin_certs_get_trusted_acme_cert" : "通过 Let's Encrypt (ACME) 获取可信证书",
         "sysadmin_certs_upload_custom" : "上传自定义证书",
         "sysadmin_firmware_cpu" : "CPU 微码更新",
         "sysadmin_firmware_persistent" : "持久化固件",
         "sysadmin_firmware_runtime_files" : "运行时固件文件",
         "sysadmin_firmware_troubleshooting" : "故障排查",
         "sysadmin_network_bond" : "Linux Bond",
         "sysadmin_network_configuration" : "网络配置",
         "sysadmin_network_masquerading" : "使用 `iptables` 的 Masquerading（NAT）",
         "sysadmin_network_routed" : "路由配置",
         "sysadmin_network_vlan" : "VLAN 802.1Q",
         "sysadmin_package_repositories" : "软件包仓库",
         "sysadmin_package_repositories_ceph" : "Ceph 软件包仓库",
         "sysadmin_pxvirt_repo" : "PXVIRT 仓库",
         "sysadmin_zfs_add_cache_and_log_dev" : "向现有 pool 添加缓存和日志",
         "sysadmin_zfs_change_failed_dev" : "更换故障设备",
         "sysadmin_zfs_create_new_zpool" : "创建新的 zpool",
         "sysadmin_zfs_create_new_zpool_raid0" : "创建带 RAID-0 的新 pool",
         "sysadmin_zfs_create_new_zpool_raid1" : "创建带 RAID-1 的新 pool",
         "sysadmin_zfs_create_new_zpool_raid10" : "创建带 RAID-10 的新 pool",
         "sysadmin_zfs_create_new_zpool_raidz1" : "创建带 RAIDZ-1 的新 pool",
         "sysadmin_zfs_create_new_zpool_with_cache" : "创建带缓存（L2ARC）的新 pool",
         "sysadmin_zfs_create_new_zpool_with_log" : "创建带日志（ZIL）的新 pool",
         "sysadmin_zfs_features" : "ZFS Pool 特性",
         "sysadmin_zfs_limit_memory_usage" : "限制 ZFS 内存使用",
         "sysadmin_zfs_raid_considerations" : "ZFS RAID 级别考量",
         "sysadmin_zfs_raid_performance" : "性能",
         "sysadmin_zfs_raid_size_space_usage_redundancy" : "大小、空间使用和冗余",
         "sysadmin_zfs_special_device" : "ZFS Special Device",
         "sysboot" : "主机引导加载器",
         "sysboot_determine_bootloader_used" : "确定正在使用的引导加载器",
         "sysboot_edit_kernel_cmdline" : "编辑内核命令行",
         "sysboot_grub" : "GRUB",
         "sysboot_installer_part_scheme" : "安装程序使用的分区方案",
         "sysboot_kernel_pin" : "为下次启动覆盖内核版本",
         "sysboot_proxmox_boot_tool" : "使用 `proxmox-boot-tool` 同步 ESP 内容",
         "sysboot_secure_boot" : "Secure Boot",
         "sysboot_systemd_boot" : "Systemd-boot",
         "sysboot_systemd_boot_config" : "配置",
         "system_software_updates" : "系统软件更新",
         "systemd_network_interface_names" : "Systemd 网络接口名称",
         "translation" : "翻译 Proxmox VE",
         "udp" : "   batch-timeout = \"1s\"",
         "user-realms-ad" : "Microsoft Active Directory（AD）",
         "user-realms-ldap" : "LDAP",
         "user-realms-pam" : "Linux PAM 标准认证",
         "user-realms-pve" : "Proxmox VE Authentication Server",
         "user_tfa_setup_recovery_keys" : "Recovery Keys",
         "user_tfa_setup_totp" : "TOTP",
         "user_tfa_setup_webauthn" : "WebAuthn",
         "vzdump_configuration" : "配置",
         "vzdump_jobs" : "备份作业",
         "vzdump_notes" : "备份备注",
         "vzdump_protection" : "备份保护",
         "vzdump_restore" : "还原",
         "vzdump_retention" : "备份保留",
         "zfs_compression" : "ZFS 中的压缩",
         "zfs_encryption" : "加密的 ZFS Dataset",
         "zfs_swap" : "ZFS 上的 SWAP"
      },
      "manvolnum" : {
         "_recommendations_for_a_healthy_ceph_cluster" : "健康 Ceph 集群的建议",
         "advanced_btrfs_options" : "高级 BTRFS 配置选项",
         "advanced_lvm_options" : "高级 LVM 配置选项",
         "advanced_zfs_options" : "高级 ZFS 配置选项",
         "ballooning-target" : "Ballooning 的 RAM 使用率目标",
         "ceph_rados_block_devices" : "Ceph RADOS 块设备（RBD）",
         "chapter_btrfs" : "BTRFS",
         "chapter_firmware_updates" : "固件更新",
         "chapter_gui" : "图形用户界面",
         "chapter_ha_manager" : "ha-manager(1)",
         "chapter_hyper_converged_infrastructure" : "超融合基础设施",
         "chapter_installation" : "安装 Proxmox VE",
         "chapter_lvm" : "逻辑卷管理器 (LVM)",
         "chapter_notifications" : "通知",
         "chapter_pct" : "pct(1)",
         "chapter_pmxcfs" : "pmxcfs(8)",
         "chapter_pve_firewall" : "pve-firewall(8)",
         "chapter_pveceph" : "pveceph(1)",
         "chapter_pvecm" : "pvecm(1)",
         "chapter_pvesdn" : "软件定义网络",
         "chapter_pvesr" : "pvesr(1)",
         "chapter_qm_vcpu_list" : "简介",
         "chapter_storage" : "pvesm(1)",
         "chapter_system_administration" : "主机系统管理",
         "chapter_virtual_machines" : "qm(1)",
         "chapter_vzdump" : "vzdump(1)",
         "chapter_zfs" : "Linux 上的 ZFS",
         "cli_general" : "常规",
         "configuration_files" : "常规",
         "configuration_files_casing" : "属性名称的大小写形式",
         "datacenter_configuration_file" : "datacenter.cfg(5)",
         "disk_health_monitoring" : "磁盘健康监控",
         "external_metric_server" : "外部指标服务器",
         "first_guest_boot_delay" : "首个客户机启动延迟",
         "getting_help" : "获取帮助",
         "gui_consent_banner" : "同意横幅",
         "gui_my_settings" : "我的设置",
         "gui_tags" : "标签",
         "ha_manager_crm" : "集群资源管理器",
         "ha_manager_crs" : "集群资源调度",
         "ha_manager_error_recovery" : "错误恢复",
         "ha_manager_fencing" : "Fencing",
         "ha_manager_groups" : "组",
         "ha_manager_lrm" : "本地资源管理器",
         "ha_manager_node_maintenance" : "节点维护",
         "ha_manager_package_updates" : "软件包更新",
         "ha_manager_resource_config" : "资源",
         "ha_manager_resources" : "资源",
         "ha_manager_service_states" : "服务状态",
         "ha_manager_shutdown_policy" : "关机策略",
         "ha_manager_start_failure_policy" : "启动失败策略",
         "howto_improve_pve_docs" : "改进 Proxmox VE 文档",
         "i18n_with_git" : "使用 git 翻译",
         "i18n_without_git" : "不使用 git 翻译",
         "install_minimal_requirements" : "最低要求，仅用于评估",
         "install_recommended_requirements" : "推荐系统要求",
         "installation_installer" : "使用 Proxmox VE 安装程序",
         "installation_prepare_media" : "准备安装介质",
         "installation_unattended" : "无人值守安装",
         "intro_central_management" : "集中管理",
         "intro_project_history" : "项目历史",
         "kernel_samepage_merging" : "Kernel Samepage Merging (KSM)",
         "metric_server_graphite" : "Graphite 服务器配置",
         "metric_server_influxdb" : "InfluxDB 插件配置",
         "network_override_device_names" : "覆盖网络设备名称",
         "network_pin_naming_scheme_version" : "固定特定命名方案版本",
         "nomodeset_kernel_param" : "添加 `nomodeset` 内核参数",
         "notification_events" : "通知事件",
         "notification_matchers" : "通知匹配器",
         "notification_matchers_calendar" : "日历匹配规则",
         "notification_matchers_field" : "字段匹配规则",
         "notification_matchers_severity" : "严重级别匹配规则",
         "notification_mode" : "通知模式",
         "notification_targets" : "通知目标",
         "notification_targets_gotify" : "Gotify",
         "notification_targets_sendmail" : "Sendmail",
         "notification_targets_smtp" : "SMTP",
         "notification_targets_webhook" : "Webhook",
         "pct_cgroup" : "Control Groups（'cgroup'）",
         "pct_cgroup_change_version" : "更改 CGroup 版本",
         "pct_cgroup_compat" : "CGroup 版本兼容性",
         "pct_configuration" : "配置",
         "pct_container_images" : "容器镜像",
         "pct_container_network" : "网络",
         "pct_container_storage" : "容器存储",
         "pct_cpu" : "CPU",
         "pct_general" : "常规设置",
         "pct_memory" : "内存",
         "pct_migration" : "迁移",
         "pct_mount_points" : "挂载点",
         "pct_options" : "选项",
         "pct_settings" : "容器设置",
         "pct_snapshots" : "快照",
         "pct_startup_and_shutdown" : "容器的自动启动和关闭",
         "pct_supported_distributions" : "支持的发行版",
         "pve_ceph_device_classes" : "Ceph CRUSH 与设备类别",
         "pve_ceph_ec_pools" : "纠删码 Pool",
         "pve_ceph_install" : "通过 CLI 安装 Ceph 软件包",
         "pve_ceph_install_wizard" : "Ceph 初始安装与配置",
         "pve_ceph_manager" : "Ceph Manager",
         "pve_ceph_mon_and_ts" : "Ceph 监控与故障排查",
         "pve_ceph_monitors" : "Ceph Monitor",
         "pve_ceph_osd_create" : "创建 OSD",
         "pve_ceph_osd_destroy" : "销毁 OSD",
         "pve_ceph_osd_replace" : "替换 OSD",
         "pve_ceph_osds" : "Ceph OSDs",
         "pve_ceph_pools" : "Ceph Pools",
         "pve_ceph_ts" : "故障排查",
         "pve_firewall_cluster_wide_setup" : "集群范围设置",
         "pve_firewall_default_rules" : "默认防火墙规则",
         "pve_firewall_host_specific_configuration" : "主机专用配置",
         "pve_firewall_ip_aliases" : "IP 别名",
         "pve_firewall_ip_sets" : "IP 集",
         "pve_firewall_ipfilter_section" : "标准 IP 集 `ipfilter-net*`",
         "pve_firewall_nft" : "nftables",
         "pve_firewall_nft_helpful_commands" : "常用命令",
         "pve_firewall_security_groups" : "安全组",
         "pve_firewall_services_commands" : "服务和命令",
         "pve_firewall_vm_container_configuration" : "VM/容器配置",
         "pve_firewall_vnet_configuration" : "VNet 配置",
         "pveceph_create_mgr" : "创建 Manager",
         "pveceph_create_mon" : "创建 Monitor",
         "pveceph_destroy_mgr" : "销毁 Manager",
         "pveceph_destroy_mon" : "销毁 Monitor",
         "pveceph_fs" : "CephFS",
         "pveceph_fs_create" : "创建 CephFS",
         "pveceph_fs_mds" : "Metadata Server（MDS）",
         "pveceph_scrub" : "Scrub & Deep Scrub",
         "pveceph_shutdown" : "关闭 Proxmox VE + Ceph HCI 集群",
         "pvecm_adding_nodes_with_separated_cluster_network" : "使用独立集群网络添加节点",
         "pvecm_cluster_create_via_cli" : "通过命令行创建",
         "pvecm_cluster_create_via_gui" : "通过 Web GUI 创建",
         "pvecm_cluster_network" : "集群网络",
         "pvecm_cluster_network_requirements" : "网络要求",
         "pvecm_corosync_addresses" : "Corosync 地址",
         "pvecm_corosync_conf_glossary" : "Corosync 配置术语表",
         "pvecm_create_cluster" : "创建集群",
         "pvecm_edit_corosync_conf" : "编辑 corosync.conf",
         "pvecm_join_node_to_cluster" : "向集群添加节点",
         "pvecm_migration_network" : "迁移网络",
         "pvecm_next_id_range" : "客户机 VMID 自动选择",
         "pvecm_qdevice_status_flags" : "QDevice 状态标志",
         "pvecm_redundancy" : "Corosync 冗余",
         "pvecm_separate_cluster_net_after_creation" : "在创建集群后分离",
         "pvecm_separate_node_without_reinstall" : "不重装而分离节点",
         "pveproxy_custom_tls_cert" : "替代 HTTPS 证书",
         "pveproxy_host_acls" : "基于主机的访问控制",
         "pveproxy_listening_address" : "监听 IP 地址",
         "pveproxy_real_ip" : "真实客户端 IP 日志记录",
         "pveproxy_response_compression" : "响应压缩",
         "pvesdn_config_common_options" : "通用选项",
         "pvesdn_config_controllers" : "控制器",
         "pvesdn_config_dhcp" : "DHCP",
         "pvesdn_config_dns" : "DNS",
         "pvesdn_config_ipam" : "IPAM",
         "pvesdn_config_subnet" : "子网",
         "pvesdn_config_vnet" : "VNet",
         "pvesdn_config_zone" : "区域",
         "pvesdn_controller_plugin_BGP" : "BGP Controller",
         "pvesdn_controller_plugin_ISIS" : "ISIS Controller",
         "pvesdn_controller_plugin_evpn" : "EVPN Controller",
         "pvesdn_dns_plugin_powerdns" : "PowerDNS Plugin",
         "pvesdn_firewall_integration" : "防火墙集成",
         "pvesdn_install_dhcp_ipam" : "DHCP IPAM",
         "pvesdn_install_frrouting" : "FRRouting",
         "pvesdn_installation" : "安装",
         "pvesdn_ipam_plugin_netbox" : "NetBox IPAM Plugin",
         "pvesdn_ipam_plugin_phpipam" : "phpIPAM Plugin",
         "pvesdn_ipam_plugin_pveipam" : "PVE IPAM Plugin",
         "pvesdn_main_configuration" : "配置概览",
         "pvesdn_notes" : "说明",
         "pvesdn_overview" : "简介",
         "pvesdn_setup_example_evpn" : "EVPN 设置示例",
         "pvesdn_setup_example_nat" : "源 NAT 示例",
         "pvesdn_setup_example_qinq" : "QinQ 设置示例",
         "pvesdn_setup_example_simple" : "Simple 区域示例",
         "pvesdn_setup_example_vlan" : "VLAN 设置示例",
         "pvesdn_setup_example_vxlan" : "VXLAN 设置示例",
         "pvesdn_setup_examples" : "示例",
         "pvesdn_support_status" : "支持状态",
         "pvesdn_tech_and_config_overview" : "技术与配置",
         "pvesdn_zone_plugin_evpn" : "EVPN 区域",
         "pvesdn_zone_plugin_qinq" : "QinQ 区域",
         "pvesdn_zone_plugin_simple" : "Simple 区域",
         "pvesdn_zone_plugin_vlan" : "VLAN 区域",
         "pvesdn_zone_plugin_vxlan" : "VXLAN 区域",
         "pvesr_schedule_format_examples" : "示例：",
         "pvesr_schedule_time_format" : "调度格式",
         "pveum_authentication_realms" : "认证域",
         "pveum_configure_u2f" : "服务器端 U2F 配置",
         "pveum_configure_webauthn" : "服务器端 Webauthn 配置",
         "pveum_groups" : "组",
         "pveum_ldap_reserved_characters" : "保留字符",
         "pveum_ldap_sync" : "同步基于 LDAP 的域",
         "pveum_ldap_sync_options" : "同步选项",
         "pveum_openid" : "OpenID Connect",
         "pveum_permission_management" : "权限管理",
         "pveum_pools" : "池",
         "pveum_resource_pools" : "资源池",
         "pveum_roles" : "角色",
         "pveum_tfa_auth" : "双因素认证",
         "pveum_tfa_lockout" : "双因素认证限制与锁定",
         "pveum_tokens" : "API token",
         "pveum_user_configured_totp" : "用户配置的 TOTP 认证",
         "pveum_user_configured_u2f" : "用户启用 U2F",
         "pveum_users" : "用户",
         "qm_audio_device" : "音频设备",
         "qm_bios_and_uefi" : "BIOS 和 UEFI",
         "qm_bootorder" : "设备启动顺序",
         "qm_cloud_init" : "Cloud-Init 支持",
         "qm_configuration" : "配置",
         "qm_copy_and_clone" : "复制和克隆",
         "qm_cpu" : "CPU",
         "qm_cpu_resource_limits" : "资源限制",
         "qm_display" : "显示",
         "qm_general_settings" : "常规设置",
         "qm_hard_disk" : "硬盘",
         "qm_hard_disk_bus" : "总线/控制器",
         "qm_hard_disk_cache" : "缓存模式",
         "qm_hard_disk_discard" : "Trim/Discard",
         "qm_hard_disk_formats" : "镜像格式",
         "qm_hard_disk_iothread" : "IO Thread",
         "qm_hibernate" : "休眠",
         "qm_import_virtual_machines" : "导入虚拟机",
         "qm_ivshmem" : "VM 间共享内存",
         "qm_meltdown_spectre" : "Meltdown / Spectre 相关 CPU flags",
         "qm_memory" : "内存",
         "qm_memory_encryption" : "内存加密",
         "qm_memory_encryption_sev" : "AMD SEV",
         "qm_migration" : "迁移",
         "qm_network_device" : "网络设备",
         "qm_options" : "选项",
         "qm_os_settings" : "操作系统设置",
         "qm_pci_passthrough" : "PCI(e) 直通",
         "qm_pci_passthrough_vm_config" : "虚拟机配置",
         "qm_pci_viommu" : "vIOMMU（模拟 IOMMU）",
         "qm_qemu_agent" : "QEMU Guest Agent",
         "qm_qga_auto_trim" : "使用 QGA 自动 TRIM",
         "qm_qga_enable" : "启用 Guest Agent 通信",
         "qm_qga_fsfreeze" : "备份时文件系统 Freeze 和 Thaw",
         "qm_snapshots" : "快照",
         "qm_spice_enhancements" : "SPICE 增强",
         "qm_startup_and_shutdown" : "虚拟机自动启动和关闭",
         "qm_system_settings" : "系统设置",
         "qm_templates" : "虚拟机模板",
         "qm_tpm" : "可信平台模块 (TPM)",
         "qm_usb_passthrough" : "USB 直通",
         "qm_virtio_rng" : "VirtIO RNG",
         "qm_virtiofs" : "Virtiofs",
         "qm_virtual_machines_settings" : "虚拟机设置",
         "repos_secure_rpm" : "软件包签名验证",
         "resource_mapping" : "资源映射",
         "storage_btrfs" : "BTRFS 后端",
         "storage_cephfs" : "Ceph 文件系统（CephFS）",
         "storage_cephfs_config" : "配置",
         "storage_cifs" : "CIFS 后端",
         "storage_directory" : "目录后端",
         "storage_glusterfs" : "GlusterFS 后端",
         "storage_iscsidirect" : "用户态 iSCSI 后端",
         "storage_lvm" : "LVM 后端",
         "storage_lvmthin" : "LVM thin 后端",
         "storage_nfs" : "NFS 后端",
         "storage_open_iscsi" : "Open-iSCSI initiator",
         "storage_pbs" : "Proxmox Backup Server",
         "storage_pbs_encryption" : "加密",
         "storage_rbd_config" : "配置",
         "storage_zfs" : "ZFS over iSCSI 后端",
         "storage_zfspool" : "本地 ZFS Pool 后端",
         "sysadmin_certificate_management" : "证书管理",
         "sysadmin_certs_acme_account" : "ACME 账户",
         "sysadmin_certs_acme_automatic_renewal" : "ACME 证书自动续期",
         "sysadmin_certs_acme_dns_api_config" : "配置用于验证的 ACME DNS API",
         "sysadmin_certs_acme_dns_challenge" : "ACME DNS API 挑战插件",
         "sysadmin_certs_acme_http_challenge" : "ACME HTTP 挑战插件",
         "sysadmin_certs_acme_plugins" : "ACME 插件",
         "sysadmin_certs_acme_switch_from_staging" : "示例：从 `staging` 切换到常规 ACME 目录",
         "sysadmin_certs_api_gui" : "API 和 Web GUI 证书",
         "sysadmin_certs_get_trusted_acme_cert" : "通过 Let's Encrypt (ACME) 获取可信证书",
         "sysadmin_certs_upload_custom" : "上传自定义证书",
         "sysadmin_firmware_cpu" : "CPU 微码更新",
         "sysadmin_firmware_persistent" : "持久化固件",
         "sysadmin_firmware_runtime_files" : "运行时固件文件",
         "sysadmin_firmware_troubleshooting" : "故障排查",
         "sysadmin_network_bond" : "Linux Bond",
         "sysadmin_network_configuration" : "网络配置",
         "sysadmin_network_masquerading" : "使用 `iptables` 的 Masquerading（NAT）",
         "sysadmin_network_routed" : "路由配置",
         "sysadmin_network_vlan" : "VLAN 802.1Q",
         "sysadmin_package_repositories" : "软件包仓库",
         "sysadmin_package_repositories_ceph" : "Ceph 软件包仓库",
         "sysadmin_pxvirt_repo" : "PXVIRT 仓库",
         "sysadmin_zfs_add_cache_and_log_dev" : "向现有 pool 添加缓存和日志",
         "sysadmin_zfs_change_failed_dev" : "更换故障设备",
         "sysadmin_zfs_create_new_zpool" : "创建新的 zpool",
         "sysadmin_zfs_create_new_zpool_raid0" : "创建带 RAID-0 的新 pool",
         "sysadmin_zfs_create_new_zpool_raid1" : "创建带 RAID-1 的新 pool",
         "sysadmin_zfs_create_new_zpool_raid10" : "创建带 RAID-10 的新 pool",
         "sysadmin_zfs_create_new_zpool_raidz1" : "创建带 RAIDZ-1 的新 pool",
         "sysadmin_zfs_create_new_zpool_with_cache" : "创建带缓存（L2ARC）的新 pool",
         "sysadmin_zfs_create_new_zpool_with_log" : "创建带日志（ZIL）的新 pool",
         "sysadmin_zfs_features" : "ZFS Pool 特性",
         "sysadmin_zfs_limit_memory_usage" : "限制 ZFS 内存使用",
         "sysadmin_zfs_raid_considerations" : "ZFS RAID 级别考量",
         "sysadmin_zfs_raid_performance" : "性能",
         "sysadmin_zfs_raid_size_space_usage_redundancy" : "大小、空间使用和冗余",
         "sysadmin_zfs_special_device" : "ZFS Special Device",
         "sysboot" : "主机引导加载器",
         "sysboot_determine_bootloader_used" : "确定正在使用的引导加载器",
         "sysboot_edit_kernel_cmdline" : "编辑内核命令行",
         "sysboot_grub" : "GRUB",
         "sysboot_installer_part_scheme" : "安装程序使用的分区方案",
         "sysboot_kernel_pin" : "为下次启动覆盖内核版本",
         "sysboot_proxmox_boot_tool" : "使用 `proxmox-boot-tool` 同步 ESP 内容",
         "sysboot_secure_boot" : "Secure Boot",
         "sysboot_systemd_boot" : "Systemd-boot",
         "sysboot_systemd_boot_config" : "配置",
         "system_software_updates" : "系统软件更新",
         "systemd_network_interface_names" : "Systemd 网络接口名称",
         "translation" : "翻译 Proxmox VE",
         "udp" : "   batch-timeout = \"1s\"",
         "user-realms-ad" : "Microsoft Active Directory（AD）",
         "user-realms-ldap" : "LDAP",
         "user-realms-pam" : "Linux PAM 标准认证",
         "user-realms-pve" : "Proxmox VE Authentication Server",
         "user_tfa_setup_recovery_keys" : "Recovery Keys",
         "user_tfa_setup_totp" : "TOTP",
         "user_tfa_setup_webauthn" : "WebAuthn",
         "vzdump_configuration" : "配置",
         "vzdump_jobs" : "备份作业",
         "vzdump_notes" : "备份备注",
         "vzdump_protection" : "备份保护",
         "vzdump_restore" : "还原",
         "vzdump_retention" : "备份保留",
         "zfs_compression" : "ZFS 中的压缩",
         "zfs_encryption" : "加密的 ZFS Dataset",
         "zfs_swap" : "ZFS 上的 SWAP"
      },
      "wiki" : {
         "_recommendations_for_a_healthy_ceph_cluster" : "健康 Ceph 集群的建议",
         "advanced_btrfs_options" : "高级 BTRFS 配置选项",
         "advanced_lvm_options" : "高级 LVM 配置选项",
         "advanced_zfs_options" : "高级 ZFS 配置选项",
         "ballooning-target" : "Ballooning 的 RAM 使用率目标",
         "ceph_rados_block_devices" : "Ceph RADOS 块设备（RBD）",
         "chapter_btrfs" : "BTRFS",
         "chapter_calendar_events" : "日历事件",
         "chapter_firmware_updates" : "固件更新",
         "chapter_gui" : "图形用户界面",
         "chapter_ha_manager" : "高可用性",
         "chapter_hyper_converged_infrastructure" : "超融合基础设施",
         "chapter_installation" : "安装 Proxmox VE",
         "chapter_lvm" : "逻辑卷管理器 (LVM)",
         "chapter_notifications" : "通知",
         "chapter_pve_firewall" : "Proxmox VE 防火墙",
         "chapter_pveceph" : "部署超融合 Ceph 集群",
         "chapter_pvesdn" : "软件定义网络",
         "chapter_qm_vcpu_list" : "简介",
         "chapter_storage" : "Proxmox VE 存储",
         "chapter_system_administration" : "主机系统管理",
         "chapter_virtual_machines" : "QEMU/KVM 虚拟机",
         "chapter_vzdump" : "备份与还原",
         "chapter_zfs" : "Linux 上的 ZFS",
         "cli_general" : "常规",
         "configuration_files" : "常规",
         "configuration_files_casing" : "属性名称的大小写形式",
         "datacenter_configuration_file" : "数据中心配置",
         "disk_health_monitoring" : "磁盘健康监控",
         "external_metric_server" : "外部指标服务器",
         "first_guest_boot_delay" : "首个客户机启动延迟",
         "getting_help" : "获取帮助",
         "gui_consent_banner" : "同意横幅",
         "gui_my_settings" : "我的设置",
         "gui_tags" : "标签",
         "ha_manager_crm" : "集群资源管理器",
         "ha_manager_crs" : "集群资源调度",
         "ha_manager_error_recovery" : "错误恢复",
         "ha_manager_fencing" : "Fencing",
         "ha_manager_groups" : "组",
         "ha_manager_lrm" : "本地资源管理器",
         "ha_manager_node_maintenance" : "节点维护",
         "ha_manager_package_updates" : "软件包更新",
         "ha_manager_resource_config" : "资源",
         "ha_manager_resources" : "资源",
         "ha_manager_service_states" : "服务状态",
         "ha_manager_shutdown_policy" : "关机策略",
         "ha_manager_start_failure_policy" : "启动失败策略",
         "howto_improve_pve_docs" : "改进 Proxmox VE 文档",
         "i18n_with_git" : "使用 git 翻译",
         "i18n_without_git" : "不使用 git 翻译",
         "install_minimal_requirements" : "最低要求，仅用于评估",
         "install_recommended_requirements" : "推荐系统要求",
         "installation_installer" : "使用 Proxmox VE 安装程序",
         "installation_prepare_media" : "准备安装介质",
         "installation_unattended" : "无人值守安装",
         "intro_central_management" : "集中管理",
         "intro_project_history" : "项目历史",
         "kernel_samepage_merging" : "Kernel Samepage Merging (KSM)",
         "metric_server_graphite" : "Graphite 服务器配置",
         "metric_server_influxdb" : "InfluxDB 插件配置",
         "network_override_device_names" : "覆盖网络设备名称",
         "network_pin_naming_scheme_version" : "固定特定命名方案版本",
         "nomodeset_kernel_param" : "添加 `nomodeset` 内核参数",
         "notification_events" : "通知事件",
         "notification_matchers" : "通知匹配器",
         "notification_matchers_calendar" : "日历匹配规则",
         "notification_matchers_field" : "字段匹配规则",
         "notification_matchers_severity" : "严重级别匹配规则",
         "notification_mode" : "通知模式",
         "notification_targets" : "通知目标",
         "notification_targets_gotify" : "Gotify",
         "notification_targets_sendmail" : "Sendmail",
         "notification_targets_smtp" : "SMTP",
         "notification_targets_webhook" : "Webhook",
         "pct_cgroup" : "Control Groups（'cgroup'）",
         "pct_cgroup_change_version" : "更改 CGroup 版本",
         "pct_cgroup_compat" : "CGroup 版本兼容性",
         "pct_configuration" : "配置",
         "pct_container_images" : "容器镜像",
         "pct_container_network" : "网络",
         "pct_container_storage" : "容器存储",
         "pct_cpu" : "CPU",
         "pct_general" : "常规设置",
         "pct_memory" : "内存",
         "pct_migration" : "迁移",
         "pct_mount_points" : "挂载点",
         "pct_options" : "选项",
         "pct_settings" : "容器设置",
         "pct_snapshots" : "快照",
         "pct_startup_and_shutdown" : "容器的自动启动和关闭",
         "pct_supported_distributions" : "支持的发行版",
         "proxmox_node_management" : "Proxmox 节点管理",
         "pve_ceph_device_classes" : "Ceph CRUSH 与设备类别",
         "pve_ceph_ec_pools" : "纠删码 Pool",
         "pve_ceph_install" : "通过 CLI 安装 Ceph 软件包",
         "pve_ceph_install_wizard" : "Ceph 初始安装与配置",
         "pve_ceph_manager" : "Ceph Manager",
         "pve_ceph_mon_and_ts" : "Ceph 监控与故障排查",
         "pve_ceph_monitors" : "Ceph Monitor",
         "pve_ceph_osd_create" : "创建 OSD",
         "pve_ceph_osd_destroy" : "销毁 OSD",
         "pve_ceph_osd_replace" : "替换 OSD",
         "pve_ceph_osds" : "Ceph OSDs",
         "pve_ceph_pools" : "Ceph Pools",
         "pve_ceph_ts" : "故障排查",
         "pve_firewall_cluster_wide_setup" : "集群范围设置",
         "pve_firewall_default_rules" : "默认防火墙规则",
         "pve_firewall_host_specific_configuration" : "主机专用配置",
         "pve_firewall_ip_aliases" : "IP 别名",
         "pve_firewall_ip_sets" : "IP 集",
         "pve_firewall_ipfilter_section" : "标准 IP 集 `ipfilter-net*`",
         "pve_firewall_nft" : "nftables",
         "pve_firewall_nft_helpful_commands" : "常用命令",
         "pve_firewall_security_groups" : "安全组",
         "pve_firewall_services_commands" : "服务和命令",
         "pve_firewall_vm_container_configuration" : "VM/容器配置",
         "pve_firewall_vnet_configuration" : "VNet 配置",
         "pveceph_create_mgr" : "创建 Manager",
         "pveceph_create_mon" : "创建 Monitor",
         "pveceph_destroy_mgr" : "销毁 Manager",
         "pveceph_destroy_mon" : "销毁 Monitor",
         "pveceph_fs" : "CephFS",
         "pveceph_fs_create" : "创建 CephFS",
         "pveceph_fs_mds" : "Metadata Server（MDS）",
         "pveceph_scrub" : "Scrub & Deep Scrub",
         "pveceph_shutdown" : "关闭 Proxmox VE + Ceph HCI 集群",
         "pvecm_adding_nodes_with_separated_cluster_network" : "使用独立集群网络添加节点",
         "pvecm_cluster_create_via_cli" : "通过命令行创建",
         "pvecm_cluster_create_via_gui" : "通过 Web GUI 创建",
         "pvecm_cluster_network" : "集群网络",
         "pvecm_cluster_network_requirements" : "网络要求",
         "pvecm_corosync_addresses" : "Corosync 地址",
         "pvecm_corosync_conf_glossary" : "Corosync 配置术语表",
         "pvecm_create_cluster" : "创建集群",
         "pvecm_edit_corosync_conf" : "编辑 corosync.conf",
         "pvecm_join_node_to_cluster" : "向集群添加节点",
         "pvecm_migration_network" : "迁移网络",
         "pvecm_next_id_range" : "客户机 VMID 自动选择",
         "pvecm_qdevice_status_flags" : "QDevice 状态标志",
         "pvecm_redundancy" : "Corosync 冗余",
         "pvecm_separate_cluster_net_after_creation" : "在创建集群后分离",
         "pvecm_separate_node_without_reinstall" : "不重装而分离节点",
         "pveproxy_custom_tls_cert" : "替代 HTTPS 证书",
         "pveproxy_host_acls" : "基于主机的访问控制",
         "pveproxy_listening_address" : "监听 IP 地址",
         "pveproxy_real_ip" : "真实客户端 IP 日志记录",
         "pveproxy_response_compression" : "响应压缩",
         "pvesdn_config_common_options" : "通用选项",
         "pvesdn_config_controllers" : "控制器",
         "pvesdn_config_dhcp" : "DHCP",
         "pvesdn_config_dns" : "DNS",
         "pvesdn_config_ipam" : "IPAM",
         "pvesdn_config_subnet" : "子网",
         "pvesdn_config_vnet" : "VNet",
         "pvesdn_config_zone" : "区域",
         "pvesdn_controller_plugin_BGP" : "BGP Controller",
         "pvesdn_controller_plugin_ISIS" : "ISIS Controller",
         "pvesdn_controller_plugin_evpn" : "EVPN Controller",
         "pvesdn_dns_plugin_powerdns" : "PowerDNS Plugin",
         "pvesdn_firewall_integration" : "防火墙集成",
         "pvesdn_install_dhcp_ipam" : "DHCP IPAM",
         "pvesdn_install_frrouting" : "FRRouting",
         "pvesdn_installation" : "安装",
         "pvesdn_ipam_plugin_netbox" : "NetBox IPAM Plugin",
         "pvesdn_ipam_plugin_phpipam" : "phpIPAM Plugin",
         "pvesdn_ipam_plugin_pveipam" : "PVE IPAM Plugin",
         "pvesdn_main_configuration" : "配置概览",
         "pvesdn_notes" : "说明",
         "pvesdn_overview" : "简介",
         "pvesdn_setup_example_evpn" : "EVPN 设置示例",
         "pvesdn_setup_example_nat" : "源 NAT 示例",
         "pvesdn_setup_example_qinq" : "QinQ 设置示例",
         "pvesdn_setup_example_simple" : "Simple 区域示例",
         "pvesdn_setup_example_vlan" : "VLAN 设置示例",
         "pvesdn_setup_example_vxlan" : "VXLAN 设置示例",
         "pvesdn_setup_examples" : "示例",
         "pvesdn_support_status" : "支持状态",
         "pvesdn_tech_and_config_overview" : "技术与配置",
         "pvesdn_zone_plugin_evpn" : "EVPN 区域",
         "pvesdn_zone_plugin_qinq" : "QinQ 区域",
         "pvesdn_zone_plugin_simple" : "Simple 区域",
         "pvesdn_zone_plugin_vlan" : "VLAN 区域",
         "pvesdn_zone_plugin_vxlan" : "VXLAN 区域",
         "pvesr_schedule_format_examples" : "示例：",
         "pvesr_schedule_time_format" : "调度格式",
         "pveum_authentication_realms" : "认证域",
         "pveum_configure_u2f" : "服务器端 U2F 配置",
         "pveum_configure_webauthn" : "服务器端 Webauthn 配置",
         "pveum_groups" : "组",
         "pveum_ldap_reserved_characters" : "保留字符",
         "pveum_ldap_sync" : "同步基于 LDAP 的域",
         "pveum_ldap_sync_options" : "同步选项",
         "pveum_openid" : "OpenID Connect",
         "pveum_permission_management" : "权限管理",
         "pveum_pools" : "池",
         "pveum_resource_pools" : "资源池",
         "pveum_roles" : "角色",
         "pveum_tfa_auth" : "双因素认证",
         "pveum_tfa_lockout" : "双因素认证限制与锁定",
         "pveum_tokens" : "API token",
         "pveum_user_configured_totp" : "用户配置的 TOTP 认证",
         "pveum_user_configured_u2f" : "用户启用 U2F",
         "pveum_users" : "用户",
         "qm_audio_device" : "音频设备",
         "qm_bios_and_uefi" : "BIOS 和 UEFI",
         "qm_bootorder" : "设备启动顺序",
         "qm_cloud_init" : "Cloud-Init 支持",
         "qm_configuration" : "配置",
         "qm_copy_and_clone" : "复制和克隆",
         "qm_cpu" : "CPU",
         "qm_cpu_resource_limits" : "资源限制",
         "qm_display" : "显示",
         "qm_general_settings" : "常规设置",
         "qm_hard_disk" : "硬盘",
         "qm_hard_disk_bus" : "总线/控制器",
         "qm_hard_disk_cache" : "缓存模式",
         "qm_hard_disk_discard" : "Trim/Discard",
         "qm_hard_disk_formats" : "镜像格式",
         "qm_hard_disk_iothread" : "IO Thread",
         "qm_hibernate" : "休眠",
         "qm_import_virtual_machines" : "导入虚拟机",
         "qm_ivshmem" : "VM 间共享内存",
         "qm_meltdown_spectre" : "Meltdown / Spectre 相关 CPU flags",
         "qm_memory" : "内存",
         "qm_memory_encryption" : "内存加密",
         "qm_memory_encryption_sev" : "AMD SEV",
         "qm_migration" : "迁移",
         "qm_network_device" : "网络设备",
         "qm_options" : "选项",
         "qm_os_settings" : "操作系统设置",
         "qm_pci_passthrough" : "PCI(e) 直通",
         "qm_pci_passthrough_vm_config" : "虚拟机配置",
         "qm_pci_viommu" : "vIOMMU（模拟 IOMMU）",
         "qm_qemu_agent" : "QEMU Guest Agent",
         "qm_qga_auto_trim" : "使用 QGA 自动 TRIM",
         "qm_qga_enable" : "启用 Guest Agent 通信",
         "qm_qga_fsfreeze" : "备份时文件系统 Freeze 和 Thaw",
         "qm_snapshots" : "快照",
         "qm_spice_enhancements" : "SPICE 增强",
         "qm_startup_and_shutdown" : "虚拟机自动启动和关闭",
         "qm_system_settings" : "系统设置",
         "qm_templates" : "虚拟机模板",
         "qm_tpm" : "可信平台模块 (TPM)",
         "qm_usb_passthrough" : "USB 直通",
         "qm_virtio_rng" : "VirtIO RNG",
         "qm_virtiofs" : "Virtiofs",
         "qm_virtual_machines_settings" : "虚拟机设置",
         "repos_secure_rpm" : "软件包签名验证",
         "resource_mapping" : "资源映射",
         "storage_btrfs" : "BTRFS 后端",
         "storage_cephfs" : "Ceph 文件系统（CephFS）",
         "storage_cephfs_config" : "配置",
         "storage_cifs" : "CIFS 后端",
         "storage_directory" : "目录后端",
         "storage_glusterfs" : "GlusterFS 后端",
         "storage_iscsidirect" : "用户态 iSCSI 后端",
         "storage_lvm" : "LVM 后端",
         "storage_lvmthin" : "LVM thin 后端",
         "storage_nfs" : "NFS 后端",
         "storage_open_iscsi" : "Open-iSCSI initiator",
         "storage_pbs" : "Proxmox Backup Server",
         "storage_pbs_encryption" : "加密",
         "storage_rbd_config" : "配置",
         "storage_zfs" : "ZFS over iSCSI 后端",
         "storage_zfspool" : "本地 ZFS Pool 后端",
         "sysadmin_certificate_management" : "证书管理",
         "sysadmin_certs_acme_account" : "ACME 账户",
         "sysadmin_certs_acme_automatic_renewal" : "ACME 证书自动续期",
         "sysadmin_certs_acme_dns_api_config" : "配置用于验证的 ACME DNS API",
         "sysadmin_certs_acme_dns_challenge" : "ACME DNS API 挑战插件",
         "sysadmin_certs_acme_http_challenge" : "ACME HTTP 挑战插件",
         "sysadmin_certs_acme_plugins" : "ACME 插件",
         "sysadmin_certs_acme_switch_from_staging" : "示例：从 `staging` 切换到常规 ACME 目录",
         "sysadmin_certs_api_gui" : "API 和 Web GUI 证书",
         "sysadmin_certs_get_trusted_acme_cert" : "通过 Let's Encrypt (ACME) 获取可信证书",
         "sysadmin_certs_upload_custom" : "上传自定义证书",
         "sysadmin_firmware_cpu" : "CPU 微码更新",
         "sysadmin_firmware_persistent" : "持久化固件",
         "sysadmin_firmware_runtime_files" : "运行时固件文件",
         "sysadmin_firmware_troubleshooting" : "故障排查",
         "sysadmin_network_bond" : "Linux Bond",
         "sysadmin_network_configuration" : "网络配置",
         "sysadmin_network_masquerading" : "使用 `iptables` 的 Masquerading（NAT）",
         "sysadmin_network_routed" : "路由配置",
         "sysadmin_network_vlan" : "VLAN 802.1Q",
         "sysadmin_package_repositories" : "软件包仓库",
         "sysadmin_package_repositories_ceph" : "Ceph 软件包仓库",
         "sysadmin_pxvirt_repo" : "PXVIRT 仓库",
         "sysadmin_zfs_add_cache_and_log_dev" : "向现有 pool 添加缓存和日志",
         "sysadmin_zfs_change_failed_dev" : "更换故障设备",
         "sysadmin_zfs_create_new_zpool" : "创建新的 zpool",
         "sysadmin_zfs_create_new_zpool_raid0" : "创建带 RAID-0 的新 pool",
         "sysadmin_zfs_create_new_zpool_raid1" : "创建带 RAID-1 的新 pool",
         "sysadmin_zfs_create_new_zpool_raid10" : "创建带 RAID-10 的新 pool",
         "sysadmin_zfs_create_new_zpool_raidz1" : "创建带 RAIDZ-1 的新 pool",
         "sysadmin_zfs_create_new_zpool_with_cache" : "创建带缓存（L2ARC）的新 pool",
         "sysadmin_zfs_create_new_zpool_with_log" : "创建带日志（ZIL）的新 pool",
         "sysadmin_zfs_features" : "ZFS Pool 特性",
         "sysadmin_zfs_limit_memory_usage" : "限制 ZFS 内存使用",
         "sysadmin_zfs_raid_considerations" : "ZFS RAID 级别考量",
         "sysadmin_zfs_raid_performance" : "性能",
         "sysadmin_zfs_raid_size_space_usage_redundancy" : "大小、空间使用和冗余",
         "sysadmin_zfs_special_device" : "ZFS Special Device",
         "sysboot" : "主机引导加载器",
         "sysboot_determine_bootloader_used" : "确定正在使用的引导加载器",
         "sysboot_edit_kernel_cmdline" : "编辑内核命令行",
         "sysboot_grub" : "GRUB",
         "sysboot_installer_part_scheme" : "安装程序使用的分区方案",
         "sysboot_kernel_pin" : "为下次启动覆盖内核版本",
         "sysboot_proxmox_boot_tool" : "使用 `proxmox-boot-tool` 同步 ESP 内容",
         "sysboot_secure_boot" : "Secure Boot",
         "sysboot_systemd_boot" : "Systemd-boot",
         "sysboot_systemd_boot_config" : "配置",
         "system_software_updates" : "系统软件更新",
         "systemd_network_interface_names" : "Systemd 网络接口名称",
         "translation" : "翻译 Proxmox VE",
         "udp" : "   batch-timeout = \"1s\"",
         "user-realms-ad" : "Microsoft Active Directory（AD）",
         "user-realms-ldap" : "LDAP",
         "user-realms-pam" : "Linux PAM 标准认证",
         "user-realms-pve" : "Proxmox VE Authentication Server",
         "user_tfa_setup_recovery_keys" : "Recovery Keys",
         "user_tfa_setup_totp" : "TOTP",
         "user_tfa_setup_webauthn" : "WebAuthn",
         "vzdump_configuration" : "配置",
         "vzdump_jobs" : "备份作业",
         "vzdump_notes" : "备份备注",
         "vzdump_protection" : "备份保护",
         "vzdump_restore" : "还原",
         "vzdump_retention" : "备份保留",
         "zfs_compression" : "ZFS 中的压缩",
         "zfs_encryption" : "加密的 ZFS Dataset",
         "zfs_swap" : "ZFS 上的 SWAP"
      }
   },
   "titles" : {
      "default" : {
         "GFDL.adoc" : "GNU 自由文档许可证",
         "README.adoc" : "Proxmox VE 文档",
         "calendar-events.adoc" : "调度格式",
         "certificate-management.adoc" : "证书管理",
         "cli-general.adoc" : "常规",
         "configuration-files.adoc" : "常规",
         "cpu-models.conf.adoc" : "自定义 CPU 型号配置",
         "datacenter.cfg.adoc" : "数据中心配置",
         "firmware-updates.adoc" : "固件更新",
         "getting-help.adoc" : "获取帮助",
         "ha-manager.adoc" : "高可用性",
         "howto-improve-pve-docs.adoc" : "改进 Proxmox VE 文档",
         "hyper-converged-infrastructure.adoc" : "超融合基础设施",
         "index.adoc" : "Proxmox VE 文档索引",
         "kernel-samepage-merging.adoc" : "Kernel Samepage Merging (KSM)",
         "local-btrfs.adoc" : "BTRFS",
         "local-lvm.adoc" : "逻辑卷管理器 (LVM)",
         "local-zfs.adoc" : "Linux 上的 ZFS",
         "markdown-primer.adoc" : "Markdown 入门",
         "notifications.adoc" : "通知",
         "output-format.adoc" : "输出格式选项 `[FORMAT_OPTIONS]`",
         "pct.adoc" : "Proxmox 容器工具包",
         "pct.conf.adoc" : "容器配置",
         "pmxcfs.adoc" : "Proxmox Cluster File System (pmxcfs)",
         "pve-admin-guide.adoc" : "Pxvirt 管理指南",
         "pve-bibliography.adoc" : "参考文献",
         "pve-copyright.adoc" : "版权和免责声明",
         "pve-disk-health-monitoring.adoc" : "磁盘健康监控",
         "pve-external-metric-server.adoc" : "外部指标服务器",
         "pve-faq.adoc" : "常见问题",
         "pve-firewall.adoc" : "Proxmox VE 防火墙",
         "pve-gui.adoc" : "图形用户界面",
         "pve-ha-crm.adoc" : "集群资源管理器守护进程",
         "pve-ha-lrm.adoc" : "本地资源管理器守护进程",
         "pve-installation-media.adoc" : "准备安装介质",
         "pve-installation.adoc" : "安装 Proxmox VE",
         "pve-intro.adoc" : "简介",
         "pve-network.adoc" : "网络配置",
         "pve-package-repos.adoc" : "软件包仓库",
         "pve-storage-btrfs.adoc" : "BTRFS 后端",
         "pve-storage-cephfs.adoc" : "Ceph 文件系统（CephFS）",
         "pve-storage-cifs.adoc" : "CIFS 后端",
         "pve-storage-dir.adoc" : "目录后端",
         "pve-storage-glusterfs.adoc" : "GlusterFS 后端",
         "pve-storage-iscsi.adoc" : "Open-iSCSI initiator",
         "pve-storage-iscsidirect.adoc" : "用户态 iSCSI 后端",
         "pve-storage-lvm.adoc" : "LVM 后端",
         "pve-storage-lvmthin.adoc" : "LVM thin 后端",
         "pve-storage-nfs.adoc" : "NFS 后端",
         "pve-storage-pbs.adoc" : "Proxmox Backup Server",
         "pve-storage-rbd.adoc" : "Ceph RADOS 块设备（RBD）",
         "pve-storage-zfs.adoc" : "ZFS over iSCSI 后端",
         "pve-storage-zfspool.adoc" : "本地 ZFS Pool 后端",
         "pve-system-requirements.adoc" : "系统要求",
         "pveam.adoc" : "容器镜像",
         "pvebcache.adoc" : "pvebcache - bcache 管理工具",
         "pveceph.adoc" : "部署超融合 Ceph 集群",
         "pvecm.adoc" : "集群管理器",
         "pvedaemon.adoc" : "pvedaemon - Proxmox VE API 守护进程",
         "pvenode.adoc" : "Proxmox 节点管理",
         "pveperf.adoc" : "pveperf - Proxmox VE 基准测试脚本",
         "pveproxy.adoc" : "pveproxy - Proxmox VE API 代理守护进程",
         "pvescheduler.adoc" : "pvescheduler - Proxmox VE 调度器守护进程",
         "pvesdn.adoc" : "软件定义网络",
         "pvesh.adoc" : "Proxmox VE API 的 Shell 接口",
         "pvesm.adoc" : "Proxmox VE 存储",
         "pvesr.adoc" : "存储复制",
         "pvestatd.adoc" : "pvestatd - Proxmox VE 状态守护进程",
         "pvesubscription.adoc" : "pvesubscription - 订阅管理",
         "pveum.adoc" : "用户管理",
         "qm-cloud-init.adoc" : "Cloud-Init 支持",
         "qm-pci-passthrough.adoc" : "PCI(e) 直通",
         "qm-vcpu-list.adoc" : "简介",
         "qm.adoc" : "QEMU/KVM 虚拟机",
         "qm.conf.adoc" : "虚拟机配置",
         "qmeventd.adoc" : "PVE QEMU 事件守护进程",
         "qmrestore.adoc" : "还原虚拟机",
         "spiceproxy.adoc" : "spiceproxy - SPICE 代理服务",
         "sysadmin.adoc" : "主机系统管理",
         "system-booting.adoc" : "主机引导加载器",
         "system-software-updates.adoc" : "系统软件更新",
         "system-timesync.adoc" : "时间同步",
         "translation.adoc" : "翻译 Proxmox VE",
         "vxlan-and-evpn.adoc" : "使用非 VLAN 感知 Linux 网桥的 VXLAN 二层网络",
         "vzdump.adoc" : "备份与还原"
      },
      "manvolnum" : {
         "GFDL.adoc" : "GNU 自由文档许可证",
         "README.adoc" : "Proxmox VE 文档",
         "calendar-events.adoc" : "调度格式",
         "certificate-management.adoc" : "证书管理",
         "cli-general.adoc" : "常规",
         "configuration-files.adoc" : "常规",
         "cpu-models.conf.adoc" : "cpu-models.conf(5)",
         "datacenter.cfg.adoc" : "datacenter.cfg(5)",
         "firmware-updates.adoc" : "固件更新",
         "getting-help.adoc" : "获取帮助",
         "ha-manager.adoc" : "ha-manager(1)",
         "howto-improve-pve-docs.adoc" : "改进 Proxmox VE 文档",
         "hyper-converged-infrastructure.adoc" : "超融合基础设施",
         "index.adoc" : "Proxmox VE 文档索引",
         "kernel-samepage-merging.adoc" : "Kernel Samepage Merging (KSM)",
         "local-btrfs.adoc" : "BTRFS",
         "local-lvm.adoc" : "逻辑卷管理器 (LVM)",
         "local-zfs.adoc" : "Linux 上的 ZFS",
         "markdown-primer.adoc" : "Markdown 入门",
         "notifications.adoc" : "通知",
         "output-format.adoc" : "FORMAT_OPTIONS",
         "pct.adoc" : "pct(1)",
         "pct.conf.adoc" : "pct.conf(5)",
         "pmxcfs.adoc" : "pmxcfs(8)",
         "pve-admin-guide.adoc" : "Pxvirt 管理指南",
         "pve-bibliography.adoc" : "参考文献",
         "pve-copyright.adoc" : "版权和免责声明",
         "pve-disk-health-monitoring.adoc" : "磁盘健康监控",
         "pve-external-metric-server.adoc" : "外部指标服务器",
         "pve-faq.adoc" : "常见问题",
         "pve-firewall.adoc" : "pve-firewall(8)",
         "pve-gui.adoc" : "图形用户界面",
         "pve-ha-crm.adoc" : "pve-ha-crm(8)",
         "pve-ha-lrm.adoc" : "pve-ha-lrm(8)",
         "pve-installation-media.adoc" : "准备安装介质",
         "pve-installation.adoc" : "安装 Proxmox VE",
         "pve-intro.adoc" : "简介",
         "pve-network.adoc" : "网络配置",
         "pve-package-repos.adoc" : "软件包仓库",
         "pve-storage-btrfs.adoc" : "BTRFS 后端",
         "pve-storage-cephfs.adoc" : "Ceph 文件系统（CephFS）",
         "pve-storage-cifs.adoc" : "CIFS 后端",
         "pve-storage-dir.adoc" : "目录后端",
         "pve-storage-glusterfs.adoc" : "GlusterFS 后端",
         "pve-storage-iscsi.adoc" : "Open-iSCSI initiator",
         "pve-storage-iscsidirect.adoc" : "用户态 iSCSI 后端",
         "pve-storage-lvm.adoc" : "LVM 后端",
         "pve-storage-lvmthin.adoc" : "LVM thin 后端",
         "pve-storage-nfs.adoc" : "NFS 后端",
         "pve-storage-pbs.adoc" : "Proxmox Backup Server",
         "pve-storage-rbd.adoc" : "Ceph RADOS 块设备（RBD）",
         "pve-storage-zfs.adoc" : "ZFS over iSCSI 后端",
         "pve-storage-zfspool.adoc" : "本地 ZFS Pool 后端",
         "pve-system-requirements.adoc" : "系统要求",
         "pveam.adoc" : "pveam(1)",
         "pvebcache.adoc" : "pvebcache(1)",
         "pveceph.adoc" : "pveceph(1)",
         "pvecm.adoc" : "pvecm(1)",
         "pvedaemon.adoc" : "pvedaemon(8)",
         "pvenode.adoc" : "pvenode(1)",
         "pveperf.adoc" : "pveperf(1)",
         "pveproxy.adoc" : "pveproxy(8)",
         "pvescheduler.adoc" : "pvescheduler(8)",
         "pvesdn.adoc" : "软件定义网络",
         "pvesh.adoc" : "pvesh(1)",
         "pvesm.adoc" : "pvesm(1)",
         "pvesr.adoc" : "pvesr(1)",
         "pvestatd.adoc" : "pvestatd(8)",
         "pvesubscription.adoc" : "pvesubscription(1)",
         "pveum.adoc" : "pveum(1)",
         "qm-cloud-init.adoc" : "Cloud-Init 支持",
         "qm-pci-passthrough.adoc" : "PCI(e) 直通",
         "qm-vcpu-list.adoc" : "简介",
         "qm.adoc" : "qm(1)",
         "qm.conf.adoc" : "qm.conf(5)",
         "qmeventd.adoc" : "qmeventd(8)",
         "qmrestore.adoc" : "qmrestore(1)",
         "spiceproxy.adoc" : "spiceproxy(8)",
         "sysadmin.adoc" : "主机系统管理",
         "system-booting.adoc" : "主机引导加载器",
         "system-software-updates.adoc" : "系统软件更新",
         "system-timesync.adoc" : "时间同步",
         "translation.adoc" : "翻译 Proxmox VE",
         "vxlan-and-evpn.adoc" : "使用非 VLAN 感知 Linux 网桥的 VXLAN 二层网络",
         "vzdump.adoc" : "vzdump(1)"
      },
      "wiki" : {
         "GFDL.adoc" : "GNU 自由文档许可证",
         "README.adoc" : "Proxmox VE 文档",
         "calendar-events.adoc" : "日历事件",
         "certificate-management.adoc" : "证书管理",
         "cli-general.adoc" : "常规",
         "configuration-files.adoc" : "常规",
         "cpu-models.conf.adoc" : "Manual: cpu-models.conf",
         "datacenter.cfg.adoc" : "Manual: datacenter.cfg",
         "firmware-updates.adoc" : "固件更新",
         "getting-help.adoc" : "获取帮助",
         "ha-manager.adoc" : "高可用性",
         "howto-improve-pve-docs.adoc" : "改进 Proxmox VE 文档",
         "hyper-converged-infrastructure.adoc" : "超融合基础设施",
         "index.adoc" : "Proxmox VE 文档索引",
         "kernel-samepage-merging.adoc" : "Kernel Samepage Merging (KSM)",
         "local-btrfs.adoc" : "BTRFS",
         "local-lvm.adoc" : "逻辑卷管理器 (LVM)",
         "local-zfs.adoc" : "Linux 上的 ZFS",
         "markdown-primer.adoc" : "Markdown 入门",
         "notifications.adoc" : "通知",
         "output-format.adoc" : "输出格式选项 `[FORMAT_OPTIONS]`",
         "pct.adoc" : "Linux Container",
         "pct.conf.adoc" : "Manual: pct.conf",
         "pmxcfs.adoc" : "Proxmox Cluster File System (pmxcfs)",
         "pve-admin-guide.adoc" : "Pxvirt 管理指南",
         "pve-bibliography.adoc" : "参考文献",
         "pve-copyright.adoc" : "版权和免责声明",
         "pve-disk-health-monitoring.adoc" : "磁盘健康监控",
         "pve-external-metric-server.adoc" : "外部指标服务器",
         "pve-faq.adoc" : "FAQ",
         "pve-firewall.adoc" : "Firewall",
         "pve-gui.adoc" : "图形用户界面",
         "pve-ha-crm.adoc" : "集群资源管理器守护进程",
         "pve-ha-lrm.adoc" : "本地资源管理器守护进程",
         "pve-installation-media.adoc" : "准备安装介质",
         "pve-installation.adoc" : "安装",
         "pve-intro.adoc" : "简介",
         "pve-network.adoc" : "网络配置",
         "pve-package-repos.adoc" : "软件包仓库",
         "pve-storage-btrfs.adoc" : "Storage: BTRFS",
         "pve-storage-cephfs.adoc" : "Storage: CephFS",
         "pve-storage-cifs.adoc" : "Storage: CIFS",
         "pve-storage-dir.adoc" : "Storage: Directory",
         "pve-storage-glusterfs.adoc" : "Storage: GlusterFS",
         "pve-storage-iscsi.adoc" : "存储：iSCSI",
         "pve-storage-iscsidirect.adoc" : "Storage: User Mode iSCSI",
         "pve-storage-lvm.adoc" : "Storage: LVM",
         "pve-storage-lvmthin.adoc" : "Storage: LVM Thin",
         "pve-storage-nfs.adoc" : "Storage: NFS",
         "pve-storage-pbs.adoc" : "存储：Proxmox Backup Server",
         "pve-storage-rbd.adoc" : "Storage: RBD",
         "pve-storage-zfs.adoc" : "Storage: ZFS over ISCSI",
         "pve-storage-zfspool.adoc" : "Storage: ZFS",
         "pve-system-requirements.adoc" : "系统要求",
         "pveam.adoc" : "容器镜像",
         "pvebcache.adoc" : "pvebcache - bcache 管理工具",
         "pveceph.adoc" : "部署超融合 Ceph 集群",
         "pvecm.adoc" : "集群管理器",
         "pvedaemon.adoc" : "pvedaemon - Proxmox VE API 守护进程",
         "pvenode.adoc" : "Proxmox 节点管理",
         "pveperf.adoc" : "pveperf - Proxmox VE 基准测试脚本",
         "pveproxy.adoc" : "pveproxy - Proxmox VE API 代理守护进程",
         "pvescheduler.adoc" : "pvescheduler - Proxmox VE 调度器守护进程",
         "pvesdn.adoc" : "软件定义网络",
         "pvesh.adoc" : "Proxmox VE API 的 Shell 接口",
         "pvesm.adoc" : "Storage",
         "pvesr.adoc" : "存储复制",
         "pvestatd.adoc" : "pvestatd - Proxmox VE 状态守护进程",
         "pvesubscription.adoc" : "pvesubscription - 订阅管理",
         "pveum.adoc" : "用户管理",
         "qm-cloud-init.adoc" : "Cloud-Init 支持",
         "qm-pci-passthrough.adoc" : "PCI(e) 直通",
         "qm-vcpu-list.adoc" : "简介",
         "qm.adoc" : "QEMU/KVM 虚拟机",
         "qm.conf.adoc" : "Manual: qm.conf",
         "qmeventd.adoc" : "PVE QEMU 事件守护进程",
         "qmrestore.adoc" : "还原虚拟机",
         "spiceproxy.adoc" : "spiceproxy - SPICE 代理服务",
         "sysadmin.adoc" : "主机系统管理",
         "system-booting.adoc" : "主机引导加载器",
         "system-software-updates.adoc" : "系统软件更新",
         "system-timesync.adoc" : "时间同步",
         "translation.adoc" : "翻译 Proxmox VE",
         "vxlan-and-evpn.adoc" : "使用非 VLAN 感知 Linux 网桥的 VXLAN 二层网络",
         "vzdump.adoc" : "备份与还原"
      }
   },
   "toplevel" : {
      "default" : {
         "ha-manager.adoc" : 1,
         "notifications.adoc" : 1,
         "pct.adoc" : 1,
         "pmxcfs.adoc" : 1,
         "pve-admin-guide.adoc" : 1,
         "pve-bibliography.adoc" : 1,
         "pve-faq.adoc" : 1,
         "pve-firewall.adoc" : 1,
         "pve-gui.adoc" : 1,
         "pve-installation.adoc" : 1,
         "pvebcache.adoc" : 1,
         "pveceph.adoc" : 1,
         "pvecm.adoc" : 1,
         "pvesdn.adoc" : 1,
         "pvesh.adoc" : 1,
         "pvesm.adoc" : 1,
         "pvesr.adoc" : 1,
         "pveum.adoc" : 1,
         "qm.adoc" : 1,
         "qmeventd.adoc" : 1,
         "sysadmin.adoc" : 1,
         "vzdump.adoc" : 1
      },
      "manvolnum" : {
         "cpu-models.conf.adoc" : 1,
         "datacenter.cfg.adoc" : 1,
         "ha-manager.adoc" : 1,
         "pct.adoc" : 1,
         "pct.conf.adoc" : 1,
         "pmxcfs.adoc" : 1,
         "pve-firewall.adoc" : 1,
         "pve-ha-crm.adoc" : 1,
         "pve-ha-lrm.adoc" : 1,
         "pveam.adoc" : 1,
         "pvebcache.adoc" : 1,
         "pveceph.adoc" : 1,
         "pvecm.adoc" : 1,
         "pvedaemon.adoc" : 1,
         "pvenode.adoc" : 1,
         "pveperf.adoc" : 1,
         "pveproxy.adoc" : 1,
         "pvescheduler.adoc" : 1,
         "pvesh.adoc" : 1,
         "pvesm.adoc" : 1,
         "pvesr.adoc" : 1,
         "pvestatd.adoc" : 1,
         "pvesubscription.adoc" : 1,
         "pveum.adoc" : 1,
         "qm.adoc" : 1,
         "qm.conf.adoc" : 1,
         "qmeventd.adoc" : 1,
         "qmrestore.adoc" : 1,
         "spiceproxy.adoc" : 1,
         "vzdump.adoc" : 1
      },
      "wiki" : {
         "calendar-events.adoc" : 1,
         "certificate-management.adoc" : 1,
         "cpu-models.conf.adoc" : 1,
         "datacenter.cfg.adoc" : 1,
         "firmware-updates.adoc" : 1,
         "getting-help.adoc" : 1,
         "ha-manager.adoc" : 1,
         "howto-improve-pve-docs.adoc" : 1,
         "hyper-converged-infrastructure.adoc" : 1,
         "kernel-samepage-merging.adoc" : 1,
         "local-btrfs.adoc" : 1,
         "local-lvm.adoc" : 1,
         "local-zfs.adoc" : 1,
         "notifications.adoc" : 1,
         "pct.adoc" : 1,
         "pct.conf.adoc" : 1,
         "pmxcfs.adoc" : 1,
         "pve-bibliography.adoc" : 1,
         "pve-disk-health-monitoring.adoc" : 1,
         "pve-external-metric-server.adoc" : 1,
         "pve-faq.adoc" : 1,
         "pve-firewall.adoc" : 1,
         "pve-gui.adoc" : 1,
         "pve-installation-media.adoc" : 1,
         "pve-installation.adoc" : 1,
         "pve-network.adoc" : 1,
         "pve-package-repos.adoc" : 1,
         "pve-storage-btrfs.adoc" : 1,
         "pve-storage-cephfs.adoc" : 1,
         "pve-storage-cifs.adoc" : 1,
         "pve-storage-dir.adoc" : 1,
         "pve-storage-glusterfs.adoc" : 1,
         "pve-storage-iscsi.adoc" : 1,
         "pve-storage-iscsidirect.adoc" : 1,
         "pve-storage-lvm.adoc" : 1,
         "pve-storage-lvmthin.adoc" : 1,
         "pve-storage-nfs.adoc" : 1,
         "pve-storage-pbs.adoc" : 1,
         "pve-storage-rbd.adoc" : 1,
         "pve-storage-zfs.adoc" : 1,
         "pve-storage-zfspool.adoc" : 1,
         "pve-system-requirements.adoc" : 1,
         "pvebcache.adoc" : 1,
         "pveceph.adoc" : 1,
         "pvecm.adoc" : 1,
         "pvenode.adoc" : 1,
         "pvesdn.adoc" : 1,
         "pvesh.adoc" : 1,
         "pvesm.adoc" : 1,
         "pvesr.adoc" : 1,
         "pveum.adoc" : 1,
         "qm-cloud-init.adoc" : 1,
         "qm-pci-passthrough.adoc" : 1,
         "qm.adoc" : 1,
         "qm.conf.adoc" : 1,
         "qmeventd.adoc" : 1,
         "sysadmin.adoc" : 1,
         "system-booting.adoc" : 1,
         "system-software-updates.adoc" : 1,
         "system-timesync.adoc" : 1,
         "translation.adoc" : 1,
         "vzdump.adoc" : 1
      }
   }
}
