#!/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 = '9.0.9';

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 mismatch (${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 "unsupported 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 "unsupported 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, $allow_missing) = @_;

    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};
            if (!(defined($link) || defined($online_help_links->{$blockid}))) {
                die "undefined blockid '$blockid' ($filename, line $.)\n" if !$allow_missing;
                warn "ignoring undefined blockid '$blockid' ($filename, line $.)\n";
            }
            $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') {
    my $allow_missing = 0;
    GetOptions("verbose" => \$verbose, 'allow-missing' => \$allow_missing)
        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, $allow_missing);
        $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};

        if (!$res_data->{$blockid}) {
            die "internal error - no data for '$blockid'" if !$allow_missing;
            # generic fallback
            $res_data->{$blockid} = $online_help_links->{'pve_admin_guide'};
        }
    }

    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 "|Chapter\n";

    my $filelist = $fileinfo->{outfile}->{default};
    my $order = $fileinfo->{include_counter}->{default}->{'pve-admin-guide.adoc'};
    foreach my $sourcefile (
        sort { ($order->{$a} // 1e10) <=> ($order->{$b} // 1e10) } 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'";

        if (my $chapter_no = $order->{$sourcefile}) {
            $title = "${chapter_no}. ${title}";
        }
        print "|link:$target\[${title}\]\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 "2+|Name 3+|Title\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 "2+|link:$target.html\[${mantitle}\] 3+|$title\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",
         "_corosync_external_vote_support" : "pvecm.adoc",
         "_recommendations_for_a_healthy_ceph_cluster" : "pveceph.adoc",
         "_repository_management" : "pve-package-repos.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",
         "ceph_release_table" : "pve-package-repos.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_introduction" : "pve-intro.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_affinity_rules" : "ha-manager.adoc",
         "ha_manager_node_maintenance" : "ha-manager.adoc",
         "ha_manager_package_updates" : "ha-manager.adoc",
         "ha_manager_resource_affinity_rules" : "ha-manager.adoc",
         "ha_manager_resource_config" : "ha-manager.adoc",
         "ha_manager_resources" : "ha-manager.adoc",
         "ha_manager_rule_conflicts" : "ha-manager.adoc",
         "ha_manager_rules" : "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_configuration" : "pveceph.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_cluster_requirements" : "pvecm.adoc",
         "pvecm_corosync_addresses" : "pvecm.adoc",
         "pvecm_corosync_conf_glossary" : "pvecm.adoc",
         "pvecm_corosync_over_bonds" : "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",
         "pvedaemon_max_workers" : "pvedaemon.adoc",
         "pveproxy_custom_tls_cert" : "pveproxy.adoc",
         "pveproxy_host_acls" : "pveproxy.adoc",
         "pveproxy_listening_address" : "pveproxy.adoc",
         "pveproxy_max_workers" : "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_fabrics" : "pvesdn.adoc",
         "pvesdn_config_fabrics_ipv6" : "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_openfabric" : "pvesdn.adoc",
         "pvesdn_openfabric_fabric" : "pvesdn.adoc",
         "pvesdn_openfabric_node" : "pvesdn.adoc",
         "pvesdn_ospf" : "pvesdn.adoc",
         "pvesdn_ospf_fabric" : "pvesdn.adoc",
         "pvesdn_ospf_node" : "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",
         "pvesm_lvm_config" : "pve-storage-lvm.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_apt" : "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_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_apt_repo_formats" : "pve-package-repos.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_debian_firmware_repo" : "pve-package-repos.adoc",
         "sysadmin_enterprise_repo" : "pve-package-repos.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_no_subscription_repo" : "pve-package-repos.adoc",
         "sysadmin_package_repositories" : "pve-package-repos.adoc",
         "sysadmin_package_repositories_ceph" : "pve-package-repos.adoc",
         "sysadmin_test_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_extend_raidz" : "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",
         "_corosync_external_vote_support" : "pvecm.adoc",
         "_recommendations_for_a_healthy_ceph_cluster" : "pveceph.adoc",
         "_repository_management" : "pve-package-repos.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",
         "ceph_release_table" : "pve-package-repos.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_introduction" : "pve-intro.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_affinity_rules" : "ha-manager.adoc",
         "ha_manager_node_maintenance" : "ha-manager.adoc",
         "ha_manager_package_updates" : "ha-manager.adoc",
         "ha_manager_resource_affinity_rules" : "ha-manager.adoc",
         "ha_manager_resource_config" : "ha-manager.adoc",
         "ha_manager_resources" : "ha-manager.adoc",
         "ha_manager_rule_conflicts" : "ha-manager.adoc",
         "ha_manager_rules" : "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_configuration" : "pveceph.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_cluster_requirements" : "pvecm.adoc",
         "pvecm_corosync_addresses" : "pvecm.adoc",
         "pvecm_corosync_conf_glossary" : "pvecm.adoc",
         "pvecm_corosync_over_bonds" : "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",
         "pvedaemon_max_workers" : "pvedaemon.adoc",
         "pveproxy_custom_tls_cert" : "pveproxy.adoc",
         "pveproxy_host_acls" : "pveproxy.adoc",
         "pveproxy_listening_address" : "pveproxy.adoc",
         "pveproxy_max_workers" : "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_fabrics" : "pvesdn.adoc",
         "pvesdn_config_fabrics_ipv6" : "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_openfabric" : "pvesdn.adoc",
         "pvesdn_openfabric_fabric" : "pvesdn.adoc",
         "pvesdn_openfabric_node" : "pvesdn.adoc",
         "pvesdn_ospf" : "pvesdn.adoc",
         "pvesdn_ospf_fabric" : "pvesdn.adoc",
         "pvesdn_ospf_node" : "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",
         "pvesm_lvm_config" : "pve-storage-lvm.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_apt" : "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_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_apt_repo_formats" : "pve-package-repos.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_debian_firmware_repo" : "pve-package-repos.adoc",
         "sysadmin_enterprise_repo" : "pve-package-repos.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_no_subscription_repo" : "pve-package-repos.adoc",
         "sysadmin_package_repositories" : "pve-package-repos.adoc",
         "sysadmin_package_repositories_ceph" : "pve-package-repos.adoc",
         "sysadmin_test_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_extend_raidz" : "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",
         "_corosync_external_vote_support" : "pvecm.adoc",
         "_recommendations_for_a_healthy_ceph_cluster" : "pveceph.adoc",
         "_repository_management" : "pve-package-repos.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",
         "ceph_release_table" : "pve-package-repos.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_introduction" : "pve-intro.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_affinity_rules" : "ha-manager.adoc",
         "ha_manager_node_maintenance" : "ha-manager.adoc",
         "ha_manager_package_updates" : "ha-manager.adoc",
         "ha_manager_resource_affinity_rules" : "ha-manager.adoc",
         "ha_manager_resource_config" : "ha-manager.adoc",
         "ha_manager_resources" : "ha-manager.adoc",
         "ha_manager_rule_conflicts" : "ha-manager.adoc",
         "ha_manager_rules" : "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_configuration" : "pveceph.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_cluster_requirements" : "pvecm.adoc",
         "pvecm_corosync_addresses" : "pvecm.adoc",
         "pvecm_corosync_conf_glossary" : "pvecm.adoc",
         "pvecm_corosync_over_bonds" : "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",
         "pvedaemon_max_workers" : "pvedaemon.adoc",
         "pveproxy_custom_tls_cert" : "pveproxy.adoc",
         "pveproxy_host_acls" : "pveproxy.adoc",
         "pveproxy_listening_address" : "pveproxy.adoc",
         "pveproxy_max_workers" : "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_fabrics" : "pvesdn.adoc",
         "pvesdn_config_fabrics_ipv6" : "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_openfabric" : "pvesdn.adoc",
         "pvesdn_openfabric_fabric" : "pvesdn.adoc",
         "pvesdn_openfabric_node" : "pvesdn.adoc",
         "pvesdn_ospf" : "pvesdn.adoc",
         "pvesdn_ospf_fabric" : "pvesdn.adoc",
         "pvesdn_ospf_node" : "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",
         "pvesm_lvm_config" : "pve-storage-lvm.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_apt" : "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_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_apt_repo_formats" : "pve-package-repos.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_debian_firmware_repo" : "pve-package-repos.adoc",
         "sysadmin_enterprise_repo" : "pve-package-repos.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_no_subscription_repo" : "pve-package-repos.adoc",
         "sysadmin_package_repositories" : "pve-package-repos.adoc",
         "sysadmin_package_repositories_ceph" : "pve-package-repos.adoc",
         "sysadmin_test_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_extend_raidz" : "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",
         "_corosync_external_vote_support" : "link:/pve-docs/chapter-pvecm.html#_corosync_external_vote_support",
         "_recommendations_for_a_healthy_ceph_cluster" : "link:/pve-docs/chapter-pveceph.html#_recommendations_for_a_healthy_ceph_cluster",
         "_repository_management" : "link:/pve-docs/chapter-sysadmin.html#_repository_management",
         "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",
         "ceph_release_table" : "link:/pve-docs/chapter-sysadmin.html#ceph_release_table",
         "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/chapter-pve-intro.html#chapter_hyper_converged_infrastructure",
         "chapter_installation" : "link:/pve-docs/chapter-pve-installation.html#chapter_installation",
         "chapter_introduction" : "link:/pve-docs/chapter-pve-intro.html#chapter_introduction",
         "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/chapter-pve-intro.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_affinity_rules" : "link:/pve-docs/chapter-ha-manager.html#ha_manager_node_affinity_rules",
         "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_affinity_rules" : "link:/pve-docs/chapter-ha-manager.html#ha_manager_resource_affinity_rules",
         "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_rule_conflicts" : "link:/pve-docs/chapter-ha-manager.html#ha_manager_rule_conflicts",
         "ha_manager_rules" : "link:/pve-docs/chapter-ha-manager.html#ha_manager_rules",
         "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/chapter-pve-intro.html#howto_improve_pve_docs",
         "i18n_with_git" : "link:/pve-docs/chapter-pve-intro.html#i18n_with_git",
         "i18n_without_git" : "link:/pve-docs/chapter-pve-intro.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/chapter-pve-intro.html#intro_central_management",
         "intro_project_history" : "link:/pve-docs/chapter-pve-intro.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_configuration" : "link:/pve-docs/chapter-pveceph.html#pve_ceph_configuration",
         "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_cluster_requirements" : "link:/pve-docs/chapter-pvecm.html#pvecm_cluster_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_corosync_over_bonds" : "link:/pve-docs/chapter-pvecm.html#pvecm_corosync_over_bonds",
         "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",
         "pvedaemon_max_workers" : "link:/pve-docs/pve-admin-guide.html#pvedaemon_max_workers",
         "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_max_workers" : "link:/pve-docs/pve-admin-guide.html#pveproxy_max_workers",
         "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_fabrics" : "link:/pve-docs/chapter-pvesdn.html#pvesdn_config_fabrics",
         "pvesdn_config_fabrics_ipv6" : "link:/pve-docs/chapter-pvesdn.html#pvesdn_config_fabrics_ipv6",
         "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_openfabric" : "link:/pve-docs/chapter-pvesdn.html#pvesdn_openfabric",
         "pvesdn_openfabric_fabric" : "link:/pve-docs/chapter-pvesdn.html#pvesdn_openfabric_fabric",
         "pvesdn_openfabric_node" : "link:/pve-docs/chapter-pvesdn.html#pvesdn_openfabric_node",
         "pvesdn_ospf" : "link:/pve-docs/chapter-pvesdn.html#pvesdn_ospf",
         "pvesdn_ospf_fabric" : "link:/pve-docs/chapter-pvesdn.html#pvesdn_ospf_fabric",
         "pvesdn_ospf_node" : "link:/pve-docs/chapter-pvesdn.html#pvesdn_ospf_node",
         "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",
         "pvesm_lvm_config" : "link:/pve-docs/chapter-pvesm.html#pvesm_lvm_config",
         "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_apt" : "link:/pve-docs/chapter-sysadmin.html#repos_secure_apt",
         "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_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_apt_repo_formats" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_apt_repo_formats",
         "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_debian_firmware_repo" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_debian_firmware_repo",
         "sysadmin_enterprise_repo" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_enterprise_repo",
         "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_no_subscription_repo" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_no_subscription_repo",
         "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_test_repo" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_test_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_extend_raidz" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_zfs_extend_raidz",
         "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/chapter-pve-intro.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",
         "_corosync_external_vote_support" : "pvecm.adoc",
         "_recommendations_for_a_healthy_ceph_cluster" : "pveceph.adoc",
         "_repository_management" : "sysadmin.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",
         "ceph_release_table" : "sysadmin.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_introduction" : "pve-intro.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_affinity_rules" : "ha-manager.adoc",
         "ha_manager_node_maintenance" : "ha-manager.adoc",
         "ha_manager_package_updates" : "ha-manager.adoc",
         "ha_manager_resource_affinity_rules" : "ha-manager.adoc",
         "ha_manager_resource_config" : "ha-manager.adoc",
         "ha_manager_resources" : "ha-manager.adoc",
         "ha_manager_rule_conflicts" : "ha-manager.adoc",
         "ha_manager_rules" : "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_configuration" : "pveceph.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_cluster_requirements" : "pvecm.adoc",
         "pvecm_corosync_addresses" : "pvecm.adoc",
         "pvecm_corosync_conf_glossary" : "pvecm.adoc",
         "pvecm_corosync_over_bonds" : "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",
         "pvedaemon_max_workers" : "pvedaemon.adoc",
         "pveproxy_custom_tls_cert" : "pveproxy.adoc",
         "pveproxy_host_acls" : "pveproxy.adoc",
         "pveproxy_listening_address" : "pveproxy.adoc",
         "pveproxy_max_workers" : "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_fabrics" : "pvesdn.adoc",
         "pvesdn_config_fabrics_ipv6" : "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_openfabric" : "pvesdn.adoc",
         "pvesdn_openfabric_fabric" : "pvesdn.adoc",
         "pvesdn_openfabric_node" : "pvesdn.adoc",
         "pvesdn_ospf" : "pvesdn.adoc",
         "pvesdn_ospf_fabric" : "pvesdn.adoc",
         "pvesdn_ospf_node" : "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",
         "pvesm_lvm_config" : "pvesm.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_apt" : "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_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_apt_repo_formats" : "sysadmin.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_debian_firmware_repo" : "sysadmin.adoc",
         "sysadmin_enterprise_repo" : "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_no_subscription_repo" : "sysadmin.adoc",
         "sysadmin_package_repositories" : "sysadmin.adoc",
         "sysadmin_package_repositories_ceph" : "sysadmin.adoc",
         "sysadmin_test_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_extend_raidz" : "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/Bibliography#Ahmed15",
         "Ahmed16" : "link:/wiki/Bibliography#Ahmed16",
         "Bessen09" : "link:/wiki/Bibliography#Bessen09",
         "Bir96" : "link:/wiki/Bibliography#Bir96",
         "Cheng14" : "link:/wiki/Bibliography#Cheng14",
         "Goldman16" : "link:/wiki/Bibliography#Goldman16",
         "Hertzog13" : "link:/wiki/Bibliography#Hertzog13",
         "Kreibich10" : "link:/wiki/Bibliography#Kreibich10",
         "Loeliger12" : "link:/wiki/Bibliography#Loeliger12",
         "Loshin03" : "link:/wiki/Bibliography#Loshin03",
         "Mauerer08" : "link:/wiki/Bibliography#Mauerer08",
         "Richardson07" : "link:/wiki/Bibliography#Richardson07",
         "Singh15" : "link:/wiki/Bibliography#Singh15",
         "Singh16" : "link:/wiki/Bibliography#Singh16",
         "Surber16" : "link:/wiki/Bibliography#Surber16",
         "Walsh10" : "link:/wiki/Bibliography#Walsh10",
         "_corosync_external_vote_support" : "link:/wiki/Cluster_Manager#_corosync_external_vote_support",
         "_recommendations_for_a_healthy_ceph_cluster" : "link:/wiki/Deploy_Hyper-Converged_Ceph_Cluster#_recommendations_for_a_healthy_ceph_cluster",
         "_repository_management" : "link:/wiki/Package_Repositories#_repository_management",
         "advanced_btrfs_options" : "link:/wiki/Installation#advanced_btrfs_options",
         "advanced_lvm_options" : "link:/wiki/Installation#advanced_lvm_options",
         "advanced_zfs_options" : "link:/wiki/Installation#advanced_zfs_options",
         "ballooning-target" : "link:/wiki/Proxmox_Node_Management#ballooning-target",
         "ceph_rados_block_devices" : "link:/wiki/Storage:_RBD#ceph_rados_block_devices",
         "ceph_release_table" : "link:/wiki/Package_Repositories#ceph_release_table",
         "chapter_btrfs" : "link:/wiki/BTRFS#chapter_btrfs",
         "chapter_calendar_events" : "link:/wiki/Calendar_Events#chapter_calendar_events",
         "chapter_firmware_updates" : "link:/wiki/Firmware_Updates#chapter_firmware_updates",
         "chapter_gui" : "link:/wiki/Graphical_User_Interface#chapter_gui",
         "chapter_ha_manager" : "link:/wiki/High_Availability#chapter_ha_manager",
         "chapter_hyper_converged_infrastructure" : "link:/wiki/Introduction#chapter_hyper_converged_infrastructure",
         "chapter_installation" : "link:/wiki/Installation#chapter_installation",
         "chapter_introduction" : "link:/wiki/Introduction#chapter_introduction",
         "chapter_lvm" : "link:/wiki/Logical_Volume_Manager_(LVM)#chapter_lvm",
         "chapter_notifications" : "link:/wiki/Notifications#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/Deploy_Hyper-Converged_Ceph_Cluster#chapter_pveceph",
         "chapter_pvecm" : "link:/wiki/Cluster_Manager#chapter_pvecm",
         "chapter_pvesdn" : "link:/wiki/Software-Defined_Network#chapter_pvesdn",
         "chapter_pvesr" : "link:/wiki/Storage_Replication#chapter_pvesr",
         "chapter_qm_vcpu_list" : "link:/wiki/Introduction#chapter_qm_vcpu_list",
         "chapter_storage" : "link:/wiki/Storage#chapter_storage",
         "chapter_system_administration" : "link:/wiki/Host_System_Administration#chapter_system_administration",
         "chapter_user_management" : "link:/wiki/User_Management#chapter_user_management",
         "chapter_virtual_machines" : "link:/wiki/QEMU/KVM_Virtual_Machines#chapter_virtual_machines",
         "chapter_vzdump" : "link:/wiki/Backup_and_Restore#chapter_vzdump",
         "chapter_zfs" : "link:/wiki/ZFS_on_Linux#chapter_zfs",
         "cli_general" : "link:/wiki/General#cli_general",
         "configuration_files" : "link:/wiki/General#configuration_files",
         "configuration_files_casing" : "link:/wiki/General#configuration_files_casing",
         "datacenter_configuration_file" : "link:/wiki/General#datacenter_configuration_file",
         "disk_health_monitoring" : "link:/wiki/Disk_Health_Monitoring#disk_health_monitoring",
         "external_metric_server" : "link:/wiki/External_Metric_Server#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_Node_Management#first_guest_boot_delay",
         "getting_help" : "link:/wiki/Introduction#getting_help",
         "gui_consent_banner" : "link:/wiki/Graphical_User_Interface#gui_consent_banner",
         "gui_my_settings" : "link:/wiki/Graphical_User_Interface#gui_my_settings",
         "gui_tags" : "link:/wiki/Graphical_User_Interface#gui_tags",
         "ha_manager_crm" : "link:/wiki/High_Availability#ha_manager_crm",
         "ha_manager_crs" : "link:/wiki/High_Availability#ha_manager_crs",
         "ha_manager_error_recovery" : "link:/wiki/High_Availability#ha_manager_error_recovery",
         "ha_manager_fencing" : "link:/wiki/High_Availability#ha_manager_fencing",
         "ha_manager_groups" : "link:/wiki/High_Availability#ha_manager_groups",
         "ha_manager_lrm" : "link:/wiki/High_Availability#ha_manager_lrm",
         "ha_manager_node_affinity_rules" : "link:/wiki/High_Availability#ha_manager_node_affinity_rules",
         "ha_manager_node_maintenance" : "link:/wiki/High_Availability#ha_manager_node_maintenance",
         "ha_manager_package_updates" : "link:/wiki/High_Availability#ha_manager_package_updates",
         "ha_manager_resource_affinity_rules" : "link:/wiki/High_Availability#ha_manager_resource_affinity_rules",
         "ha_manager_resource_config" : "link:/wiki/High_Availability#ha_manager_resource_config",
         "ha_manager_resources" : "link:/wiki/High_Availability#ha_manager_resources",
         "ha_manager_rule_conflicts" : "link:/wiki/High_Availability#ha_manager_rule_conflicts",
         "ha_manager_rules" : "link:/wiki/High_Availability#ha_manager_rules",
         "ha_manager_service_states" : "link:/wiki/High_Availability#ha_manager_service_states",
         "ha_manager_shutdown_policy" : "link:/wiki/High_Availability#ha_manager_shutdown_policy",
         "ha_manager_start_failure_policy" : "link:/wiki/High_Availability#ha_manager_start_failure_policy",
         "howto_improve_pve_docs" : "link:/wiki/Introduction#howto_improve_pve_docs",
         "i18n_with_git" : "link:/wiki/Introduction#i18n_with_git",
         "i18n_without_git" : "link:/wiki/Introduction#i18n_without_git",
         "install_minimal_requirements" : "link:/wiki/System_Requirements#install_minimal_requirements",
         "install_recommended_requirements" : "link:/wiki/System_Requirements#install_recommended_requirements",
         "installation_installer" : "link:/wiki/Installation#installation_installer",
         "installation_prepare_media" : "link:/wiki/Prepare_Installation_Media#installation_prepare_media",
         "installation_unattended" : "link:/wiki/Installation#installation_unattended",
         "intro_central_management" : "link:/wiki/Introduction#intro_central_management",
         "intro_project_history" : "link:/wiki/Introduction#intro_project_history",
         "kernel_samepage_merging" : "link:/wiki/Kernel_Samepage_Merging_(KSM)#kernel_samepage_merging",
         "markdown_basics" : "link:/wiki/Markdown_Primer#markdown_basics",
         "metric_server_graphite" : "link:/wiki/External_Metric_Server#metric_server_graphite",
         "metric_server_influxdb" : "link:/wiki/External_Metric_Server#metric_server_influxdb",
         "network_override_device_names" : "link:/wiki/Network_Configuration#network_override_device_names",
         "network_pin_naming_scheme_version" : "link:/wiki/Network_Configuration#network_pin_naming_scheme_version",
         "nomodeset_kernel_param" : "link:/wiki/Installation#nomodeset_kernel_param",
         "notification_events" : "link:/wiki/Notifications#notification_events",
         "notification_matchers" : "link:/wiki/Notifications#notification_matchers",
         "notification_matchers_calendar" : "link:/wiki/Notifications#notification_matchers_calendar",
         "notification_matchers_field" : "link:/wiki/Notifications#notification_matchers_field",
         "notification_matchers_severity" : "link:/wiki/Notifications#notification_matchers_severity",
         "notification_mode" : "link:/wiki/Notifications#notification_mode",
         "notification_targets" : "link:/wiki/Notifications#notification_targets",
         "notification_targets_gotify" : "link:/wiki/Notifications#notification_targets_gotify",
         "notification_targets_sendmail" : "link:/wiki/Notifications#notification_targets_sendmail",
         "notification_targets_smtp" : "link:/wiki/Notifications#notification_targets_smtp",
         "notification_targets_webhook" : "link:/wiki/Notifications#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_Node_Management#proxmox_node_management",
         "pve_ceph_configuration" : "link:/wiki/Deploy_Hyper-Converged_Ceph_Cluster#pve_ceph_configuration",
         "pve_ceph_device_classes" : "link:/wiki/Deploy_Hyper-Converged_Ceph_Cluster#pve_ceph_device_classes",
         "pve_ceph_ec_pools" : "link:/wiki/Deploy_Hyper-Converged_Ceph_Cluster#pve_ceph_ec_pools",
         "pve_ceph_install" : "link:/wiki/Deploy_Hyper-Converged_Ceph_Cluster#pve_ceph_install",
         "pve_ceph_install_wizard" : "link:/wiki/Deploy_Hyper-Converged_Ceph_Cluster#pve_ceph_install_wizard",
         "pve_ceph_manager" : "link:/wiki/Deploy_Hyper-Converged_Ceph_Cluster#pve_ceph_manager",
         "pve_ceph_mon_and_ts" : "link:/wiki/Deploy_Hyper-Converged_Ceph_Cluster#pve_ceph_mon_and_ts",
         "pve_ceph_monitors" : "link:/wiki/Deploy_Hyper-Converged_Ceph_Cluster#pve_ceph_monitors",
         "pve_ceph_osd_create" : "link:/wiki/Deploy_Hyper-Converged_Ceph_Cluster#pve_ceph_osd_create",
         "pve_ceph_osd_destroy" : "link:/wiki/Deploy_Hyper-Converged_Ceph_Cluster#pve_ceph_osd_destroy",
         "pve_ceph_osd_replace" : "link:/wiki/Deploy_Hyper-Converged_Ceph_Cluster#pve_ceph_osd_replace",
         "pve_ceph_osds" : "link:/wiki/Deploy_Hyper-Converged_Ceph_Cluster#pve_ceph_osds",
         "pve_ceph_pools" : "link:/wiki/Deploy_Hyper-Converged_Ceph_Cluster#pve_ceph_pools",
         "pve_ceph_recommendation_cpu" : "link:/wiki/Deploy_Hyper-Converged_Ceph_Cluster#pve_ceph_recommendation_cpu",
         "pve_ceph_recommendation_disk" : "link:/wiki/Deploy_Hyper-Converged_Ceph_Cluster#pve_ceph_recommendation_disk",
         "pve_ceph_recommendation_memory" : "link:/wiki/Deploy_Hyper-Converged_Ceph_Cluster#pve_ceph_recommendation_memory",
         "pve_ceph_recommendation_network" : "link:/wiki/Deploy_Hyper-Converged_Ceph_Cluster#pve_ceph_recommendation_network",
         "pve_ceph_recommendation_raid" : "link:/wiki/Deploy_Hyper-Converged_Ceph_Cluster#pve_ceph_recommendation_raid",
         "pve_ceph_ts" : "link:/wiki/Deploy_Hyper-Converged_Ceph_Cluster#pve_ceph_ts",
         "pve_ceph_ts_causes" : "link:/wiki/Deploy_Hyper-Converged_Ceph_Cluster#pve_ceph_ts_causes",
         "pve_ceph_ts_logs" : "link:/wiki/Deploy_Hyper-Converged_Ceph_Cluster#pve_ceph_ts_logs",
         "pve_ceph_ts_problems" : "link:/wiki/Deploy_Hyper-Converged_Ceph_Cluster#pve_ceph_ts_problems",
         "pve_ceph_wizard_networks" : "link:/wiki/Deploy_Hyper-Converged_Ceph_Cluster#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/Deploy_Hyper-Converged_Ceph_Cluster#pveceph_create_mgr",
         "pveceph_create_mon" : "link:/wiki/Deploy_Hyper-Converged_Ceph_Cluster#pveceph_create_mon",
         "pveceph_destroy_mgr" : "link:/wiki/Deploy_Hyper-Converged_Ceph_Cluster#pveceph_destroy_mgr",
         "pveceph_destroy_mon" : "link:/wiki/Deploy_Hyper-Converged_Ceph_Cluster#pveceph_destroy_mon",
         "pveceph_fs" : "link:/wiki/Deploy_Hyper-Converged_Ceph_Cluster#pveceph_fs",
         "pveceph_fs_create" : "link:/wiki/Deploy_Hyper-Converged_Ceph_Cluster#pveceph_fs_create",
         "pveceph_fs_mds" : "link:/wiki/Deploy_Hyper-Converged_Ceph_Cluster#pveceph_fs_mds",
         "pveceph_scrub" : "link:/wiki/Deploy_Hyper-Converged_Ceph_Cluster#pveceph_scrub",
         "pveceph_shutdown" : "link:/wiki/Deploy_Hyper-Converged_Ceph_Cluster#pveceph_shutdown",
         "pvecm_adding_nodes_with_separated_cluster_network" : "link:/wiki/Cluster_Manager#pvecm_adding_nodes_with_separated_cluster_network",
         "pvecm_cluster_create_via_cli" : "link:/wiki/Cluster_Manager#pvecm_cluster_create_via_cli",
         "pvecm_cluster_create_via_gui" : "link:/wiki/Cluster_Manager#pvecm_cluster_create_via_gui",
         "pvecm_cluster_network" : "link:/wiki/Cluster_Manager#pvecm_cluster_network",
         "pvecm_cluster_network_requirements" : "link:/wiki/Cluster_Manager#pvecm_cluster_network_requirements",
         "pvecm_cluster_requirements" : "link:/wiki/Cluster_Manager#pvecm_cluster_requirements",
         "pvecm_corosync_addresses" : "link:/wiki/Cluster_Manager#pvecm_corosync_addresses",
         "pvecm_corosync_conf_glossary" : "link:/wiki/Cluster_Manager#pvecm_corosync_conf_glossary",
         "pvecm_corosync_over_bonds" : "link:/wiki/Cluster_Manager#pvecm_corosync_over_bonds",
         "pvecm_create_cluster" : "link:/wiki/Cluster_Manager#pvecm_create_cluster",
         "pvecm_edit_corosync_conf" : "link:/wiki/Cluster_Manager#pvecm_edit_corosync_conf",
         "pvecm_join_node_to_cluster" : "link:/wiki/Cluster_Manager#pvecm_join_node_to_cluster",
         "pvecm_migration_network" : "link:/wiki/Cluster_Manager#pvecm_migration_network",
         "pvecm_next_id_range" : "link:/wiki/Cluster_Manager#pvecm_next_id_range",
         "pvecm_qdevice_status_flags" : "link:/wiki/Cluster_Manager#pvecm_qdevice_status_flags",
         "pvecm_redundancy" : "link:/wiki/Cluster_Manager#pvecm_redundancy",
         "pvecm_separate_cluster_net_after_creation" : "link:/wiki/Cluster_Manager#pvecm_separate_cluster_net_after_creation",
         "pvecm_separate_node_without_reinstall" : "link:/wiki/Cluster_Manager#pvecm_separate_node_without_reinstall",
         "pvedaemon_max_workers" : "link:/wiki/pvedaemon_-_Proxmox_VE_API_Daemon#pvedaemon_max_workers",
         "pveproxy_custom_tls_cert" : "link:/wiki/pveproxy_-_Proxmox_VE_API_Proxy_Daemon#pveproxy_custom_tls_cert",
         "pveproxy_host_acls" : "link:/wiki/pveproxy_-_Proxmox_VE_API_Proxy_Daemon#pveproxy_host_acls",
         "pveproxy_listening_address" : "link:/wiki/pveproxy_-_Proxmox_VE_API_Proxy_Daemon#pveproxy_listening_address",
         "pveproxy_max_workers" : "link:/wiki/pveproxy_-_Proxmox_VE_API_Proxy_Daemon#pveproxy_max_workers",
         "pveproxy_real_ip" : "link:/wiki/pveproxy_-_Proxmox_VE_API_Proxy_Daemon#pveproxy_real_ip",
         "pveproxy_response_compression" : "link:/wiki/pveproxy_-_Proxmox_VE_API_Proxy_Daemon#pveproxy_response_compression",
         "pvesdn_config_common_options" : "link:/wiki/Software-Defined_Network#pvesdn_config_common_options",
         "pvesdn_config_controllers" : "link:/wiki/Software-Defined_Network#pvesdn_config_controllers",
         "pvesdn_config_dhcp" : "link:/wiki/Software-Defined_Network#pvesdn_config_dhcp",
         "pvesdn_config_dns" : "link:/wiki/Software-Defined_Network#pvesdn_config_dns",
         "pvesdn_config_fabrics" : "link:/wiki/Software-Defined_Network#pvesdn_config_fabrics",
         "pvesdn_config_fabrics_ipv6" : "link:/wiki/Software-Defined_Network#pvesdn_config_fabrics_ipv6",
         "pvesdn_config_ipam" : "link:/wiki/Software-Defined_Network#pvesdn_config_ipam",
         "pvesdn_config_subnet" : "link:/wiki/Software-Defined_Network#pvesdn_config_subnet",
         "pvesdn_config_vnet" : "link:/wiki/Software-Defined_Network#pvesdn_config_vnet",
         "pvesdn_config_zone" : "link:/wiki/Software-Defined_Network#pvesdn_config_zone",
         "pvesdn_controller_plugin_BGP" : "link:/wiki/Software-Defined_Network#pvesdn_controller_plugin_BGP",
         "pvesdn_controller_plugin_ISIS" : "link:/wiki/Software-Defined_Network#pvesdn_controller_plugin_ISIS",
         "pvesdn_controller_plugin_evpn" : "link:/wiki/Software-Defined_Network#pvesdn_controller_plugin_evpn",
         "pvesdn_dns_plugin_powerdns" : "link:/wiki/Software-Defined_Network#pvesdn_dns_plugin_powerdns",
         "pvesdn_firewall_integration" : "link:/wiki/Software-Defined_Network#pvesdn_firewall_integration",
         "pvesdn_install_dhcp_ipam" : "link:/wiki/Software-Defined_Network#pvesdn_install_dhcp_ipam",
         "pvesdn_install_frrouting" : "link:/wiki/Software-Defined_Network#pvesdn_install_frrouting",
         "pvesdn_installation" : "link:/wiki/Software-Defined_Network#pvesdn_installation",
         "pvesdn_ipam_plugin_netbox" : "link:/wiki/Software-Defined_Network#pvesdn_ipam_plugin_netbox",
         "pvesdn_ipam_plugin_phpipam" : "link:/wiki/Software-Defined_Network#pvesdn_ipam_plugin_phpipam",
         "pvesdn_ipam_plugin_pveipam" : "link:/wiki/Software-Defined_Network#pvesdn_ipam_plugin_pveipam",
         "pvesdn_main_configuration" : "link:/wiki/Software-Defined_Network#pvesdn_main_configuration",
         "pvesdn_notes" : "link:/wiki/Software-Defined_Network#pvesdn_notes",
         "pvesdn_openfabric" : "link:/wiki/Software-Defined_Network#pvesdn_openfabric",
         "pvesdn_openfabric_fabric" : "link:/wiki/Software-Defined_Network#pvesdn_openfabric_fabric",
         "pvesdn_openfabric_node" : "link:/wiki/Software-Defined_Network#pvesdn_openfabric_node",
         "pvesdn_ospf" : "link:/wiki/Software-Defined_Network#pvesdn_ospf",
         "pvesdn_ospf_fabric" : "link:/wiki/Software-Defined_Network#pvesdn_ospf_fabric",
         "pvesdn_ospf_node" : "link:/wiki/Software-Defined_Network#pvesdn_ospf_node",
         "pvesdn_overview" : "link:/wiki/Software-Defined_Network#pvesdn_overview",
         "pvesdn_setup_example_evpn" : "link:/wiki/Software-Defined_Network#pvesdn_setup_example_evpn",
         "pvesdn_setup_example_nat" : "link:/wiki/Software-Defined_Network#pvesdn_setup_example_nat",
         "pvesdn_setup_example_qinq" : "link:/wiki/Software-Defined_Network#pvesdn_setup_example_qinq",
         "pvesdn_setup_example_simple" : "link:/wiki/Software-Defined_Network#pvesdn_setup_example_simple",
         "pvesdn_setup_example_vlan" : "link:/wiki/Software-Defined_Network#pvesdn_setup_example_vlan",
         "pvesdn_setup_example_vxlan" : "link:/wiki/Software-Defined_Network#pvesdn_setup_example_vxlan",
         "pvesdn_setup_examples" : "link:/wiki/Software-Defined_Network#pvesdn_setup_examples",
         "pvesdn_support_status" : "link:/wiki/Software-Defined_Network#pvesdn_support_status",
         "pvesdn_tech_and_config_overview" : "link:/wiki/Software-Defined_Network#pvesdn_tech_and_config_overview",
         "pvesdn_zone_plugin_evpn" : "link:/wiki/Software-Defined_Network#pvesdn_zone_plugin_evpn",
         "pvesdn_zone_plugin_qinq" : "link:/wiki/Software-Defined_Network#pvesdn_zone_plugin_qinq",
         "pvesdn_zone_plugin_simple" : "link:/wiki/Software-Defined_Network#pvesdn_zone_plugin_simple",
         "pvesdn_zone_plugin_vlan" : "link:/wiki/Software-Defined_Network#pvesdn_zone_plugin_vlan",
         "pvesdn_zone_plugin_vxlan" : "link:/wiki/Software-Defined_Network#pvesdn_zone_plugin_vxlan",
         "pvesm_lvm_config" : "link:/wiki/Storage:_LVM#pvesm_lvm_config",
         "pvesr_schedule_format_examples" : "link:/wiki/Calendar_Events#pvesr_schedule_format_examples",
         "pvesr_schedule_time_format" : "link:/wiki/Storage_Replication#pvesr_schedule_time_format",
         "pveum_authentication_realms" : "link:/wiki/User_Management#pveum_authentication_realms",
         "pveum_configure_u2f" : "link:/wiki/User_Management#pveum_configure_u2f",
         "pveum_configure_webauthn" : "link:/wiki/User_Management#pveum_configure_webauthn",
         "pveum_groups" : "link:/wiki/User_Management#pveum_groups",
         "pveum_ldap_reserved_characters" : "link:/wiki/User_Management#pveum_ldap_reserved_characters",
         "pveum_ldap_sync" : "link:/wiki/User_Management#pveum_ldap_sync",
         "pveum_ldap_sync_options" : "link:/wiki/User_Management#pveum_ldap_sync_options",
         "pveum_openid" : "link:/wiki/User_Management#pveum_openid",
         "pveum_permission_management" : "link:/wiki/User_Management#pveum_permission_management",
         "pveum_pools" : "link:/wiki/User_Management#pveum_pools",
         "pveum_resource_pools" : "link:/wiki/User_Management#pveum_resource_pools",
         "pveum_roles" : "link:/wiki/User_Management#pveum_roles",
         "pveum_templated_paths" : "link:/wiki/User_Management#pveum_templated_paths",
         "pveum_tfa_auth" : "link:/wiki/User_Management#pveum_tfa_auth",
         "pveum_tfa_lockout" : "link:/wiki/User_Management#pveum_tfa_lockout",
         "pveum_tokens" : "link:/wiki/User_Management#pveum_tokens",
         "pveum_user_configured_totp" : "link:/wiki/User_Management#pveum_user_configured_totp",
         "pveum_user_configured_u2f" : "link:/wiki/User_Management#pveum_user_configured_u2f",
         "pveum_users" : "link:/wiki/User_Management#pveum_users",
         "qm_audio_device" : "link:/wiki/QEMU/KVM_Virtual_Machines#qm_audio_device",
         "qm_ballooning" : "link:/wiki/QEMU/KVM_Virtual_Machines#qm_ballooning",
         "qm_bios_and_uefi" : "link:/wiki/QEMU/KVM_Virtual_Machines#qm_bios_and_uefi",
         "qm_bootorder" : "link:/wiki/QEMU/KVM_Virtual_Machines#qm_bootorder",
         "qm_cloud_init" : "link:/wiki/Cloud-Init_Support#qm_cloud_init",
         "qm_configuration" : "link:/wiki/QEMU/KVM_Virtual_Machines#qm_configuration",
         "qm_copy_and_clone" : "link:/wiki/QEMU/KVM_Virtual_Machines#qm_copy_and_clone",
         "qm_cpu" : "link:/wiki/QEMU/KVM_Virtual_Machines#qm_cpu",
         "qm_cpu_resource_limits" : "link:/wiki/QEMU/KVM_Virtual_Machines#qm_cpu_resource_limits",
         "qm_display" : "link:/wiki/QEMU/KVM_Virtual_Machines#qm_display",
         "qm_general_settings" : "link:/wiki/QEMU/KVM_Virtual_Machines#qm_general_settings",
         "qm_hard_disk" : "link:/wiki/QEMU/KVM_Virtual_Machines#qm_hard_disk",
         "qm_hard_disk_bus" : "link:/wiki/QEMU/KVM_Virtual_Machines#qm_hard_disk_bus",
         "qm_hard_disk_cache" : "link:/wiki/QEMU/KVM_Virtual_Machines#qm_hard_disk_cache",
         "qm_hard_disk_discard" : "link:/wiki/QEMU/KVM_Virtual_Machines#qm_hard_disk_discard",
         "qm_hard_disk_formats" : "link:/wiki/QEMU/KVM_Virtual_Machines#qm_hard_disk_formats",
         "qm_hard_disk_iothread" : "link:/wiki/QEMU/KVM_Virtual_Machines#qm_hard_disk_iothread",
         "qm_hibernate" : "link:/wiki/QEMU/KVM_Virtual_Machines#qm_hibernate",
         "qm_import_virtual_machines" : "link:/wiki/QEMU/KVM_Virtual_Machines#qm_import_virtual_machines",
         "qm_ivshmem" : "link:/wiki/QEMU/KVM_Virtual_Machines#qm_ivshmem",
         "qm_machine_type" : "link:/wiki/QEMU/KVM_Virtual_Machines#qm_machine_type",
         "qm_machine_update" : "link:/wiki/QEMU/KVM_Virtual_Machines#qm_machine_update",
         "qm_meltdown_spectre" : "link:/wiki/QEMU/KVM_Virtual_Machines#qm_meltdown_spectre",
         "qm_memory" : "link:/wiki/QEMU/KVM_Virtual_Machines#qm_memory",
         "qm_memory_encryption" : "link:/wiki/QEMU/KVM_Virtual_Machines#qm_memory_encryption",
         "qm_memory_encryption_sev" : "link:/wiki/QEMU/KVM_Virtual_Machines#qm_memory_encryption_sev",
         "qm_migration" : "link:/wiki/QEMU/KVM_Virtual_Machines#qm_migration",
         "qm_network_device" : "link:/wiki/QEMU/KVM_Virtual_Machines#qm_network_device",
         "qm_options" : "link:/wiki/QEMU/KVM_Virtual_Machines#qm_options",
         "qm_os_settings" : "link:/wiki/QEMU/KVM_Virtual_Machines#qm_os_settings",
         "qm_pci_passthrough" : "link:/wiki/PCI(e)_Passthrough#qm_pci_passthrough",
         "qm_pci_passthrough_update_initramfs" : "link:/wiki/PCI(e)_Passthrough#qm_pci_passthrough_update_initramfs",
         "qm_pci_passthrough_vm_config" : "link:/wiki/PCI(e)_Passthrough#qm_pci_passthrough_vm_config",
         "qm_pci_viommu" : "link:/wiki/PCI(e)_Passthrough#qm_pci_viommu",
         "qm_qemu_agent" : "link:/wiki/QEMU/KVM_Virtual_Machines#qm_qemu_agent",
         "qm_qga_auto_trim" : "link:/wiki/QEMU/KVM_Virtual_Machines#qm_qga_auto_trim",
         "qm_qga_enable" : "link:/wiki/QEMU/KVM_Virtual_Machines#qm_qga_enable",
         "qm_qga_fsfreeze" : "link:/wiki/QEMU/KVM_Virtual_Machines#qm_qga_fsfreeze",
         "qm_snapshots" : "link:/wiki/QEMU/KVM_Virtual_Machines#qm_snapshots",
         "qm_spice_enhancements" : "link:/wiki/QEMU/KVM_Virtual_Machines#qm_spice_enhancements",
         "qm_startup_and_shutdown" : "link:/wiki/QEMU/KVM_Virtual_Machines#qm_startup_and_shutdown",
         "qm_system_settings" : "link:/wiki/QEMU/KVM_Virtual_Machines#qm_system_settings",
         "qm_templates" : "link:/wiki/QEMU/KVM_Virtual_Machines#qm_templates",
         "qm_tpm" : "link:/wiki/QEMU/KVM_Virtual_Machines#qm_tpm",
         "qm_usb_passthrough" : "link:/wiki/QEMU/KVM_Virtual_Machines#qm_usb_passthrough",
         "qm_virtio_rng" : "link:/wiki/QEMU/KVM_Virtual_Machines#qm_virtio_rng",
         "qm_virtiofs" : "link:/wiki/QEMU/KVM_Virtual_Machines#qm_virtiofs",
         "qm_virtual_machines_settings" : "link:/wiki/QEMU/KVM_Virtual_Machines#qm_virtual_machines_settings",
         "qm_vmstatestorage" : "link:/wiki/QEMU/KVM_Virtual_Machines#qm_vmstatestorage",
         "repos_secure_apt" : "link:/wiki/Package_Repositories#repos_secure_apt",
         "resource_mapping" : "link:/wiki/QEMU/KVM_Virtual_Machines#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_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/Storage:_iSCSI#storage_open_iscsi",
         "storage_pbs" : "link:/wiki/Storage:_Proxmox_Backup_Server#storage_pbs",
         "storage_pbs_encryption" : "link:/wiki/Storage:_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_apt_repo_formats" : "link:/wiki/Package_Repositories#sysadmin_apt_repo_formats",
         "sysadmin_certificate_management" : "link:/wiki/Certificate_Management#sysadmin_certificate_management",
         "sysadmin_certs_acme_account" : "link:/wiki/Certificate_Management#sysadmin_certs_acme_account",
         "sysadmin_certs_acme_automatic_renewal" : "link:/wiki/Certificate_Management#sysadmin_certs_acme_automatic_renewal",
         "sysadmin_certs_acme_dns_api_config" : "link:/wiki/Certificate_Management#sysadmin_certs_acme_dns_api_config",
         "sysadmin_certs_acme_dns_challenge" : "link:/wiki/Certificate_Management#sysadmin_certs_acme_dns_challenge",
         "sysadmin_certs_acme_http_challenge" : "link:/wiki/Certificate_Management#sysadmin_certs_acme_http_challenge",
         "sysadmin_certs_acme_plugins" : "link:/wiki/Certificate_Management#sysadmin_certs_acme_plugins",
         "sysadmin_certs_acme_switch_from_staging" : "link:/wiki/Certificate_Management#sysadmin_certs_acme_switch_from_staging",
         "sysadmin_certs_api_gui" : "link:/wiki/Certificate_Management#sysadmin_certs_api_gui",
         "sysadmin_certs_get_trusted_acme_cert" : "link:/wiki/Certificate_Management#sysadmin_certs_get_trusted_acme_cert",
         "sysadmin_certs_upload_custom" : "link:/wiki/Certificate_Management#sysadmin_certs_upload_custom",
         "sysadmin_debian_firmware_repo" : "link:/wiki/Package_Repositories#sysadmin_debian_firmware_repo",
         "sysadmin_enterprise_repo" : "link:/wiki/Package_Repositories#sysadmin_enterprise_repo",
         "sysadmin_firmware_cpu" : "link:/wiki/Firmware_Updates#sysadmin_firmware_cpu",
         "sysadmin_firmware_persistent" : "link:/wiki/Firmware_Updates#sysadmin_firmware_persistent",
         "sysadmin_firmware_runtime_files" : "link:/wiki/Firmware_Updates#sysadmin_firmware_runtime_files",
         "sysadmin_firmware_troubleshooting" : "link:/wiki/Firmware_Updates#sysadmin_firmware_troubleshooting",
         "sysadmin_network_bond" : "link:/wiki/Network_Configuration#sysadmin_network_bond",
         "sysadmin_network_configuration" : "link:/wiki/Network_Configuration#sysadmin_network_configuration",
         "sysadmin_network_masquerading" : "link:/wiki/Network_Configuration#sysadmin_network_masquerading",
         "sysadmin_network_routed" : "link:/wiki/Network_Configuration#sysadmin_network_routed",
         "sysadmin_network_vlan" : "link:/wiki/Network_Configuration#sysadmin_network_vlan",
         "sysadmin_no_subscription_repo" : "link:/wiki/Package_Repositories#sysadmin_no_subscription_repo",
         "sysadmin_package_repositories" : "link:/wiki/Package_Repositories#sysadmin_package_repositories",
         "sysadmin_package_repositories_ceph" : "link:/wiki/Package_Repositories#sysadmin_package_repositories_ceph",
         "sysadmin_test_repo" : "link:/wiki/Package_Repositories#sysadmin_test_repo",
         "sysadmin_zfs_add_cache_and_log_dev" : "link:/wiki/ZFS_on_Linux#sysadmin_zfs_add_cache_and_log_dev",
         "sysadmin_zfs_change_failed_dev" : "link:/wiki/ZFS_on_Linux#sysadmin_zfs_change_failed_dev",
         "sysadmin_zfs_create_new_zpool" : "link:/wiki/ZFS_on_Linux#sysadmin_zfs_create_new_zpool",
         "sysadmin_zfs_create_new_zpool_raid0" : "link:/wiki/ZFS_on_Linux#sysadmin_zfs_create_new_zpool_raid0",
         "sysadmin_zfs_create_new_zpool_raid1" : "link:/wiki/ZFS_on_Linux#sysadmin_zfs_create_new_zpool_raid1",
         "sysadmin_zfs_create_new_zpool_raid10" : "link:/wiki/ZFS_on_Linux#sysadmin_zfs_create_new_zpool_raid10",
         "sysadmin_zfs_create_new_zpool_raidz1" : "link:/wiki/ZFS_on_Linux#sysadmin_zfs_create_new_zpool_raidz1",
         "sysadmin_zfs_create_new_zpool_with_cache" : "link:/wiki/ZFS_on_Linux#sysadmin_zfs_create_new_zpool_with_cache",
         "sysadmin_zfs_create_new_zpool_with_log" : "link:/wiki/ZFS_on_Linux#sysadmin_zfs_create_new_zpool_with_log",
         "sysadmin_zfs_extend_raidz" : "link:/wiki/ZFS_on_Linux#sysadmin_zfs_extend_raidz",
         "sysadmin_zfs_features" : "link:/wiki/ZFS_on_Linux#sysadmin_zfs_features",
         "sysadmin_zfs_limit_memory_usage" : "link:/wiki/ZFS_on_Linux#sysadmin_zfs_limit_memory_usage",
         "sysadmin_zfs_raid_considerations" : "link:/wiki/ZFS_on_Linux#sysadmin_zfs_raid_considerations",
         "sysadmin_zfs_raid_performance" : "link:/wiki/ZFS_on_Linux#sysadmin_zfs_raid_performance",
         "sysadmin_zfs_raid_size_space_usage_redundancy" : "link:/wiki/ZFS_on_Linux#sysadmin_zfs_raid_size_space_usage_redundancy",
         "sysadmin_zfs_special_device" : "link:/wiki/ZFS_on_Linux#sysadmin_zfs_special_device",
         "sysboot" : "link:/wiki/Host_Bootloader#sysboot",
         "sysboot_determine_bootloader_used" : "link:/wiki/Host_Bootloader#sysboot_determine_bootloader_used",
         "sysboot_edit_kernel_cmdline" : "link:/wiki/Host_Bootloader#sysboot_edit_kernel_cmdline",
         "sysboot_grub" : "link:/wiki/Host_Bootloader#sysboot_grub",
         "sysboot_installer_part_scheme" : "link:/wiki/Host_Bootloader#sysboot_installer_part_scheme",
         "sysboot_kernel_pin" : "link:/wiki/Host_Bootloader#sysboot_kernel_pin",
         "sysboot_proxmox_boot_refresh" : "link:/wiki/Host_Bootloader#sysboot_proxmox_boot_refresh",
         "sysboot_proxmox_boot_setup" : "link:/wiki/Host_Bootloader#sysboot_proxmox_boot_setup",
         "sysboot_proxmox_boot_tool" : "link:/wiki/Host_Bootloader#sysboot_proxmox_boot_tool",
         "sysboot_secure_boot" : "link:/wiki/Host_Bootloader#sysboot_secure_boot",
         "sysboot_systemd_boot" : "link:/wiki/Host_Bootloader#sysboot_systemd_boot",
         "sysboot_systemd_boot_config" : "link:/wiki/Host_Bootloader#sysboot_systemd_boot_config",
         "system_software_updates" : "link:/wiki/System_Software_Updates#system_software_updates",
         "systemd_network_interface_names" : "link:/wiki/Network_Configuration#systemd_network_interface_names",
         "translation" : "link:/wiki/Introduction#translation",
         "udp" : "link:/wiki/External_Metric_Server#udp",
         "user-realms-ad" : "link:/wiki/User_Management#user-realms-ad",
         "user-realms-ldap" : "link:/wiki/User_Management#user-realms-ldap",
         "user-realms-pam" : "link:/wiki/User_Management#user-realms-pam",
         "user-realms-pve" : "link:/wiki/User_Management#user-realms-pve",
         "user_mgmt" : "link:/wiki/User_Management#user_mgmt",
         "user_tfa_setup_recovery_keys" : "link:/wiki/User_Management#user_tfa_setup_recovery_keys",
         "user_tfa_setup_totp" : "link:/wiki/User_Management#user_tfa_setup_totp",
         "user_tfa_setup_webauthn" : "link:/wiki/User_Management#user_tfa_setup_webauthn",
         "vzdump_configuration" : "link:/wiki/Backup_and_Restore#vzdump_configuration",
         "vzdump_jobs" : "link:/wiki/Backup_and_Restore#vzdump_jobs",
         "vzdump_notes" : "link:/wiki/Backup_and_Restore#vzdump_notes",
         "vzdump_protection" : "link:/wiki/Backup_and_Restore#vzdump_protection",
         "vzdump_restore" : "link:/wiki/Backup_and_Restore#vzdump_restore",
         "vzdump_retention" : "link:/wiki/Backup_and_Restore#vzdump_retention",
         "zfs_compression" : "link:/wiki/ZFS_on_Linux#zfs_compression",
         "zfs_encryption" : "link:/wiki/ZFS_on_Linux#zfs_encryption",
         "zfs_swap" : "link:/wiki/ZFS_on_Linux#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-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,
         "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-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,
         "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-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,
         "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-rules-node-affinity-opts.adoc" : 1,
            "ha-rules-opts.adoc" : 1,
            "ha-rules-resource-affinity-opts.adoc" : 1
         },
         "ha-resources-opts.adoc" : {},
         "ha-rules-node-affinity-opts.adoc" : {},
         "ha-rules-opts.adoc" : {},
         "ha-rules-resource-affinity-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,
            "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-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" : {},
         "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-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,
            "ha-rules-node-affinity-opts.adoc" : 1,
            "ha-rules-opts.adoc" : 1,
            "ha-rules-resource-affinity-opts.adoc" : 1,
            "pve-copyright.adoc" : 1
         },
         "ha-resources-opts.adoc" : {},
         "ha-rules-node-affinity-opts.adoc" : {},
         "ha-rules-opts.adoc" : {},
         "ha-rules-resource-affinity-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-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
         },
         "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-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-rules-node-affinity-opts.adoc" : 1,
            "ha-rules-opts.adoc" : 1,
            "ha-rules-resource-affinity-opts.adoc" : 1
         },
         "ha-resources-opts.adoc" : {},
         "ha-rules-node-affinity-opts.adoc" : {},
         "ha-rules-opts.adoc" : {},
         "ha-rules-resource-affinity-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" : {}
      }
   },
   "include_counter" : {
      "default" : {
         "GFDL.adoc" : {
            "LICENSE" : 1
         },
         "configuration-files.adoc" : {
            "datacenter.cfg.adoc" : 1
         },
         "cpu-models.conf.adoc" : {
            "cpu-models.conf.5-opts.adoc" : 1
         },
         "datacenter.cfg.adoc" : {
            "datacenter.cfg.5-opts.adoc" : 1
         },
         "ha-manager.adoc" : {
            "ha-groups-opts.adoc" : 3,
            "ha-resources-opts.adoc" : 2,
            "ha-rules-node-affinity-opts.adoc" : 5,
            "ha-rules-opts.adoc" : 4,
            "ha-rules-resource-affinity-opts.adoc" : 6
         },
         "index.adoc" : {
            "chapter-index-table.adoc" : 1,
            "man1-index-table.adoc" : 2,
            "man5-index-table.adoc" : 4,
            "man8-index-table.adoc" : 3
         },
         "output-format.adoc" : {
            "output-format-opts.adoc" : 1
         },
         "pct.adoc" : {
            "pct-mountpoint-opts.adoc" : 2,
            "pct-network-opts.adoc" : 3,
            "pct.conf.5-opts.adoc" : 4
         },
         "pct.conf.adoc" : {
            "pct.conf.5-opts.adoc" : 1
         },
         "pve-admin-guide.adoc" : {
            "GFDL.adoc" : 59,
            "calendar-events.adoc" : 55,
            "cli-general.adoc" : 28,
            "configuration-files.adoc" : 54,
            "ha-manager.1-synopsis.adoc" : 44,
            "ha-manager.adoc" : 15,
            "markdown-primer.adoc" : 58,
            "notifications.adoc" : 17,
            "output-format.adoc" : 29,
            "pct.1-synopsis.adoc" : 38,
            "pct.adoc" : 11,
            "pmxcfs.8-synopsis.adoc" : 50,
            "pmxcfs.adoc" : 6,
            "pve-bibliography.adoc" : 27,
            "pve-faq.adoc" : 26,
            "pve-firewall-macros.adoc" : 57,
            "pve-firewall.8-synopsis.adoc" : 45,
            "pve-firewall.adoc" : 13,
            "pve-gui.adoc" : 4,
            "pve-ha-crm.8-synopsis.adoc" : 51,
            "pve-ha-lrm.8-synopsis.adoc" : 52,
            "pve-installation.adoc" : 2,
            "pve-intro.adoc" : 1,
            "pveam.1-synopsis.adoc" : 39,
            "pveceph.1-synopsis.adoc" : 33,
            "pveceph.adoc" : 8,
            "pvecm.1-synopsis.adoc" : 40,
            "pvecm.adoc" : 5,
            "pvedaemon.8-synopsis.adoc" : 46,
            "pvedaemon.adoc" : 18,
            "pvenode.1-synopsis.adoc" : 34,
            "pveperf.1-synopsis.adoc" : 32,
            "pveperf.adoc" : 24,
            "pveproxy.8-synopsis.adoc" : 47,
            "pveproxy.adoc" : 19,
            "pvescheduler.8-synopsis.adoc" : 53,
            "pvescheduler.adoc" : 22,
            "pvesdn.adoc" : 12,
            "pvesh.1-synopsis.adoc" : 35,
            "pvesh.adoc" : 25,
            "pvesm.1-synopsis.adoc" : 30,
            "pvesm.adoc" : 7,
            "pvesr.1-synopsis.adoc" : 41,
            "pvesr.adoc" : 9,
            "pvestatd.8-synopsis.adoc" : 48,
            "pvestatd.adoc" : 20,
            "pvesubscription.1-synopsis.adoc" : 31,
            "pvesubscription.adoc" : 23,
            "pveum.1-synopsis.adoc" : 42,
            "pveum.adoc" : 14,
            "qm-vcpu-list.adoc" : 56,
            "qm.1-synopsis.adoc" : 36,
            "qm.adoc" : 10,
            "qmrestore.1-synopsis.adoc" : 37,
            "spiceproxy.8-synopsis.adoc" : 49,
            "spiceproxy.adoc" : 21,
            "sysadmin.adoc" : 3,
            "vzdump.1-synopsis.adoc" : 43,
            "vzdump.adoc" : 16
         },
         "pve-firewall.adoc" : {
            "pve-firewall-cluster-opts.adoc" : 2,
            "pve-firewall-host-opts.adoc" : 3,
            "pve-firewall-rules-opts.adoc" : 6,
            "pve-firewall-vm-opts.adoc" : 4,
            "pve-firewall-vnet-opts.adoc" : 5
         },
         "pve-installation.adoc" : {
            "pve-installation-media.adoc" : 2,
            "pve-system-requirements.adoc" : 1
         },
         "pve-intro.adoc" : {
            "getting-help.adoc" : 2,
            "howto-improve-pve-docs.adoc" : 3,
            "hyper-converged-infrastructure.adoc" : 1,
            "translation.adoc" : 4
         },
         "pvesm.adoc" : {
            "pve-storage-btrfs.adoc" : 13,
            "pve-storage-cephfs.adoc" : 12,
            "pve-storage-cifs.adoc" : 4,
            "pve-storage-dir.adoc" : 2,
            "pve-storage-iscsi.adoc" : 9,
            "pve-storage-iscsidirect.adoc" : 10,
            "pve-storage-lvm.adoc" : 7,
            "pve-storage-lvmthin.adoc" : 8,
            "pve-storage-nfs.adoc" : 3,
            "pve-storage-pbs.adoc" : 5,
            "pve-storage-rbd.adoc" : 11,
            "pve-storage-zfs.adoc" : 14,
            "pve-storage-zfspool.adoc" : 6
         },
         "qm-cloud-init.adoc" : {
            "qm-cloud-init-opts.adoc" : 1
         },
         "qm.adoc" : {
            "qm-cloud-init.adoc" : 2,
            "qm-pci-passthrough.adoc" : 3,
            "qm.conf.5-opts.adoc" : 4
         },
         "qm.conf.adoc" : {
            "qm.conf.5-opts.adoc" : 1
         },
         "sysadmin.adoc" : {
            "certificate-management.adoc" : 12,
            "firmware-updates.adoc" : 3,
            "kernel-samepage-merging.adoc" : 14,
            "local-btrfs.adoc" : 10,
            "local-lvm.adoc" : 8,
            "local-zfs.adoc" : 9,
            "pve-disk-health-monitoring.adoc" : 7,
            "pve-external-metric-server.adoc" : 6,
            "pve-network.adoc" : 4,
            "pve-package-repos.adoc" : 1,
            "pvenode.adoc" : 11,
            "system-booting.adoc" : 13,
            "system-software-updates.adoc" : 2,
            "system-timesync.adoc" : 5
         },
         "vzdump.adoc" : {
            "vzdump.conf.5-opts.adoc" : 2
         }
      },
      "manvolnum" : {
         "GFDL.adoc" : {
            "LICENSE" : 1
         },
         "configuration-files.adoc" : {
            "datacenter.cfg.adoc" : 1
         },
         "cpu-models.conf.adoc" : {
            "cpu-models.conf.5-opts.adoc" : 1,
            "pve-copyright.adoc" : 2
         },
         "datacenter.cfg.adoc" : {
            "datacenter.cfg.5-opts.adoc" : 1,
            "pve-copyright.adoc" : 2
         },
         "ha-manager.adoc" : {
            "ha-groups-opts.adoc" : 3,
            "ha-manager.1-synopsis.adoc" : 1,
            "ha-resources-opts.adoc" : 2,
            "ha-rules-node-affinity-opts.adoc" : 5,
            "ha-rules-opts.adoc" : 4,
            "ha-rules-resource-affinity-opts.adoc" : 6,
            "pve-copyright.adoc" : 7
         },
         "index.adoc" : {
            "chapter-index-table.adoc" : 1,
            "man1-index-table.adoc" : 2,
            "man5-index-table.adoc" : 4,
            "man8-index-table.adoc" : 3
         },
         "output-format.adoc" : {
            "output-format-opts.adoc" : 1
         },
         "pct.adoc" : {
            "pct-mountpoint-opts.adoc" : 2,
            "pct-network-opts.adoc" : 3,
            "pct.1-synopsis.adoc" : 1,
            "pct.conf.5-opts.adoc" : 4,
            "pve-copyright.adoc" : 5
         },
         "pct.conf.adoc" : {
            "pct.conf.5-opts.adoc" : 1,
            "pve-copyright.adoc" : 2
         },
         "pmxcfs.adoc" : {
            "pmxcfs.8-synopsis.adoc" : 1,
            "pve-copyright.adoc" : 2
         },
         "pve-firewall.adoc" : {
            "pve-copyright.adoc" : 8,
            "pve-firewall-cluster-opts.adoc" : 2,
            "pve-firewall-host-opts.adoc" : 3,
            "pve-firewall-macros.adoc" : 7,
            "pve-firewall-rules-opts.adoc" : 6,
            "pve-firewall-vm-opts.adoc" : 4,
            "pve-firewall-vnet-opts.adoc" : 5,
            "pve-firewall.8-synopsis.adoc" : 1
         },
         "pve-ha-crm.adoc" : {
            "pve-copyright.adoc" : 2,
            "pve-ha-crm.8-synopsis.adoc" : 1
         },
         "pve-ha-lrm.adoc" : {
            "pve-copyright.adoc" : 2,
            "pve-ha-lrm.8-synopsis.adoc" : 1
         },
         "pve-installation.adoc" : {
            "pve-installation-media.adoc" : 2,
            "pve-system-requirements.adoc" : 1
         },
         "pve-intro.adoc" : {
            "getting-help.adoc" : 2,
            "howto-improve-pve-docs.adoc" : 3,
            "hyper-converged-infrastructure.adoc" : 1,
            "translation.adoc" : 4
         },
         "pve-package-repos.adoc" : {
            "pve-copyright.adoc" : 1
         },
         "pveam.adoc" : {
            "pve-copyright.adoc" : 2,
            "pveam.1-synopsis.adoc" : 1
         },
         "pveceph.adoc" : {
            "pve-copyright.adoc" : 2,
            "pveceph.1-synopsis.adoc" : 1
         },
         "pvecm.adoc" : {
            "pve-copyright.adoc" : 2,
            "pvecm.1-synopsis.adoc" : 1
         },
         "pvedaemon.adoc" : {
            "pve-copyright.adoc" : 2,
            "pvedaemon.8-synopsis.adoc" : 1
         },
         "pvenode.adoc" : {
            "output-format.adoc" : 2,
            "pve-copyright.adoc" : 3,
            "pvenode.1-synopsis.adoc" : 1
         },
         "pveperf.adoc" : {
            "pveperf.1-synopsis.adoc" : 1
         },
         "pveproxy.adoc" : {
            "pve-copyright.adoc" : 2,
            "pveproxy.8-synopsis.adoc" : 1
         },
         "pvescheduler.adoc" : {
            "pve-copyright.adoc" : 2,
            "pvescheduler.8-synopsis.adoc" : 1
         },
         "pvesh.adoc" : {
            "output-format.adoc" : 2,
            "pve-copyright.adoc" : 3,
            "pvesh.1-synopsis.adoc" : 1
         },
         "pvesm.adoc" : {
            "pve-copyright.adoc" : 15,
            "pve-storage-btrfs.adoc" : 13,
            "pve-storage-cephfs.adoc" : 12,
            "pve-storage-cifs.adoc" : 4,
            "pve-storage-dir.adoc" : 2,
            "pve-storage-iscsi.adoc" : 9,
            "pve-storage-iscsidirect.adoc" : 10,
            "pve-storage-lvm.adoc" : 7,
            "pve-storage-lvmthin.adoc" : 8,
            "pve-storage-nfs.adoc" : 3,
            "pve-storage-pbs.adoc" : 5,
            "pve-storage-rbd.adoc" : 11,
            "pve-storage-zfs.adoc" : 14,
            "pve-storage-zfspool.adoc" : 6,
            "pvesm.1-synopsis.adoc" : 1
         },
         "pvesr.adoc" : {
            "pve-copyright.adoc" : 2,
            "pvesr.1-synopsis.adoc" : 1
         },
         "pvestatd.adoc" : {
            "pve-copyright.adoc" : 2,
            "pvestatd.8-synopsis.adoc" : 1
         },
         "pvesubscription.adoc" : {
            "pve-copyright.adoc" : 2,
            "pvesubscription.1-synopsis.adoc" : 1
         },
         "pveum.adoc" : {
            "pve-copyright.adoc" : 2,
            "pveum.1-synopsis.adoc" : 1
         },
         "qm-cloud-init.adoc" : {
            "qm-cloud-init-opts.adoc" : 1
         },
         "qm.adoc" : {
            "pve-copyright.adoc" : 5,
            "qm-cloud-init.adoc" : 2,
            "qm-pci-passthrough.adoc" : 3,
            "qm.1-synopsis.adoc" : 1,
            "qm.conf.5-opts.adoc" : 4
         },
         "qm.conf.adoc" : {
            "pve-copyright.adoc" : 2,
            "qm.conf.5-opts.adoc" : 1
         },
         "qmeventd.adoc" : {
            "pve-copyright.adoc" : 2,
            "qmeventd.8-synopsis.adoc" : 1
         },
         "qmrestore.adoc" : {
            "pve-copyright.adoc" : 2,
            "qmrestore.1-synopsis.adoc" : 1
         },
         "spiceproxy.adoc" : {
            "pve-copyright.adoc" : 2,
            "spiceproxy.8-synopsis.adoc" : 1
         },
         "sysadmin.adoc" : {
            "certificate-management.adoc" : 12,
            "firmware-updates.adoc" : 3,
            "kernel-samepage-merging.adoc" : 14,
            "local-btrfs.adoc" : 10,
            "local-lvm.adoc" : 8,
            "local-zfs.adoc" : 9,
            "pve-disk-health-monitoring.adoc" : 7,
            "pve-external-metric-server.adoc" : 6,
            "pve-network.adoc" : 4,
            "pve-package-repos.adoc" : 1,
            "pvenode.adoc" : 11,
            "system-booting.adoc" : 13,
            "system-software-updates.adoc" : 2,
            "system-timesync.adoc" : 5
         },
         "vzdump.adoc" : {
            "pve-copyright.adoc" : 3,
            "vzdump.1-synopsis.adoc" : 1,
            "vzdump.conf.5-opts.adoc" : 2
         }
      },
      "wiki" : {
         "GFDL.adoc" : {
            "LICENSE" : 1
         },
         "configuration-files.adoc" : {
            "datacenter.cfg.adoc" : 1
         },
         "cpu-models.conf.adoc" : {
            "cpu-models.conf.5-opts.adoc" : 1
         },
         "datacenter.cfg.adoc" : {
            "datacenter.cfg.5-opts.adoc" : 1
         },
         "ha-manager.adoc" : {
            "ha-groups-opts.adoc" : 3,
            "ha-resources-opts.adoc" : 2,
            "ha-rules-node-affinity-opts.adoc" : 5,
            "ha-rules-opts.adoc" : 4,
            "ha-rules-resource-affinity-opts.adoc" : 6
         },
         "index.adoc" : {
            "chapter-index-table.adoc" : 1,
            "man1-index-table.adoc" : 2,
            "man5-index-table.adoc" : 4,
            "man8-index-table.adoc" : 3
         },
         "output-format.adoc" : {
            "output-format-opts.adoc" : 1
         },
         "pct.adoc" : {
            "pct-mountpoint-opts.adoc" : 2,
            "pct-network-opts.adoc" : 3,
            "pct.conf.5-opts.adoc" : 4
         },
         "pct.conf.adoc" : {
            "pct.conf.5-opts.adoc" : 1
         },
         "pve-firewall.adoc" : {
            "pve-firewall-cluster-opts.adoc" : 2,
            "pve-firewall-host-opts.adoc" : 3,
            "pve-firewall-rules-opts.adoc" : 6,
            "pve-firewall-vm-opts.adoc" : 4,
            "pve-firewall-vnet-opts.adoc" : 5
         },
         "pve-intro.adoc" : {
            "getting-help.adoc" : 2,
            "howto-improve-pve-docs.adoc" : 3,
            "hyper-converged-infrastructure.adoc" : 1,
            "translation.adoc" : 4
         },
         "qm-cloud-init.adoc" : {
            "qm-cloud-init-opts.adoc" : 1
         },
         "qm.adoc" : {
            "qm.conf.5-opts.adoc" : 4
         },
         "qm.conf.adoc" : {
            "qm.conf.5-opts.adoc" : 1
         },
         "vzdump.adoc" : {
            "vzdump.conf.5-opts.adoc" : 2
         }
      }
   },
   "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",
         "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",
         "pve-intro.adoc" : "chapter-pve-intro.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",
         "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",
         "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-intro.adoc" : "pve-intro-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-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",
         "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",
         "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;",
         "_corosync_external_vote_support" : "",
         "_recommendations_for_a_healthy_ceph_cluster" : "",
         "_repository_management" : "",
         "advanced_btrfs_options" : "",
         "advanced_lvm_options" : "",
         "advanced_zfs_options" : "",
         "ballooning-target" : "",
         "ceph_rados_block_devices" : "",
         "ceph_release_table" : "",
         "chapter_btrfs" : "",
         "chapter_calendar_events" : "",
         "chapter_firmware_updates" : "",
         "chapter_gui" : "",
         "chapter_ha_manager" : "",
         "chapter_hyper_converged_infrastructure" : "",
         "chapter_installation" : "",
         "chapter_introduction" : "",
         "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_affinity_rules" : "",
         "ha_manager_node_maintenance" : "",
         "ha_manager_package_updates" : "",
         "ha_manager_resource_affinity_rules" : "",
         "ha_manager_resource_config" : "",
         "ha_manager_resources" : "",
         "ha_manager_rule_conflicts" : "",
         "ha_manager_rules" : "",
         "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_configuration" : "",
         "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_cluster_requirements" : "",
         "pvecm_corosync_addresses" : "",
         "pvecm_corosync_conf_glossary" : "",
         "pvecm_corosync_over_bonds" : "",
         "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" : "",
         "pvedaemon_max_workers" : "",
         "pveproxy_custom_tls_cert" : "",
         "pveproxy_host_acls" : "",
         "pveproxy_listening_address" : "",
         "pveproxy_max_workers" : "",
         "pveproxy_real_ip" : "",
         "pveproxy_response_compression" : "",
         "pvesdn_config_common_options" : "",
         "pvesdn_config_controllers" : "",
         "pvesdn_config_dhcp" : "",
         "pvesdn_config_dns" : "",
         "pvesdn_config_fabrics" : "",
         "pvesdn_config_fabrics_ipv6" : "",
         "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_openfabric" : "",
         "pvesdn_openfabric_fabric" : "",
         "pvesdn_openfabric_node" : "",
         "pvesdn_ospf" : "",
         "pvesdn_ospf_fabric" : "",
         "pvesdn_ospf_node" : "",
         "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" : "",
         "pvesm_lvm_config" : "",
         "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_apt" : "",
         "resource_mapping" : "",
         "storage_btrfs" : "",
         "storage_cephfs" : "",
         "storage_cephfs_config" : "",
         "storage_cifs" : "",
         "storage_directory" : "",
         "storage_iscsidirect" : "",
         "storage_lvm" : "",
         "storage_lvmthin" : "",
         "storage_nfs" : "",
         "storage_open_iscsi" : "",
         "storage_pbs" : "",
         "storage_pbs_encryption" : "",
         "storage_rbd_config" : "",
         "storage_zfs" : "",
         "storage_zfspool" : "",
         "sysadmin_apt_repo_formats" : "",
         "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_debian_firmware_repo" : "",
         "sysadmin_enterprise_repo" : "",
         "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_no_subscription_repo" : "",
         "sysadmin_package_repositories" : "",
         "sysadmin_package_repositories_ceph" : "",
         "sysadmin_test_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_extend_raidz" : "",
         "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;",
         "_corosync_external_vote_support" : "",
         "_recommendations_for_a_healthy_ceph_cluster" : "",
         "_repository_management" : "",
         "advanced_btrfs_options" : "",
         "advanced_lvm_options" : "",
         "advanced_zfs_options" : "",
         "ballooning-target" : "",
         "ceph_rados_block_devices" : "",
         "ceph_release_table" : "",
         "chapter_btrfs" : "",
         "chapter_calendar_events" : "",
         "chapter_firmware_updates" : "",
         "chapter_gui" : "",
         "chapter_ha_manager" : "",
         "chapter_hyper_converged_infrastructure" : "",
         "chapter_installation" : "",
         "chapter_introduction" : "",
         "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_affinity_rules" : "",
         "ha_manager_node_maintenance" : "",
         "ha_manager_package_updates" : "",
         "ha_manager_resource_affinity_rules" : "",
         "ha_manager_resource_config" : "",
         "ha_manager_resources" : "",
         "ha_manager_rule_conflicts" : "",
         "ha_manager_rules" : "",
         "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_configuration" : "",
         "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_cluster_requirements" : "",
         "pvecm_corosync_addresses" : "",
         "pvecm_corosync_conf_glossary" : "",
         "pvecm_corosync_over_bonds" : "",
         "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" : "",
         "pvedaemon_max_workers" : "",
         "pveproxy_custom_tls_cert" : "",
         "pveproxy_host_acls" : "",
         "pveproxy_listening_address" : "",
         "pveproxy_max_workers" : "",
         "pveproxy_real_ip" : "",
         "pveproxy_response_compression" : "",
         "pvesdn_config_common_options" : "",
         "pvesdn_config_controllers" : "",
         "pvesdn_config_dhcp" : "",
         "pvesdn_config_dns" : "",
         "pvesdn_config_fabrics" : "",
         "pvesdn_config_fabrics_ipv6" : "",
         "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_openfabric" : "",
         "pvesdn_openfabric_fabric" : "",
         "pvesdn_openfabric_node" : "",
         "pvesdn_ospf" : "",
         "pvesdn_ospf_fabric" : "",
         "pvesdn_ospf_node" : "",
         "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" : "",
         "pvesm_lvm_config" : "",
         "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_apt" : "",
         "resource_mapping" : "",
         "storage_btrfs" : "",
         "storage_cephfs" : "",
         "storage_cephfs_config" : "",
         "storage_cifs" : "",
         "storage_directory" : "",
         "storage_iscsidirect" : "",
         "storage_lvm" : "",
         "storage_lvmthin" : "",
         "storage_nfs" : "",
         "storage_open_iscsi" : "",
         "storage_pbs" : "",
         "storage_pbs_encryption" : "",
         "storage_rbd_config" : "",
         "storage_zfs" : "",
         "storage_zfspool" : "",
         "sysadmin_apt_repo_formats" : "",
         "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_debian_firmware_repo" : "",
         "sysadmin_enterprise_repo" : "",
         "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_no_subscription_repo" : "",
         "sysadmin_package_repositories" : "",
         "sysadmin_package_repositories_ceph" : "",
         "sysadmin_test_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_extend_raidz" : "",
         "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;",
         "_corosync_external_vote_support" : "",
         "_recommendations_for_a_healthy_ceph_cluster" : "",
         "_repository_management" : "",
         "advanced_btrfs_options" : "",
         "advanced_lvm_options" : "",
         "advanced_zfs_options" : "",
         "ballooning-target" : "",
         "ceph_rados_block_devices" : "",
         "ceph_release_table" : "",
         "chapter_btrfs" : "",
         "chapter_calendar_events" : "",
         "chapter_firmware_updates" : "",
         "chapter_gui" : "",
         "chapter_ha_manager" : "",
         "chapter_hyper_converged_infrastructure" : "",
         "chapter_installation" : "",
         "chapter_introduction" : "",
         "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_affinity_rules" : "",
         "ha_manager_node_maintenance" : "",
         "ha_manager_package_updates" : "",
         "ha_manager_resource_affinity_rules" : "",
         "ha_manager_resource_config" : "",
         "ha_manager_resources" : "",
         "ha_manager_rule_conflicts" : "",
         "ha_manager_rules" : "",
         "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_configuration" : "",
         "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_cluster_requirements" : "",
         "pvecm_corosync_addresses" : "",
         "pvecm_corosync_conf_glossary" : "",
         "pvecm_corosync_over_bonds" : "",
         "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" : "",
         "pvedaemon_max_workers" : "",
         "pveproxy_custom_tls_cert" : "",
         "pveproxy_host_acls" : "",
         "pveproxy_listening_address" : "",
         "pveproxy_max_workers" : "",
         "pveproxy_real_ip" : "",
         "pveproxy_response_compression" : "",
         "pvesdn_config_common_options" : "",
         "pvesdn_config_controllers" : "",
         "pvesdn_config_dhcp" : "",
         "pvesdn_config_dns" : "",
         "pvesdn_config_fabrics" : "",
         "pvesdn_config_fabrics_ipv6" : "",
         "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_openfabric" : "",
         "pvesdn_openfabric_fabric" : "",
         "pvesdn_openfabric_node" : "",
         "pvesdn_ospf" : "",
         "pvesdn_ospf_fabric" : "",
         "pvesdn_ospf_node" : "",
         "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" : "",
         "pvesm_lvm_config" : "",
         "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_apt" : "",
         "resource_mapping" : "",
         "storage_btrfs" : "",
         "storage_cephfs" : "",
         "storage_cephfs_config" : "",
         "storage_cifs" : "",
         "storage_directory" : "",
         "storage_iscsidirect" : "",
         "storage_lvm" : "",
         "storage_lvmthin" : "",
         "storage_nfs" : "",
         "storage_open_iscsi" : "",
         "storage_pbs" : "",
         "storage_pbs_encryption" : "",
         "storage_rbd_config" : "",
         "storage_zfs" : "",
         "storage_zfspool" : "",
         "sysadmin_apt_repo_formats" : "",
         "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_debian_firmware_repo" : "",
         "sysadmin_enterprise_repo" : "",
         "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_no_subscription_repo" : "",
         "sysadmin_package_repositories" : "",
         "sysadmin_package_repositories_ceph" : "",
         "sysadmin_test_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_extend_raidz" : "",
         "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" : {
         "_corosync_external_vote_support" : "Corosync External Vote Support",
         "_recommendations_for_a_healthy_ceph_cluster" : "Recommendations for a Healthy Ceph Cluster",
         "_repository_management" : "Repository Management",
         "advanced_btrfs_options" : "Advanced BTRFS Configuration Options",
         "advanced_lvm_options" : "Advanced LVM Configuration Options",
         "advanced_zfs_options" : "Advanced ZFS Configuration Options",
         "ballooning-target" : "RAM Usage Target for Ballooning",
         "ceph_rados_block_devices" : "Ceph RADOS Block Devices (RBD)",
         "chapter_btrfs" : "BTRFS",
         "chapter_firmware_updates" : "Firmware Updates",
         "chapter_gui" : "Graphical User Interface",
         "chapter_ha_manager" : "High Availability",
         "chapter_hyper_converged_infrastructure" : "Hyper-converged Infrastructure",
         "chapter_installation" : "Installing Proxmox VE",
         "chapter_introduction" : "Introduction",
         "chapter_lvm" : "Logical Volume Manager (LVM)",
         "chapter_notifications" : "Notifications",
         "chapter_pve_firewall" : "Proxmox VE Firewall",
         "chapter_pveceph" : "Deploy Hyper-Converged Ceph Cluster",
         "chapter_pvesdn" : "Software-Defined Network",
         "chapter_qm_vcpu_list" : "Introduction",
         "chapter_storage" : "Proxmox VE Storage",
         "chapter_system_administration" : "Host System Administration",
         "chapter_virtual_machines" : "QEMU/KVM Virtual Machines",
         "chapter_vzdump" : "Backup and Restore",
         "chapter_zfs" : "ZFS on Linux",
         "cli_general" : "General",
         "configuration_files" : "General",
         "configuration_files_casing" : "Casing of Property Names",
         "datacenter_configuration_file" : "Datacenter Configuration",
         "disk_health_monitoring" : "Disk Health Monitoring",
         "external_metric_server" : "External Metric Server",
         "first_guest_boot_delay" : "First Guest Boot Delay",
         "getting_help" : "Getting Help",
         "gui_consent_banner" : "Consent Banner",
         "gui_my_settings" : "My Settings",
         "gui_tags" : "Tags",
         "ha_manager_crm" : "Cluster Resource Manager",
         "ha_manager_crs" : "Cluster Resource Scheduling",
         "ha_manager_error_recovery" : "Error Recovery",
         "ha_manager_fencing" : "Fencing",
         "ha_manager_groups" : "Groups",
         "ha_manager_lrm" : "Local Resource Manager",
         "ha_manager_node_affinity_rules" : "Node Affinity Rules",
         "ha_manager_node_maintenance" : "Node Maintenance",
         "ha_manager_package_updates" : "Package Updates",
         "ha_manager_resource_affinity_rules" : "Resource Affinity Rules",
         "ha_manager_resource_config" : "Resources",
         "ha_manager_resources" : "Resources",
         "ha_manager_rule_conflicts" : "Rule Conflicts and Errors",
         "ha_manager_rules" : "Rules",
         "ha_manager_service_states" : "Service States",
         "ha_manager_shutdown_policy" : "Shutdown Policy",
         "ha_manager_start_failure_policy" : "Start Failure Policy",
         "howto_improve_pve_docs" : "Improving the Proxmox VE Documentation",
         "i18n_with_git" : "Translating with git",
         "i18n_without_git" : "Translating without git",
         "install_minimal_requirements" : "Minimum Requirements, for Evaluation",
         "install_recommended_requirements" : "Recommended System Requirements",
         "installation_installer" : "Using the Proxmox VE Installer",
         "installation_prepare_media" : "Prepare Installation Media",
         "installation_unattended" : "Unattended Installation",
         "intro_central_management" : "Central Management",
         "intro_project_history" : "Project History",
         "kernel_samepage_merging" : "Kernel Samepage Merging (KSM)",
         "metric_server_graphite" : "Graphite server configuration",
         "metric_server_influxdb" : "Influxdb plugin configuration",
         "network_override_device_names" : "Overriding Network Device Names",
         "network_pin_naming_scheme_version" : "Pinning a specific naming scheme version",
         "nomodeset_kernel_param" : "Adding the `nomodeset` Kernel Parameter",
         "notification_events" : "Notification Events",
         "notification_matchers" : "Notification Matchers",
         "notification_matchers_calendar" : "Calendar Matching Rules",
         "notification_matchers_field" : "Field Matching Rules",
         "notification_matchers_severity" : "Severity Matching Rules",
         "notification_mode" : "Notification Mode",
         "notification_targets" : "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" : "Changing CGroup Version",
         "pct_cgroup_compat" : "CGroup Version Compatibility",
         "pct_configuration" : "Configuration",
         "pct_container_images" : "Container Images",
         "pct_container_network" : "Network",
         "pct_container_storage" : "Container Storage",
         "pct_cpu" : "CPU",
         "pct_general" : "General Settings",
         "pct_memory" : "Memory",
         "pct_migration" : "Migration",
         "pct_mount_points" : "Mount Points",
         "pct_options" : "Options",
         "pct_settings" : "Container Settings",
         "pct_snapshots" : "Snapshots",
         "pct_startup_and_shutdown" : "Automatic Start and Shutdown of Containers",
         "pct_supported_distributions" : "Supported Distributions",
         "proxmox_node_management" : "Proxmox Node Management",
         "pve_ceph_configuration" : "Ceph Configuration",
         "pve_ceph_device_classes" : "Ceph CRUSH & Device Classes",
         "pve_ceph_ec_pools" : "Erasure Coded Pools",
         "pve_ceph_install" : "CLI Installation of Ceph Packages",
         "pve_ceph_install_wizard" : "Initial Ceph Installation & Configuration",
         "pve_ceph_manager" : "Ceph Manager",
         "pve_ceph_mon_and_ts" : "Ceph Monitoring and Troubleshooting",
         "pve_ceph_monitors" : "Ceph Monitor",
         "pve_ceph_osd_create" : "Create OSDs",
         "pve_ceph_osd_destroy" : "Destroy OSDs",
         "pve_ceph_osd_replace" : "Replace OSDs",
         "pve_ceph_osds" : "Ceph OSDs",
         "pve_ceph_pools" : "Ceph Pools",
         "pve_ceph_ts" : "Troubleshooting",
         "pve_firewall_cluster_wide_setup" : "Cluster Wide Setup",
         "pve_firewall_default_rules" : "Default firewall rules",
         "pve_firewall_host_specific_configuration" : "Host Specific Configuration",
         "pve_firewall_ip_aliases" : "IP Aliases",
         "pve_firewall_ip_sets" : "IP Sets",
         "pve_firewall_ipfilter_section" : "Standard IP set `ipfilter-net*`",
         "pve_firewall_nft" : "nftables",
         "pve_firewall_nft_helpful_commands" : "Helpful Commands",
         "pve_firewall_security_groups" : "Security Groups",
         "pve_firewall_services_commands" : "Services and Commands",
         "pve_firewall_vm_container_configuration" : "VM/Container Configuration",
         "pve_firewall_vnet_configuration" : "VNet Configuration",
         "pveceph_create_mgr" : "Create Manager",
         "pveceph_create_mon" : "Create Monitors",
         "pveceph_destroy_mgr" : "Destroy Manager",
         "pveceph_destroy_mon" : "Destroy Monitors",
         "pveceph_fs" : "CephFS",
         "pveceph_fs_create" : "Create CephFS",
         "pveceph_fs_mds" : "Metadata Server (MDS)",
         "pveceph_scrub" : "Scrub & Deep Scrub",
         "pveceph_shutdown" : "Shutdown Proxmox VE + Ceph HCI Cluster",
         "pvecm_adding_nodes_with_separated_cluster_network" : "Adding Nodes with Separated Cluster Network",
         "pvecm_cluster_create_via_cli" : "Create via the Command Line",
         "pvecm_cluster_create_via_gui" : "Create via Web GUI",
         "pvecm_cluster_network" : "Cluster Network",
         "pvecm_cluster_network_requirements" : "Network Requirements",
         "pvecm_cluster_requirements" : "Requirements",
         "pvecm_corosync_addresses" : "Corosync Addresses",
         "pvecm_corosync_conf_glossary" : "Corosync Configuration Glossary",
         "pvecm_corosync_over_bonds" : "Corosync Over Bonds",
         "pvecm_create_cluster" : "Create a Cluster",
         "pvecm_edit_corosync_conf" : "Edit corosync.conf",
         "pvecm_join_node_to_cluster" : "Adding Nodes to the Cluster",
         "pvecm_migration_network" : "Migration Network",
         "pvecm_next_id_range" : "Guest VMID Auto-Selection",
         "pvecm_qdevice_status_flags" : "QDevice Status Flags",
         "pvecm_redundancy" : "Corosync Redundancy",
         "pvecm_separate_cluster_net_after_creation" : "Separate After Cluster Creation",
         "pvecm_separate_node_without_reinstall" : "Separate a Node Without Reinstalling",
         "pvedaemon_max_workers" : "Number of Workers",
         "pveproxy_custom_tls_cert" : "Alternative HTTPS certificate",
         "pveproxy_host_acls" : "Host based Access Control",
         "pveproxy_listening_address" : "Listening IP Address",
         "pveproxy_max_workers" : "Number of Workers",
         "pveproxy_real_ip" : "Real Client IP Logging",
         "pveproxy_response_compression" : "Response Compression",
         "pvesdn_config_common_options" : "Common Options",
         "pvesdn_config_controllers" : "Controllers",
         "pvesdn_config_dhcp" : "DHCP",
         "pvesdn_config_dns" : "DNS",
         "pvesdn_config_fabrics" : "Fabrics",
         "pvesdn_config_fabrics_ipv6" : "Notes on IPv6",
         "pvesdn_config_ipam" : "IPAM",
         "pvesdn_config_subnet" : "Subnets",
         "pvesdn_config_vnet" : "VNets",
         "pvesdn_config_zone" : "Zones",
         "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" : "Firewall Integration",
         "pvesdn_install_dhcp_ipam" : "DHCP IPAM",
         "pvesdn_install_frrouting" : "FRRouting",
         "pvesdn_installation" : "Installation",
         "pvesdn_ipam_plugin_netbox" : "NetBox IPAM Plugin",
         "pvesdn_ipam_plugin_phpipam" : "phpIPAM Plugin",
         "pvesdn_ipam_plugin_pveipam" : "PVE IPAM Plugin",
         "pvesdn_main_configuration" : "Configuration Overview",
         "pvesdn_notes" : "Notes",
         "pvesdn_openfabric" : "OpenFabric",
         "pvesdn_openfabric_fabric" : "On the Fabric",
         "pvesdn_openfabric_node" : "On the Node",
         "pvesdn_ospf" : "OSPF",
         "pvesdn_ospf_fabric" : "On the Fabric",
         "pvesdn_ospf_node" : "On the Node",
         "pvesdn_overview" : "Introduction",
         "pvesdn_setup_example_evpn" : "EVPN Setup Example",
         "pvesdn_setup_example_nat" : "Source NAT Example",
         "pvesdn_setup_example_qinq" : "QinQ Setup Example",
         "pvesdn_setup_example_simple" : "Simple Zone Example",
         "pvesdn_setup_example_vlan" : "VLAN Setup Example",
         "pvesdn_setup_example_vxlan" : "VXLAN Setup Example",
         "pvesdn_setup_examples" : "Examples",
         "pvesdn_support_status" : "Support Status",
         "pvesdn_tech_and_config_overview" : "Technology & Configuration",
         "pvesdn_zone_plugin_evpn" : "EVPN Zones",
         "pvesdn_zone_plugin_qinq" : "QinQ Zones",
         "pvesdn_zone_plugin_simple" : "Simple Zones",
         "pvesdn_zone_plugin_vlan" : "VLAN Zones",
         "pvesdn_zone_plugin_vxlan" : "VXLAN Zones",
         "pvesm_lvm_config" : "Configuration",
         "pvesr_schedule_format_examples" : "Examples:",
         "pvesr_schedule_time_format" : "Schedule Format",
         "pveum_authentication_realms" : "Authentication Realms",
         "pveum_configure_u2f" : "Server Side U2F Configuration",
         "pveum_configure_webauthn" : "Server Side Webauthn Configuration",
         "pveum_groups" : "Groups",
         "pveum_ldap_reserved_characters" : "Reserved characters",
         "pveum_ldap_sync" : "Syncing LDAP-Based Realms",
         "pveum_ldap_sync_options" : "Sync Options",
         "pveum_openid" : "OpenID Connect",
         "pveum_permission_management" : "Permission Management",
         "pveum_pools" : "Pools",
         "pveum_resource_pools" : "Resource Pools",
         "pveum_roles" : "Roles",
         "pveum_tfa_auth" : "Two-Factor Authentication",
         "pveum_tfa_lockout" : "Limits and Lockout of Two-Factor Authentication",
         "pveum_tokens" : "API Tokens",
         "pveum_user_configured_totp" : "User Configured TOTP Authentication",
         "pveum_user_configured_u2f" : "Activating U2F as a User",
         "pveum_users" : "Users",
         "qm_audio_device" : "Audio Device",
         "qm_bios_and_uefi" : "BIOS and UEFI",
         "qm_bootorder" : "Device Boot Order",
         "qm_cloud_init" : "Cloud-Init Support",
         "qm_configuration" : "Configuration",
         "qm_copy_and_clone" : "Copies and Clones",
         "qm_cpu" : "CPU",
         "qm_cpu_resource_limits" : "Resource Limits",
         "qm_display" : "Display",
         "qm_general_settings" : "General Settings",
         "qm_hard_disk" : "Hard Disk",
         "qm_hard_disk_bus" : "Bus/Controller",
         "qm_hard_disk_cache" : "Cache Mode",
         "qm_hard_disk_discard" : "Trim/Discard",
         "qm_hard_disk_formats" : "Image Format",
         "qm_hard_disk_iothread" : "IO Thread",
         "qm_hibernate" : "Hibernation",
         "qm_import_virtual_machines" : "Importing Virtual Machines",
         "qm_ivshmem" : "Inter-VM shared memory",
         "qm_meltdown_spectre" : "Meltdown / Spectre related CPU flags",
         "qm_memory" : "Memory",
         "qm_memory_encryption" : "Memory Encryption",
         "qm_memory_encryption_sev" : "AMD SEV",
         "qm_migration" : "Migration",
         "qm_network_device" : "Network Device",
         "qm_options" : "Options",
         "qm_os_settings" : "OS Settings",
         "qm_pci_passthrough" : "PCI(e) Passthrough",
         "qm_pci_passthrough_vm_config" : "VM Configuration",
         "qm_pci_viommu" : "vIOMMU (emulated IOMMU)",
         "qm_qemu_agent" : "QEMU Guest Agent",
         "qm_qga_auto_trim" : "Automatic TRIM Using QGA",
         "qm_qga_enable" : "Enable Guest Agent Communication",
         "qm_qga_fsfreeze" : "Filesystem Freeze & Thaw",
         "qm_snapshots" : "Snapshots",
         "qm_spice_enhancements" : "SPICE Enhancements",
         "qm_startup_and_shutdown" : "Automatic Start and Shutdown of Virtual Machines",
         "qm_system_settings" : "System Settings",
         "qm_templates" : "Virtual Machine Templates",
         "qm_tpm" : "Trusted Platform Module (TPM)",
         "qm_usb_passthrough" : "USB Passthrough",
         "qm_virtio_rng" : "VirtIO RNG",
         "qm_virtiofs" : "Virtiofs",
         "qm_virtual_machines_settings" : "Virtual Machines Settings",
         "repos_secure_apt" : "SecureApt",
         "resource_mapping" : "Resource Mapping",
         "storage_btrfs" : "BTRFS Backend",
         "storage_cephfs" : "Ceph Filesystem (CephFS)",
         "storage_cephfs_config" : "Configuration",
         "storage_cifs" : "CIFS Backend",
         "storage_directory" : "Directory Backend",
         "storage_iscsidirect" : "User Mode iSCSI Backend",
         "storage_lvm" : "LVM Backend",
         "storage_lvmthin" : "LVM thin Backend",
         "storage_nfs" : "NFS Backend",
         "storage_open_iscsi" : "Open-iSCSI initiator",
         "storage_pbs" : "Proxmox Backup Server",
         "storage_pbs_encryption" : "Encryption",
         "storage_rbd_config" : "Configuration",
         "storage_zfs" : "ZFS over ISCSI Backend",
         "storage_zfspool" : "Local ZFS Pool Backend",
         "sysadmin_apt_repo_formats" : "Repository Formats",
         "sysadmin_certificate_management" : "Certificate Management",
         "sysadmin_certs_acme_account" : "ACME Account",
         "sysadmin_certs_acme_automatic_renewal" : "Automatic renewal of ACME certificates",
         "sysadmin_certs_acme_dns_api_config" : "Configuring ACME DNS APIs for validation",
         "sysadmin_certs_acme_dns_challenge" : "ACME DNS API Challenge Plugin",
         "sysadmin_certs_acme_http_challenge" : "ACME HTTP Challenge Plugin",
         "sysadmin_certs_acme_plugins" : "ACME Plugins",
         "sysadmin_certs_acme_switch_from_staging" : "Example: Switching from the `staging` to the regular ACME directory",
         "sysadmin_certs_api_gui" : "Certificates for API and Web GUI",
         "sysadmin_certs_get_trusted_acme_cert" : "Trusted certificates via Let's Encrypt (ACME)",
         "sysadmin_certs_upload_custom" : "Upload Custom Certificate",
         "sysadmin_debian_firmware_repo" : "Debian Firmware Repository",
         "sysadmin_enterprise_repo" : "Proxmox VE Enterprise Repository",
         "sysadmin_firmware_cpu" : "CPU Microcode Updates",
         "sysadmin_firmware_persistent" : "Persistent Firmware",
         "sysadmin_firmware_runtime_files" : "Runtime Firmware Files",
         "sysadmin_firmware_troubleshooting" : "Troubleshooting",
         "sysadmin_network_bond" : "Linux Bond",
         "sysadmin_network_configuration" : "Network Configuration",
         "sysadmin_network_masquerading" : "Masquerading (NAT) with `iptables`",
         "sysadmin_network_routed" : "Routed Configuration",
         "sysadmin_network_vlan" : "VLAN 802.1Q",
         "sysadmin_no_subscription_repo" : "Proxmox VE No-Subscription Repository",
         "sysadmin_package_repositories" : "Package Repositories",
         "sysadmin_package_repositories_ceph" : "Ceph Repositories",
         "sysadmin_test_repo" : "Proxmox VE Test Repository",
         "sysadmin_zfs_add_cache_and_log_dev" : "Add cache and log to an existing pool",
         "sysadmin_zfs_change_failed_dev" : "Changing a failed device",
         "sysadmin_zfs_create_new_zpool" : "Create a new zpool",
         "sysadmin_zfs_create_new_zpool_raid0" : "Create a new pool with RAID-0",
         "sysadmin_zfs_create_new_zpool_raid1" : "Create a new pool with RAID-1",
         "sysadmin_zfs_create_new_zpool_raid10" : "Create a new pool with RAID-10",
         "sysadmin_zfs_create_new_zpool_raidz1" : "Create a new pool with RAIDZ-1",
         "sysadmin_zfs_create_new_zpool_with_cache" : "Create a new pool with cache (L2ARC)",
         "sysadmin_zfs_create_new_zpool_with_log" : "Create a new pool with log (ZIL)",
         "sysadmin_zfs_extend_raidz" : "Extend RAIDZ-N",
         "sysadmin_zfs_features" : "ZFS Pool Features",
         "sysadmin_zfs_limit_memory_usage" : "Limit ZFS Memory Usage",
         "sysadmin_zfs_raid_considerations" : "ZFS RAID Level Considerations",
         "sysadmin_zfs_raid_performance" : "Performance",
         "sysadmin_zfs_raid_size_space_usage_redundancy" : "Size, Space usage and Redundancy",
         "sysadmin_zfs_special_device" : "ZFS Special Device",
         "sysboot" : "Host Bootloader",
         "sysboot_determine_bootloader_used" : "Determine which Bootloader is Used",
         "sysboot_edit_kernel_cmdline" : "Editing the Kernel Commandline",
         "sysboot_grub" : "GRUB",
         "sysboot_installer_part_scheme" : "Partitioning Scheme Used by the Installer",
         "sysboot_kernel_pin" : "Override the Kernel-Version for next Boot",
         "sysboot_proxmox_boot_tool" : "Synchronizing the content of the ESP with `proxmox-boot-tool`",
         "sysboot_secure_boot" : "Secure Boot",
         "sysboot_systemd_boot" : "Systemd-boot",
         "sysboot_systemd_boot_config" : "Configuration",
         "system_software_updates" : "System Software Updates",
         "systemd_network_interface_names" : "Systemd Network Interface Names",
         "translation" : "Translating Proxmox VE",
         "udp" : "   batch-timeout = \"1s\"",
         "user-realms-ad" : "Microsoft Active Directory (AD)",
         "user-realms-ldap" : "LDAP",
         "user-realms-pam" : "Linux PAM Standard Authentication",
         "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" : "Configuration",
         "vzdump_jobs" : "Backup Jobs",
         "vzdump_notes" : "Backup Notes",
         "vzdump_protection" : "Backup Protection",
         "vzdump_restore" : "Restore",
         "vzdump_retention" : "Backup Retention",
         "zfs_compression" : "Compression in ZFS",
         "zfs_encryption" : "Encrypted ZFS Datasets",
         "zfs_swap" : "SWAP on ZFS"
      },
      "manvolnum" : {
         "_corosync_external_vote_support" : "Corosync External Vote Support",
         "_recommendations_for_a_healthy_ceph_cluster" : "Recommendations for a Healthy Ceph Cluster",
         "_repository_management" : "Repository Management",
         "advanced_btrfs_options" : "Advanced BTRFS Configuration Options",
         "advanced_lvm_options" : "Advanced LVM Configuration Options",
         "advanced_zfs_options" : "Advanced ZFS Configuration Options",
         "ballooning-target" : "RAM Usage Target for Ballooning",
         "ceph_rados_block_devices" : "Ceph RADOS Block Devices (RBD)",
         "chapter_btrfs" : "BTRFS",
         "chapter_firmware_updates" : "Firmware Updates",
         "chapter_gui" : "Graphical User Interface",
         "chapter_ha_manager" : "ha-manager(1)",
         "chapter_hyper_converged_infrastructure" : "Hyper-converged Infrastructure",
         "chapter_installation" : "Installing Proxmox VE",
         "chapter_introduction" : "Introduction",
         "chapter_lvm" : "Logical Volume Manager (LVM)",
         "chapter_notifications" : "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" : "Software-Defined Network",
         "chapter_pvesr" : "pvesr(1)",
         "chapter_qm_vcpu_list" : "Introduction",
         "chapter_storage" : "pvesm(1)",
         "chapter_system_administration" : "Host System Administration",
         "chapter_virtual_machines" : "qm(1)",
         "chapter_vzdump" : "vzdump(1)",
         "chapter_zfs" : "ZFS on Linux",
         "cli_general" : "General",
         "configuration_files" : "General",
         "configuration_files_casing" : "Casing of Property Names",
         "datacenter_configuration_file" : "datacenter.cfg(5)",
         "disk_health_monitoring" : "Disk Health Monitoring",
         "external_metric_server" : "External Metric Server",
         "first_guest_boot_delay" : "First Guest Boot Delay",
         "getting_help" : "Getting Help",
         "gui_consent_banner" : "Consent Banner",
         "gui_my_settings" : "My Settings",
         "gui_tags" : "Tags",
         "ha_manager_crm" : "Cluster Resource Manager",
         "ha_manager_crs" : "Cluster Resource Scheduling",
         "ha_manager_error_recovery" : "Error Recovery",
         "ha_manager_fencing" : "Fencing",
         "ha_manager_groups" : "Groups",
         "ha_manager_lrm" : "Local Resource Manager",
         "ha_manager_node_affinity_rules" : "Node Affinity Rules",
         "ha_manager_node_maintenance" : "Node Maintenance",
         "ha_manager_package_updates" : "Package Updates",
         "ha_manager_resource_affinity_rules" : "Resource Affinity Rules",
         "ha_manager_resource_config" : "Resources",
         "ha_manager_resources" : "Resources",
         "ha_manager_rule_conflicts" : "Rule Conflicts and Errors",
         "ha_manager_rules" : "Rules",
         "ha_manager_service_states" : "Service States",
         "ha_manager_shutdown_policy" : "Shutdown Policy",
         "ha_manager_start_failure_policy" : "Start Failure Policy",
         "howto_improve_pve_docs" : "Improving the Proxmox VE Documentation",
         "i18n_with_git" : "Translating with git",
         "i18n_without_git" : "Translating without git",
         "install_minimal_requirements" : "Minimum Requirements, for Evaluation",
         "install_recommended_requirements" : "Recommended System Requirements",
         "installation_installer" : "Using the Proxmox VE Installer",
         "installation_prepare_media" : "Prepare Installation Media",
         "installation_unattended" : "Unattended Installation",
         "intro_central_management" : "Central Management",
         "intro_project_history" : "Project History",
         "kernel_samepage_merging" : "Kernel Samepage Merging (KSM)",
         "metric_server_graphite" : "Graphite server configuration",
         "metric_server_influxdb" : "Influxdb plugin configuration",
         "network_override_device_names" : "Overriding Network Device Names",
         "network_pin_naming_scheme_version" : "Pinning a specific naming scheme version",
         "nomodeset_kernel_param" : "Adding the `nomodeset` Kernel Parameter",
         "notification_events" : "Notification Events",
         "notification_matchers" : "Notification Matchers",
         "notification_matchers_calendar" : "Calendar Matching Rules",
         "notification_matchers_field" : "Field Matching Rules",
         "notification_matchers_severity" : "Severity Matching Rules",
         "notification_mode" : "Notification Mode",
         "notification_targets" : "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" : "Changing CGroup Version",
         "pct_cgroup_compat" : "CGroup Version Compatibility",
         "pct_configuration" : "Configuration",
         "pct_container_images" : "Container Images",
         "pct_container_network" : "Network",
         "pct_container_storage" : "Container Storage",
         "pct_cpu" : "CPU",
         "pct_general" : "General Settings",
         "pct_memory" : "Memory",
         "pct_migration" : "Migration",
         "pct_mount_points" : "Mount Points",
         "pct_options" : "Options",
         "pct_settings" : "Container Settings",
         "pct_snapshots" : "Snapshots",
         "pct_startup_and_shutdown" : "Automatic Start and Shutdown of Containers",
         "pct_supported_distributions" : "Supported Distributions",
         "pve_ceph_configuration" : "Ceph Configuration",
         "pve_ceph_device_classes" : "Ceph CRUSH & Device Classes",
         "pve_ceph_ec_pools" : "Erasure Coded Pools",
         "pve_ceph_install" : "CLI Installation of Ceph Packages",
         "pve_ceph_install_wizard" : "Initial Ceph Installation & Configuration",
         "pve_ceph_manager" : "Ceph Manager",
         "pve_ceph_mon_and_ts" : "Ceph Monitoring and Troubleshooting",
         "pve_ceph_monitors" : "Ceph Monitor",
         "pve_ceph_osd_create" : "Create OSDs",
         "pve_ceph_osd_destroy" : "Destroy OSDs",
         "pve_ceph_osd_replace" : "Replace OSDs",
         "pve_ceph_osds" : "Ceph OSDs",
         "pve_ceph_pools" : "Ceph Pools",
         "pve_ceph_ts" : "Troubleshooting",
         "pve_firewall_cluster_wide_setup" : "Cluster Wide Setup",
         "pve_firewall_default_rules" : "Default firewall rules",
         "pve_firewall_host_specific_configuration" : "Host Specific Configuration",
         "pve_firewall_ip_aliases" : "IP Aliases",
         "pve_firewall_ip_sets" : "IP Sets",
         "pve_firewall_ipfilter_section" : "Standard IP set `ipfilter-net*`",
         "pve_firewall_nft" : "nftables",
         "pve_firewall_nft_helpful_commands" : "Helpful Commands",
         "pve_firewall_security_groups" : "Security Groups",
         "pve_firewall_services_commands" : "Services and Commands",
         "pve_firewall_vm_container_configuration" : "VM/Container Configuration",
         "pve_firewall_vnet_configuration" : "VNet Configuration",
         "pveceph_create_mgr" : "Create Manager",
         "pveceph_create_mon" : "Create Monitors",
         "pveceph_destroy_mgr" : "Destroy Manager",
         "pveceph_destroy_mon" : "Destroy Monitors",
         "pveceph_fs" : "CephFS",
         "pveceph_fs_create" : "Create CephFS",
         "pveceph_fs_mds" : "Metadata Server (MDS)",
         "pveceph_scrub" : "Scrub & Deep Scrub",
         "pveceph_shutdown" : "Shutdown Proxmox VE + Ceph HCI Cluster",
         "pvecm_adding_nodes_with_separated_cluster_network" : "Adding Nodes with Separated Cluster Network",
         "pvecm_cluster_create_via_cli" : "Create via the Command Line",
         "pvecm_cluster_create_via_gui" : "Create via Web GUI",
         "pvecm_cluster_network" : "Cluster Network",
         "pvecm_cluster_network_requirements" : "Network Requirements",
         "pvecm_cluster_requirements" : "Requirements",
         "pvecm_corosync_addresses" : "Corosync Addresses",
         "pvecm_corosync_conf_glossary" : "Corosync Configuration Glossary",
         "pvecm_corosync_over_bonds" : "Corosync Over Bonds",
         "pvecm_create_cluster" : "Create a Cluster",
         "pvecm_edit_corosync_conf" : "Edit corosync.conf",
         "pvecm_join_node_to_cluster" : "Adding Nodes to the Cluster",
         "pvecm_migration_network" : "Migration Network",
         "pvecm_next_id_range" : "Guest VMID Auto-Selection",
         "pvecm_qdevice_status_flags" : "QDevice Status Flags",
         "pvecm_redundancy" : "Corosync Redundancy",
         "pvecm_separate_cluster_net_after_creation" : "Separate After Cluster Creation",
         "pvecm_separate_node_without_reinstall" : "Separate a Node Without Reinstalling",
         "pvedaemon_max_workers" : "Number of Workers",
         "pveproxy_custom_tls_cert" : "Alternative HTTPS certificate",
         "pveproxy_host_acls" : "Host based Access Control",
         "pveproxy_listening_address" : "Listening IP Address",
         "pveproxy_max_workers" : "Number of Workers",
         "pveproxy_real_ip" : "Real Client IP Logging",
         "pveproxy_response_compression" : "Response Compression",
         "pvesdn_config_common_options" : "Common Options",
         "pvesdn_config_controllers" : "Controllers",
         "pvesdn_config_dhcp" : "DHCP",
         "pvesdn_config_dns" : "DNS",
         "pvesdn_config_fabrics" : "Fabrics",
         "pvesdn_config_fabrics_ipv6" : "Notes on IPv6",
         "pvesdn_config_ipam" : "IPAM",
         "pvesdn_config_subnet" : "Subnets",
         "pvesdn_config_vnet" : "VNets",
         "pvesdn_config_zone" : "Zones",
         "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" : "Firewall Integration",
         "pvesdn_install_dhcp_ipam" : "DHCP IPAM",
         "pvesdn_install_frrouting" : "FRRouting",
         "pvesdn_installation" : "Installation",
         "pvesdn_ipam_plugin_netbox" : "NetBox IPAM Plugin",
         "pvesdn_ipam_plugin_phpipam" : "phpIPAM Plugin",
         "pvesdn_ipam_plugin_pveipam" : "PVE IPAM Plugin",
         "pvesdn_main_configuration" : "Configuration Overview",
         "pvesdn_notes" : "Notes",
         "pvesdn_openfabric" : "OpenFabric",
         "pvesdn_openfabric_fabric" : "On the Fabric",
         "pvesdn_openfabric_node" : "On the Node",
         "pvesdn_ospf" : "OSPF",
         "pvesdn_ospf_fabric" : "On the Fabric",
         "pvesdn_ospf_node" : "On the Node",
         "pvesdn_overview" : "Introduction",
         "pvesdn_setup_example_evpn" : "EVPN Setup Example",
         "pvesdn_setup_example_nat" : "Source NAT Example",
         "pvesdn_setup_example_qinq" : "QinQ Setup Example",
         "pvesdn_setup_example_simple" : "Simple Zone Example",
         "pvesdn_setup_example_vlan" : "VLAN Setup Example",
         "pvesdn_setup_example_vxlan" : "VXLAN Setup Example",
         "pvesdn_setup_examples" : "Examples",
         "pvesdn_support_status" : "Support Status",
         "pvesdn_tech_and_config_overview" : "Technology & Configuration",
         "pvesdn_zone_plugin_evpn" : "EVPN Zones",
         "pvesdn_zone_plugin_qinq" : "QinQ Zones",
         "pvesdn_zone_plugin_simple" : "Simple Zones",
         "pvesdn_zone_plugin_vlan" : "VLAN Zones",
         "pvesdn_zone_plugin_vxlan" : "VXLAN Zones",
         "pvesm_lvm_config" : "Configuration",
         "pvesr_schedule_format_examples" : "Examples:",
         "pvesr_schedule_time_format" : "Schedule Format",
         "pveum_authentication_realms" : "Authentication Realms",
         "pveum_configure_u2f" : "Server Side U2F Configuration",
         "pveum_configure_webauthn" : "Server Side Webauthn Configuration",
         "pveum_groups" : "Groups",
         "pveum_ldap_reserved_characters" : "Reserved characters",
         "pveum_ldap_sync" : "Syncing LDAP-Based Realms",
         "pveum_ldap_sync_options" : "Sync Options",
         "pveum_openid" : "OpenID Connect",
         "pveum_permission_management" : "Permission Management",
         "pveum_pools" : "Pools",
         "pveum_resource_pools" : "Resource Pools",
         "pveum_roles" : "Roles",
         "pveum_tfa_auth" : "Two-Factor Authentication",
         "pveum_tfa_lockout" : "Limits and Lockout of Two-Factor Authentication",
         "pveum_tokens" : "API Tokens",
         "pveum_user_configured_totp" : "User Configured TOTP Authentication",
         "pveum_user_configured_u2f" : "Activating U2F as a User",
         "pveum_users" : "Users",
         "qm_audio_device" : "Audio Device",
         "qm_bios_and_uefi" : "BIOS and UEFI",
         "qm_bootorder" : "Device Boot Order",
         "qm_cloud_init" : "Cloud-Init Support",
         "qm_configuration" : "Configuration",
         "qm_copy_and_clone" : "Copies and Clones",
         "qm_cpu" : "CPU",
         "qm_cpu_resource_limits" : "Resource Limits",
         "qm_display" : "Display",
         "qm_general_settings" : "General Settings",
         "qm_hard_disk" : "Hard Disk",
         "qm_hard_disk_bus" : "Bus/Controller",
         "qm_hard_disk_cache" : "Cache Mode",
         "qm_hard_disk_discard" : "Trim/Discard",
         "qm_hard_disk_formats" : "Image Format",
         "qm_hard_disk_iothread" : "IO Thread",
         "qm_hibernate" : "Hibernation",
         "qm_import_virtual_machines" : "Importing Virtual Machines",
         "qm_ivshmem" : "Inter-VM shared memory",
         "qm_meltdown_spectre" : "Meltdown / Spectre related CPU flags",
         "qm_memory" : "Memory",
         "qm_memory_encryption" : "Memory Encryption",
         "qm_memory_encryption_sev" : "AMD SEV",
         "qm_migration" : "Migration",
         "qm_network_device" : "Network Device",
         "qm_options" : "Options",
         "qm_os_settings" : "OS Settings",
         "qm_pci_passthrough" : "PCI(e) Passthrough",
         "qm_pci_passthrough_vm_config" : "VM Configuration",
         "qm_pci_viommu" : "vIOMMU (emulated IOMMU)",
         "qm_qemu_agent" : "QEMU Guest Agent",
         "qm_qga_auto_trim" : "Automatic TRIM Using QGA",
         "qm_qga_enable" : "Enable Guest Agent Communication",
         "qm_qga_fsfreeze" : "Filesystem Freeze & Thaw",
         "qm_snapshots" : "Snapshots",
         "qm_spice_enhancements" : "SPICE Enhancements",
         "qm_startup_and_shutdown" : "Automatic Start and Shutdown of Virtual Machines",
         "qm_system_settings" : "System Settings",
         "qm_templates" : "Virtual Machine Templates",
         "qm_tpm" : "Trusted Platform Module (TPM)",
         "qm_usb_passthrough" : "USB Passthrough",
         "qm_virtio_rng" : "VirtIO RNG",
         "qm_virtiofs" : "Virtiofs",
         "qm_virtual_machines_settings" : "Virtual Machines Settings",
         "repos_secure_apt" : "SecureApt",
         "resource_mapping" : "Resource Mapping",
         "storage_btrfs" : "BTRFS Backend",
         "storage_cephfs" : "Ceph Filesystem (CephFS)",
         "storage_cephfs_config" : "Configuration",
         "storage_cifs" : "CIFS Backend",
         "storage_directory" : "Directory Backend",
         "storage_iscsidirect" : "User Mode iSCSI Backend",
         "storage_lvm" : "LVM Backend",
         "storage_lvmthin" : "LVM thin Backend",
         "storage_nfs" : "NFS Backend",
         "storage_open_iscsi" : "Open-iSCSI initiator",
         "storage_pbs" : "Proxmox Backup Server",
         "storage_pbs_encryption" : "Encryption",
         "storage_rbd_config" : "Configuration",
         "storage_zfs" : "ZFS over ISCSI Backend",
         "storage_zfspool" : "Local ZFS Pool Backend",
         "sysadmin_apt_repo_formats" : "Repository Formats",
         "sysadmin_certificate_management" : "Certificate Management",
         "sysadmin_certs_acme_account" : "ACME Account",
         "sysadmin_certs_acme_automatic_renewal" : "Automatic renewal of ACME certificates",
         "sysadmin_certs_acme_dns_api_config" : "Configuring ACME DNS APIs for validation",
         "sysadmin_certs_acme_dns_challenge" : "ACME DNS API Challenge Plugin",
         "sysadmin_certs_acme_http_challenge" : "ACME HTTP Challenge Plugin",
         "sysadmin_certs_acme_plugins" : "ACME Plugins",
         "sysadmin_certs_acme_switch_from_staging" : "Example: Switching from the `staging` to the regular ACME directory",
         "sysadmin_certs_api_gui" : "Certificates for API and Web GUI",
         "sysadmin_certs_get_trusted_acme_cert" : "Trusted certificates via Let's Encrypt (ACME)",
         "sysadmin_certs_upload_custom" : "Upload Custom Certificate",
         "sysadmin_debian_firmware_repo" : "Debian Firmware Repository",
         "sysadmin_enterprise_repo" : "Proxmox VE Enterprise Repository",
         "sysadmin_firmware_cpu" : "CPU Microcode Updates",
         "sysadmin_firmware_persistent" : "Persistent Firmware",
         "sysadmin_firmware_runtime_files" : "Runtime Firmware Files",
         "sysadmin_firmware_troubleshooting" : "Troubleshooting",
         "sysadmin_network_bond" : "Linux Bond",
         "sysadmin_network_configuration" : "Network Configuration",
         "sysadmin_network_masquerading" : "Masquerading (NAT) with `iptables`",
         "sysadmin_network_routed" : "Routed Configuration",
         "sysadmin_network_vlan" : "VLAN 802.1Q",
         "sysadmin_no_subscription_repo" : "Proxmox VE No-Subscription Repository",
         "sysadmin_package_repositories" : "Package Repositories",
         "sysadmin_package_repositories_ceph" : "Ceph Repositories",
         "sysadmin_test_repo" : "Proxmox VE Test Repository",
         "sysadmin_zfs_add_cache_and_log_dev" : "Add cache and log to an existing pool",
         "sysadmin_zfs_change_failed_dev" : "Changing a failed device",
         "sysadmin_zfs_create_new_zpool" : "Create a new zpool",
         "sysadmin_zfs_create_new_zpool_raid0" : "Create a new pool with RAID-0",
         "sysadmin_zfs_create_new_zpool_raid1" : "Create a new pool with RAID-1",
         "sysadmin_zfs_create_new_zpool_raid10" : "Create a new pool with RAID-10",
         "sysadmin_zfs_create_new_zpool_raidz1" : "Create a new pool with RAIDZ-1",
         "sysadmin_zfs_create_new_zpool_with_cache" : "Create a new pool with cache (L2ARC)",
         "sysadmin_zfs_create_new_zpool_with_log" : "Create a new pool with log (ZIL)",
         "sysadmin_zfs_extend_raidz" : "Extend RAIDZ-N",
         "sysadmin_zfs_features" : "ZFS Pool Features",
         "sysadmin_zfs_limit_memory_usage" : "Limit ZFS Memory Usage",
         "sysadmin_zfs_raid_considerations" : "ZFS RAID Level Considerations",
         "sysadmin_zfs_raid_performance" : "Performance",
         "sysadmin_zfs_raid_size_space_usage_redundancy" : "Size, Space usage and Redundancy",
         "sysadmin_zfs_special_device" : "ZFS Special Device",
         "sysboot" : "Host Bootloader",
         "sysboot_determine_bootloader_used" : "Determine which Bootloader is Used",
         "sysboot_edit_kernel_cmdline" : "Editing the Kernel Commandline",
         "sysboot_grub" : "GRUB",
         "sysboot_installer_part_scheme" : "Partitioning Scheme Used by the Installer",
         "sysboot_kernel_pin" : "Override the Kernel-Version for next Boot",
         "sysboot_proxmox_boot_tool" : "Synchronizing the content of the ESP with `proxmox-boot-tool`",
         "sysboot_secure_boot" : "Secure Boot",
         "sysboot_systemd_boot" : "Systemd-boot",
         "sysboot_systemd_boot_config" : "Configuration",
         "system_software_updates" : "System Software Updates",
         "systemd_network_interface_names" : "Systemd Network Interface Names",
         "translation" : "Translating Proxmox VE",
         "udp" : "   batch-timeout = \"1s\"",
         "user-realms-ad" : "Microsoft Active Directory (AD)",
         "user-realms-ldap" : "LDAP",
         "user-realms-pam" : "Linux PAM Standard Authentication",
         "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" : "Configuration",
         "vzdump_jobs" : "Backup Jobs",
         "vzdump_notes" : "Backup Notes",
         "vzdump_protection" : "Backup Protection",
         "vzdump_restore" : "Restore",
         "vzdump_retention" : "Backup Retention",
         "zfs_compression" : "Compression in ZFS",
         "zfs_encryption" : "Encrypted ZFS Datasets",
         "zfs_swap" : "SWAP on ZFS"
      },
      "wiki" : {
         "_corosync_external_vote_support" : "Corosync External Vote Support",
         "_recommendations_for_a_healthy_ceph_cluster" : "Recommendations for a Healthy Ceph Cluster",
         "_repository_management" : "Repository Management",
         "advanced_btrfs_options" : "Advanced BTRFS Configuration Options",
         "advanced_lvm_options" : "Advanced LVM Configuration Options",
         "advanced_zfs_options" : "Advanced ZFS Configuration Options",
         "ballooning-target" : "RAM Usage Target for Ballooning",
         "ceph_rados_block_devices" : "Ceph RADOS Block Devices (RBD)",
         "chapter_btrfs" : "BTRFS",
         "chapter_calendar_events" : "Calendar Events",
         "chapter_firmware_updates" : "Firmware Updates",
         "chapter_gui" : "Graphical User Interface",
         "chapter_ha_manager" : "High Availability",
         "chapter_hyper_converged_infrastructure" : "Hyper-converged Infrastructure",
         "chapter_installation" : "Installing Proxmox VE",
         "chapter_introduction" : "Introduction",
         "chapter_lvm" : "Logical Volume Manager (LVM)",
         "chapter_notifications" : "Notifications",
         "chapter_pve_firewall" : "Proxmox VE Firewall",
         "chapter_pveceph" : "Deploy Hyper-Converged Ceph Cluster",
         "chapter_pvesdn" : "Software-Defined Network",
         "chapter_qm_vcpu_list" : "Introduction",
         "chapter_storage" : "Proxmox VE Storage",
         "chapter_system_administration" : "Host System Administration",
         "chapter_virtual_machines" : "QEMU/KVM Virtual Machines",
         "chapter_vzdump" : "Backup and Restore",
         "chapter_zfs" : "ZFS on Linux",
         "cli_general" : "General",
         "configuration_files" : "General",
         "configuration_files_casing" : "Casing of Property Names",
         "datacenter_configuration_file" : "Datacenter Configuration",
         "disk_health_monitoring" : "Disk Health Monitoring",
         "external_metric_server" : "External Metric Server",
         "first_guest_boot_delay" : "First Guest Boot Delay",
         "getting_help" : "Getting Help",
         "gui_consent_banner" : "Consent Banner",
         "gui_my_settings" : "My Settings",
         "gui_tags" : "Tags",
         "ha_manager_crm" : "Cluster Resource Manager",
         "ha_manager_crs" : "Cluster Resource Scheduling",
         "ha_manager_error_recovery" : "Error Recovery",
         "ha_manager_fencing" : "Fencing",
         "ha_manager_groups" : "Groups",
         "ha_manager_lrm" : "Local Resource Manager",
         "ha_manager_node_affinity_rules" : "Node Affinity Rules",
         "ha_manager_node_maintenance" : "Node Maintenance",
         "ha_manager_package_updates" : "Package Updates",
         "ha_manager_resource_affinity_rules" : "Resource Affinity Rules",
         "ha_manager_resource_config" : "Resources",
         "ha_manager_resources" : "Resources",
         "ha_manager_rule_conflicts" : "Rule Conflicts and Errors",
         "ha_manager_rules" : "Rules",
         "ha_manager_service_states" : "Service States",
         "ha_manager_shutdown_policy" : "Shutdown Policy",
         "ha_manager_start_failure_policy" : "Start Failure Policy",
         "howto_improve_pve_docs" : "Improving the Proxmox VE Documentation",
         "i18n_with_git" : "Translating with git",
         "i18n_without_git" : "Translating without git",
         "install_minimal_requirements" : "Minimum Requirements, for Evaluation",
         "install_recommended_requirements" : "Recommended System Requirements",
         "installation_installer" : "Using the Proxmox VE Installer",
         "installation_prepare_media" : "Prepare Installation Media",
         "installation_unattended" : "Unattended Installation",
         "intro_central_management" : "Central Management",
         "intro_project_history" : "Project History",
         "kernel_samepage_merging" : "Kernel Samepage Merging (KSM)",
         "metric_server_graphite" : "Graphite server configuration",
         "metric_server_influxdb" : "Influxdb plugin configuration",
         "network_override_device_names" : "Overriding Network Device Names",
         "network_pin_naming_scheme_version" : "Pinning a specific naming scheme version",
         "nomodeset_kernel_param" : "Adding the `nomodeset` Kernel Parameter",
         "notification_events" : "Notification Events",
         "notification_matchers" : "Notification Matchers",
         "notification_matchers_calendar" : "Calendar Matching Rules",
         "notification_matchers_field" : "Field Matching Rules",
         "notification_matchers_severity" : "Severity Matching Rules",
         "notification_mode" : "Notification Mode",
         "notification_targets" : "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" : "Changing CGroup Version",
         "pct_cgroup_compat" : "CGroup Version Compatibility",
         "pct_configuration" : "Configuration",
         "pct_container_images" : "Container Images",
         "pct_container_network" : "Network",
         "pct_container_storage" : "Container Storage",
         "pct_cpu" : "CPU",
         "pct_general" : "General Settings",
         "pct_memory" : "Memory",
         "pct_migration" : "Migration",
         "pct_mount_points" : "Mount Points",
         "pct_options" : "Options",
         "pct_settings" : "Container Settings",
         "pct_snapshots" : "Snapshots",
         "pct_startup_and_shutdown" : "Automatic Start and Shutdown of Containers",
         "pct_supported_distributions" : "Supported Distributions",
         "proxmox_node_management" : "Proxmox Node Management",
         "pve_ceph_configuration" : "Ceph Configuration",
         "pve_ceph_device_classes" : "Ceph CRUSH & Device Classes",
         "pve_ceph_ec_pools" : "Erasure Coded Pools",
         "pve_ceph_install" : "CLI Installation of Ceph Packages",
         "pve_ceph_install_wizard" : "Initial Ceph Installation & Configuration",
         "pve_ceph_manager" : "Ceph Manager",
         "pve_ceph_mon_and_ts" : "Ceph Monitoring and Troubleshooting",
         "pve_ceph_monitors" : "Ceph Monitor",
         "pve_ceph_osd_create" : "Create OSDs",
         "pve_ceph_osd_destroy" : "Destroy OSDs",
         "pve_ceph_osd_replace" : "Replace OSDs",
         "pve_ceph_osds" : "Ceph OSDs",
         "pve_ceph_pools" : "Ceph Pools",
         "pve_ceph_ts" : "Troubleshooting",
         "pve_firewall_cluster_wide_setup" : "Cluster Wide Setup",
         "pve_firewall_default_rules" : "Default firewall rules",
         "pve_firewall_host_specific_configuration" : "Host Specific Configuration",
         "pve_firewall_ip_aliases" : "IP Aliases",
         "pve_firewall_ip_sets" : "IP Sets",
         "pve_firewall_ipfilter_section" : "Standard IP set `ipfilter-net*`",
         "pve_firewall_nft" : "nftables",
         "pve_firewall_nft_helpful_commands" : "Helpful Commands",
         "pve_firewall_security_groups" : "Security Groups",
         "pve_firewall_services_commands" : "Services and Commands",
         "pve_firewall_vm_container_configuration" : "VM/Container Configuration",
         "pve_firewall_vnet_configuration" : "VNet Configuration",
         "pveceph_create_mgr" : "Create Manager",
         "pveceph_create_mon" : "Create Monitors",
         "pveceph_destroy_mgr" : "Destroy Manager",
         "pveceph_destroy_mon" : "Destroy Monitors",
         "pveceph_fs" : "CephFS",
         "pveceph_fs_create" : "Create CephFS",
         "pveceph_fs_mds" : "Metadata Server (MDS)",
         "pveceph_scrub" : "Scrub & Deep Scrub",
         "pveceph_shutdown" : "Shutdown Proxmox VE + Ceph HCI Cluster",
         "pvecm_adding_nodes_with_separated_cluster_network" : "Adding Nodes with Separated Cluster Network",
         "pvecm_cluster_create_via_cli" : "Create via the Command Line",
         "pvecm_cluster_create_via_gui" : "Create via Web GUI",
         "pvecm_cluster_network" : "Cluster Network",
         "pvecm_cluster_network_requirements" : "Network Requirements",
         "pvecm_cluster_requirements" : "Requirements",
         "pvecm_corosync_addresses" : "Corosync Addresses",
         "pvecm_corosync_conf_glossary" : "Corosync Configuration Glossary",
         "pvecm_corosync_over_bonds" : "Corosync Over Bonds",
         "pvecm_create_cluster" : "Create a Cluster",
         "pvecm_edit_corosync_conf" : "Edit corosync.conf",
         "pvecm_join_node_to_cluster" : "Adding Nodes to the Cluster",
         "pvecm_migration_network" : "Migration Network",
         "pvecm_next_id_range" : "Guest VMID Auto-Selection",
         "pvecm_qdevice_status_flags" : "QDevice Status Flags",
         "pvecm_redundancy" : "Corosync Redundancy",
         "pvecm_separate_cluster_net_after_creation" : "Separate After Cluster Creation",
         "pvecm_separate_node_without_reinstall" : "Separate a Node Without Reinstalling",
         "pvedaemon_max_workers" : "Number of Workers",
         "pveproxy_custom_tls_cert" : "Alternative HTTPS certificate",
         "pveproxy_host_acls" : "Host based Access Control",
         "pveproxy_listening_address" : "Listening IP Address",
         "pveproxy_max_workers" : "Number of Workers",
         "pveproxy_real_ip" : "Real Client IP Logging",
         "pveproxy_response_compression" : "Response Compression",
         "pvesdn_config_common_options" : "Common Options",
         "pvesdn_config_controllers" : "Controllers",
         "pvesdn_config_dhcp" : "DHCP",
         "pvesdn_config_dns" : "DNS",
         "pvesdn_config_fabrics" : "Fabrics",
         "pvesdn_config_fabrics_ipv6" : "Notes on IPv6",
         "pvesdn_config_ipam" : "IPAM",
         "pvesdn_config_subnet" : "Subnets",
         "pvesdn_config_vnet" : "VNets",
         "pvesdn_config_zone" : "Zones",
         "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" : "Firewall Integration",
         "pvesdn_install_dhcp_ipam" : "DHCP IPAM",
         "pvesdn_install_frrouting" : "FRRouting",
         "pvesdn_installation" : "Installation",
         "pvesdn_ipam_plugin_netbox" : "NetBox IPAM Plugin",
         "pvesdn_ipam_plugin_phpipam" : "phpIPAM Plugin",
         "pvesdn_ipam_plugin_pveipam" : "PVE IPAM Plugin",
         "pvesdn_main_configuration" : "Configuration Overview",
         "pvesdn_notes" : "Notes",
         "pvesdn_openfabric" : "OpenFabric",
         "pvesdn_openfabric_fabric" : "On the Fabric",
         "pvesdn_openfabric_node" : "On the Node",
         "pvesdn_ospf" : "OSPF",
         "pvesdn_ospf_fabric" : "On the Fabric",
         "pvesdn_ospf_node" : "On the Node",
         "pvesdn_overview" : "Introduction",
         "pvesdn_setup_example_evpn" : "EVPN Setup Example",
         "pvesdn_setup_example_nat" : "Source NAT Example",
         "pvesdn_setup_example_qinq" : "QinQ Setup Example",
         "pvesdn_setup_example_simple" : "Simple Zone Example",
         "pvesdn_setup_example_vlan" : "VLAN Setup Example",
         "pvesdn_setup_example_vxlan" : "VXLAN Setup Example",
         "pvesdn_setup_examples" : "Examples",
         "pvesdn_support_status" : "Support Status",
         "pvesdn_tech_and_config_overview" : "Technology & Configuration",
         "pvesdn_zone_plugin_evpn" : "EVPN Zones",
         "pvesdn_zone_plugin_qinq" : "QinQ Zones",
         "pvesdn_zone_plugin_simple" : "Simple Zones",
         "pvesdn_zone_plugin_vlan" : "VLAN Zones",
         "pvesdn_zone_plugin_vxlan" : "VXLAN Zones",
         "pvesm_lvm_config" : "Configuration",
         "pvesr_schedule_format_examples" : "Examples:",
         "pvesr_schedule_time_format" : "Schedule Format",
         "pveum_authentication_realms" : "Authentication Realms",
         "pveum_configure_u2f" : "Server Side U2F Configuration",
         "pveum_configure_webauthn" : "Server Side Webauthn Configuration",
         "pveum_groups" : "Groups",
         "pveum_ldap_reserved_characters" : "Reserved characters",
         "pveum_ldap_sync" : "Syncing LDAP-Based Realms",
         "pveum_ldap_sync_options" : "Sync Options",
         "pveum_openid" : "OpenID Connect",
         "pveum_permission_management" : "Permission Management",
         "pveum_pools" : "Pools",
         "pveum_resource_pools" : "Resource Pools",
         "pveum_roles" : "Roles",
         "pveum_tfa_auth" : "Two-Factor Authentication",
         "pveum_tfa_lockout" : "Limits and Lockout of Two-Factor Authentication",
         "pveum_tokens" : "API Tokens",
         "pveum_user_configured_totp" : "User Configured TOTP Authentication",
         "pveum_user_configured_u2f" : "Activating U2F as a User",
         "pveum_users" : "Users",
         "qm_audio_device" : "Audio Device",
         "qm_bios_and_uefi" : "BIOS and UEFI",
         "qm_bootorder" : "Device Boot Order",
         "qm_cloud_init" : "Cloud-Init Support",
         "qm_configuration" : "Configuration",
         "qm_copy_and_clone" : "Copies and Clones",
         "qm_cpu" : "CPU",
         "qm_cpu_resource_limits" : "Resource Limits",
         "qm_display" : "Display",
         "qm_general_settings" : "General Settings",
         "qm_hard_disk" : "Hard Disk",
         "qm_hard_disk_bus" : "Bus/Controller",
         "qm_hard_disk_cache" : "Cache Mode",
         "qm_hard_disk_discard" : "Trim/Discard",
         "qm_hard_disk_formats" : "Image Format",
         "qm_hard_disk_iothread" : "IO Thread",
         "qm_hibernate" : "Hibernation",
         "qm_import_virtual_machines" : "Importing Virtual Machines",
         "qm_ivshmem" : "Inter-VM shared memory",
         "qm_meltdown_spectre" : "Meltdown / Spectre related CPU flags",
         "qm_memory" : "Memory",
         "qm_memory_encryption" : "Memory Encryption",
         "qm_memory_encryption_sev" : "AMD SEV",
         "qm_migration" : "Migration",
         "qm_network_device" : "Network Device",
         "qm_options" : "Options",
         "qm_os_settings" : "OS Settings",
         "qm_pci_passthrough" : "PCI(e) Passthrough",
         "qm_pci_passthrough_vm_config" : "VM Configuration",
         "qm_pci_viommu" : "vIOMMU (emulated IOMMU)",
         "qm_qemu_agent" : "QEMU Guest Agent",
         "qm_qga_auto_trim" : "Automatic TRIM Using QGA",
         "qm_qga_enable" : "Enable Guest Agent Communication",
         "qm_qga_fsfreeze" : "Filesystem Freeze & Thaw",
         "qm_snapshots" : "Snapshots",
         "qm_spice_enhancements" : "SPICE Enhancements",
         "qm_startup_and_shutdown" : "Automatic Start and Shutdown of Virtual Machines",
         "qm_system_settings" : "System Settings",
         "qm_templates" : "Virtual Machine Templates",
         "qm_tpm" : "Trusted Platform Module (TPM)",
         "qm_usb_passthrough" : "USB Passthrough",
         "qm_virtio_rng" : "VirtIO RNG",
         "qm_virtiofs" : "Virtiofs",
         "qm_virtual_machines_settings" : "Virtual Machines Settings",
         "repos_secure_apt" : "SecureApt",
         "resource_mapping" : "Resource Mapping",
         "storage_btrfs" : "BTRFS Backend",
         "storage_cephfs" : "Ceph Filesystem (CephFS)",
         "storage_cephfs_config" : "Configuration",
         "storage_cifs" : "CIFS Backend",
         "storage_directory" : "Directory Backend",
         "storage_iscsidirect" : "User Mode iSCSI Backend",
         "storage_lvm" : "LVM Backend",
         "storage_lvmthin" : "LVM thin Backend",
         "storage_nfs" : "NFS Backend",
         "storage_open_iscsi" : "Open-iSCSI initiator",
         "storage_pbs" : "Proxmox Backup Server",
         "storage_pbs_encryption" : "Encryption",
         "storage_rbd_config" : "Configuration",
         "storage_zfs" : "ZFS over ISCSI Backend",
         "storage_zfspool" : "Local ZFS Pool Backend",
         "sysadmin_apt_repo_formats" : "Repository Formats",
         "sysadmin_certificate_management" : "Certificate Management",
         "sysadmin_certs_acme_account" : "ACME Account",
         "sysadmin_certs_acme_automatic_renewal" : "Automatic renewal of ACME certificates",
         "sysadmin_certs_acme_dns_api_config" : "Configuring ACME DNS APIs for validation",
         "sysadmin_certs_acme_dns_challenge" : "ACME DNS API Challenge Plugin",
         "sysadmin_certs_acme_http_challenge" : "ACME HTTP Challenge Plugin",
         "sysadmin_certs_acme_plugins" : "ACME Plugins",
         "sysadmin_certs_acme_switch_from_staging" : "Example: Switching from the `staging` to the regular ACME directory",
         "sysadmin_certs_api_gui" : "Certificates for API and Web GUI",
         "sysadmin_certs_get_trusted_acme_cert" : "Trusted certificates via Let's Encrypt (ACME)",
         "sysadmin_certs_upload_custom" : "Upload Custom Certificate",
         "sysadmin_debian_firmware_repo" : "Debian Firmware Repository",
         "sysadmin_enterprise_repo" : "Proxmox VE Enterprise Repository",
         "sysadmin_firmware_cpu" : "CPU Microcode Updates",
         "sysadmin_firmware_persistent" : "Persistent Firmware",
         "sysadmin_firmware_runtime_files" : "Runtime Firmware Files",
         "sysadmin_firmware_troubleshooting" : "Troubleshooting",
         "sysadmin_network_bond" : "Linux Bond",
         "sysadmin_network_configuration" : "Network Configuration",
         "sysadmin_network_masquerading" : "Masquerading (NAT) with `iptables`",
         "sysadmin_network_routed" : "Routed Configuration",
         "sysadmin_network_vlan" : "VLAN 802.1Q",
         "sysadmin_no_subscription_repo" : "Proxmox VE No-Subscription Repository",
         "sysadmin_package_repositories" : "Package Repositories",
         "sysadmin_package_repositories_ceph" : "Ceph Repositories",
         "sysadmin_test_repo" : "Proxmox VE Test Repository",
         "sysadmin_zfs_add_cache_and_log_dev" : "Add cache and log to an existing pool",
         "sysadmin_zfs_change_failed_dev" : "Changing a failed device",
         "sysadmin_zfs_create_new_zpool" : "Create a new zpool",
         "sysadmin_zfs_create_new_zpool_raid0" : "Create a new pool with RAID-0",
         "sysadmin_zfs_create_new_zpool_raid1" : "Create a new pool with RAID-1",
         "sysadmin_zfs_create_new_zpool_raid10" : "Create a new pool with RAID-10",
         "sysadmin_zfs_create_new_zpool_raidz1" : "Create a new pool with RAIDZ-1",
         "sysadmin_zfs_create_new_zpool_with_cache" : "Create a new pool with cache (L2ARC)",
         "sysadmin_zfs_create_new_zpool_with_log" : "Create a new pool with log (ZIL)",
         "sysadmin_zfs_extend_raidz" : "Extend RAIDZ-N",
         "sysadmin_zfs_features" : "ZFS Pool Features",
         "sysadmin_zfs_limit_memory_usage" : "Limit ZFS Memory Usage",
         "sysadmin_zfs_raid_considerations" : "ZFS RAID Level Considerations",
         "sysadmin_zfs_raid_performance" : "Performance",
         "sysadmin_zfs_raid_size_space_usage_redundancy" : "Size, Space usage and Redundancy",
         "sysadmin_zfs_special_device" : "ZFS Special Device",
         "sysboot" : "Host Bootloader",
         "sysboot_determine_bootloader_used" : "Determine which Bootloader is Used",
         "sysboot_edit_kernel_cmdline" : "Editing the Kernel Commandline",
         "sysboot_grub" : "GRUB",
         "sysboot_installer_part_scheme" : "Partitioning Scheme Used by the Installer",
         "sysboot_kernel_pin" : "Override the Kernel-Version for next Boot",
         "sysboot_proxmox_boot_tool" : "Synchronizing the content of the ESP with `proxmox-boot-tool`",
         "sysboot_secure_boot" : "Secure Boot",
         "sysboot_systemd_boot" : "Systemd-boot",
         "sysboot_systemd_boot_config" : "Configuration",
         "system_software_updates" : "System Software Updates",
         "systemd_network_interface_names" : "Systemd Network Interface Names",
         "translation" : "Translating Proxmox VE",
         "udp" : "   batch-timeout = \"1s\"",
         "user-realms-ad" : "Microsoft Active Directory (AD)",
         "user-realms-ldap" : "LDAP",
         "user-realms-pam" : "Linux PAM Standard Authentication",
         "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" : "Configuration",
         "vzdump_jobs" : "Backup Jobs",
         "vzdump_notes" : "Backup Notes",
         "vzdump_protection" : "Backup Protection",
         "vzdump_restore" : "Restore",
         "vzdump_retention" : "Backup Retention",
         "zfs_compression" : "Compression in ZFS",
         "zfs_encryption" : "Encrypted ZFS Datasets",
         "zfs_swap" : "SWAP on ZFS"
      }
   },
   "titles" : {
      "default" : {
         "GFDL.adoc" : "GNU Free Documentation License",
         "README.adoc" : "Proxmox VE Documentation",
         "calendar-events.adoc" : "Schedule Format",
         "certificate-management.adoc" : "Certificate Management",
         "cli-general.adoc" : "General",
         "configuration-files.adoc" : "General",
         "cpu-models.conf.adoc" : "Custom CPU Model Configuration",
         "datacenter.cfg.adoc" : "Datacenter Configuration",
         "firmware-updates.adoc" : "Firmware Updates",
         "getting-help.adoc" : "Getting Help",
         "ha-manager.adoc" : "High Availability",
         "howto-improve-pve-docs.adoc" : "Improving the Proxmox VE Documentation",
         "hyper-converged-infrastructure.adoc" : "Hyper-converged Infrastructure",
         "index.adoc" : "Proxmox VE Documentation Index",
         "kernel-samepage-merging.adoc" : "Kernel Samepage Merging (KSM)",
         "local-btrfs.adoc" : "BTRFS",
         "local-lvm.adoc" : "Logical Volume Manager (LVM)",
         "local-zfs.adoc" : "ZFS on Linux",
         "markdown-primer.adoc" : "Markdown Primer",
         "notifications.adoc" : "Notifications",
         "output-format.adoc" : "Output format options `[FORMAT_OPTIONS]`",
         "pct.adoc" : "Proxmox Container Toolkit",
         "pct.conf.adoc" : "Container Configuration",
         "pmxcfs.adoc" : "Proxmox Cluster File System (pmxcfs)",
         "pve-admin-guide.adoc" : "Proxmox VE Administration Guide",
         "pve-bibliography.adoc" : "Bibliography",
         "pve-copyright.adoc" : "Copyright and Disclaimer",
         "pve-disk-health-monitoring.adoc" : "Disk Health Monitoring",
         "pve-external-metric-server.adoc" : "External Metric Server",
         "pve-faq.adoc" : "Frequently Asked Questions",
         "pve-firewall.adoc" : "Proxmox VE Firewall",
         "pve-gui.adoc" : "Graphical User Interface",
         "pve-ha-crm.adoc" : "Cluster Resource Manager Daemon",
         "pve-ha-lrm.adoc" : "Local Resource Manager Daemon",
         "pve-installation-media.adoc" : "Prepare Installation Media",
         "pve-installation.adoc" : "Installing Proxmox VE",
         "pve-intro.adoc" : "Introduction",
         "pve-network.adoc" : "Network Configuration",
         "pve-package-repos.adoc" : "Package Repositories",
         "pve-storage-btrfs.adoc" : "BTRFS Backend",
         "pve-storage-cephfs.adoc" : "Ceph Filesystem (CephFS)",
         "pve-storage-cifs.adoc" : "CIFS Backend",
         "pve-storage-dir.adoc" : "Directory Backend",
         "pve-storage-iscsi.adoc" : "Open-iSCSI initiator",
         "pve-storage-iscsidirect.adoc" : "User Mode iSCSI Backend",
         "pve-storage-lvm.adoc" : "LVM Backend",
         "pve-storage-lvmthin.adoc" : "LVM thin Backend",
         "pve-storage-nfs.adoc" : "NFS Backend",
         "pve-storage-pbs.adoc" : "Proxmox Backup Server",
         "pve-storage-rbd.adoc" : "Ceph RADOS Block Devices (RBD)",
         "pve-storage-zfs.adoc" : "ZFS over ISCSI Backend",
         "pve-storage-zfspool.adoc" : "Local ZFS Pool Backend",
         "pve-system-requirements.adoc" : "System Requirements",
         "pveam.adoc" : "Container Images",
         "pveceph.adoc" : "Deploy Hyper-Converged Ceph Cluster",
         "pvecm.adoc" : "Cluster Manager",
         "pvedaemon.adoc" : "pvedaemon - Proxmox VE API Daemon",
         "pvenode.adoc" : "Proxmox Node Management",
         "pveperf.adoc" : "pveperf - Proxmox VE Benchmark Script",
         "pveproxy.adoc" : "pveproxy - Proxmox VE API Proxy Daemon",
         "pvescheduler.adoc" : "pvescheduler - Proxmox VE Scheduler Daemon",
         "pvesdn.adoc" : "Software-Defined Network",
         "pvesh.adoc" : "Shell interface for the Proxmox VE API",
         "pvesm.adoc" : "Proxmox VE Storage",
         "pvesr.adoc" : "Storage Replication",
         "pvestatd.adoc" : "pvestatd - Proxmox VE Status Daemon",
         "pvesubscription.adoc" : "pvesubscription - Subscription Management",
         "pveum.adoc" : "User Management",
         "qm-cloud-init.adoc" : "Cloud-Init Support",
         "qm-pci-passthrough.adoc" : "PCI(e) Passthrough",
         "qm-vcpu-list.adoc" : "Introduction",
         "qm.adoc" : "QEMU/KVM Virtual Machines",
         "qm.conf.adoc" : "Virtual Machine Configuration",
         "qmeventd.adoc" : "PVE QEMU Event Daemon",
         "qmrestore.adoc" : "Restore Virtual Machines",
         "spiceproxy.adoc" : "spiceproxy - SPICE Proxy Service",
         "sysadmin.adoc" : "Host System Administration",
         "system-booting.adoc" : "Host Bootloader",
         "system-software-updates.adoc" : "System Software Updates",
         "system-timesync.adoc" : "Time Synchronization",
         "translation.adoc" : "Translating Proxmox VE",
         "vxlan-and-evpn.adoc" : "VXLAN layer2 with vlan unware linux bridges",
         "vzdump.adoc" : "Backup and Restore"
      },
      "manvolnum" : {
         "GFDL.adoc" : "GNU Free Documentation License",
         "README.adoc" : "Proxmox VE Documentation",
         "calendar-events.adoc" : "Schedule Format",
         "certificate-management.adoc" : "Certificate Management",
         "cli-general.adoc" : "General",
         "configuration-files.adoc" : "General",
         "cpu-models.conf.adoc" : "cpu-models.conf(5)",
         "datacenter.cfg.adoc" : "datacenter.cfg(5)",
         "firmware-updates.adoc" : "Firmware Updates",
         "getting-help.adoc" : "Getting Help",
         "ha-manager.adoc" : "ha-manager(1)",
         "howto-improve-pve-docs.adoc" : "Improving the Proxmox VE Documentation",
         "hyper-converged-infrastructure.adoc" : "Hyper-converged Infrastructure",
         "index.adoc" : "Proxmox VE Documentation Index",
         "kernel-samepage-merging.adoc" : "Kernel Samepage Merging (KSM)",
         "local-btrfs.adoc" : "BTRFS",
         "local-lvm.adoc" : "Logical Volume Manager (LVM)",
         "local-zfs.adoc" : "ZFS on Linux",
         "markdown-primer.adoc" : "Markdown Primer",
         "notifications.adoc" : "Notifications",
         "output-format.adoc" : "FORMAT_OPTIONS",
         "pct.adoc" : "pct(1)",
         "pct.conf.adoc" : "pct.conf(5)",
         "pmxcfs.adoc" : "pmxcfs(8)",
         "pve-admin-guide.adoc" : "Proxmox VE Administration Guide",
         "pve-bibliography.adoc" : "Bibliography",
         "pve-copyright.adoc" : "Copyright and Disclaimer",
         "pve-disk-health-monitoring.adoc" : "Disk Health Monitoring",
         "pve-external-metric-server.adoc" : "External Metric Server",
         "pve-faq.adoc" : "Frequently Asked Questions",
         "pve-firewall.adoc" : "pve-firewall(8)",
         "pve-gui.adoc" : "Graphical User Interface",
         "pve-ha-crm.adoc" : "pve-ha-crm(8)",
         "pve-ha-lrm.adoc" : "pve-ha-lrm(8)",
         "pve-installation-media.adoc" : "Prepare Installation Media",
         "pve-installation.adoc" : "Installing Proxmox VE",
         "pve-intro.adoc" : "Introduction",
         "pve-network.adoc" : "Network Configuration",
         "pve-package-repos.adoc" : "Package Repositories",
         "pve-storage-btrfs.adoc" : "BTRFS Backend",
         "pve-storage-cephfs.adoc" : "Ceph Filesystem (CephFS)",
         "pve-storage-cifs.adoc" : "CIFS Backend",
         "pve-storage-dir.adoc" : "Directory Backend",
         "pve-storage-iscsi.adoc" : "Open-iSCSI initiator",
         "pve-storage-iscsidirect.adoc" : "User Mode iSCSI Backend",
         "pve-storage-lvm.adoc" : "LVM Backend",
         "pve-storage-lvmthin.adoc" : "LVM thin Backend",
         "pve-storage-nfs.adoc" : "NFS Backend",
         "pve-storage-pbs.adoc" : "Proxmox Backup Server",
         "pve-storage-rbd.adoc" : "Ceph RADOS Block Devices (RBD)",
         "pve-storage-zfs.adoc" : "ZFS over ISCSI Backend",
         "pve-storage-zfspool.adoc" : "Local ZFS Pool Backend",
         "pve-system-requirements.adoc" : "System Requirements",
         "pveam.adoc" : "pveam(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" : "Software-Defined Network",
         "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 Support",
         "qm-pci-passthrough.adoc" : "PCI(e) Passthrough",
         "qm-vcpu-list.adoc" : "Introduction",
         "qm.adoc" : "qm(1)",
         "qm.conf.adoc" : "qm.conf(5)",
         "qmeventd.adoc" : "qmeventd(8)",
         "qmrestore.adoc" : "qmrestore(1)",
         "spiceproxy.adoc" : "spiceproxy(8)",
         "sysadmin.adoc" : "Host System Administration",
         "system-booting.adoc" : "Host Bootloader",
         "system-software-updates.adoc" : "System Software Updates",
         "system-timesync.adoc" : "Time Synchronization",
         "translation.adoc" : "Translating Proxmox VE",
         "vxlan-and-evpn.adoc" : "VXLAN layer2 with vlan unware linux bridges",
         "vzdump.adoc" : "vzdump(1)"
      },
      "wiki" : {
         "GFDL.adoc" : "GNU Free Documentation License",
         "README.adoc" : "Proxmox VE Documentation",
         "calendar-events.adoc" : "Calendar Events",
         "certificate-management.adoc" : "Certificate Management",
         "cli-general.adoc" : "General",
         "configuration-files.adoc" : "General",
         "cpu-models.conf.adoc" : "Manual: cpu-models.conf",
         "datacenter.cfg.adoc" : "Manual: datacenter.cfg",
         "firmware-updates.adoc" : "Firmware Updates",
         "getting-help.adoc" : "Getting Help",
         "ha-manager.adoc" : "High Availability",
         "howto-improve-pve-docs.adoc" : "Improving the Proxmox VE Documentation",
         "hyper-converged-infrastructure.adoc" : "Hyper-converged Infrastructure",
         "index.adoc" : "Proxmox VE Documentation Index",
         "kernel-samepage-merging.adoc" : "Kernel Samepage Merging (KSM)",
         "local-btrfs.adoc" : "BTRFS",
         "local-lvm.adoc" : "Logical Volume Manager (LVM)",
         "local-zfs.adoc" : "ZFS on Linux",
         "markdown-primer.adoc" : "Markdown Primer",
         "notifications.adoc" : "Notifications",
         "output-format.adoc" : "Output format options `[FORMAT_OPTIONS]`",
         "pct.adoc" : "Linux Container",
         "pct.conf.adoc" : "Manual: pct.conf",
         "pmxcfs.adoc" : "Proxmox Cluster File System (pmxcfs)",
         "pve-admin-guide.adoc" : "Proxmox VE Administration Guide",
         "pve-bibliography.adoc" : "Bibliography",
         "pve-copyright.adoc" : "Copyright and Disclaimer",
         "pve-disk-health-monitoring.adoc" : "Disk Health Monitoring",
         "pve-external-metric-server.adoc" : "External Metric Server",
         "pve-faq.adoc" : "FAQ",
         "pve-firewall.adoc" : "Firewall",
         "pve-gui.adoc" : "Graphical User Interface",
         "pve-ha-crm.adoc" : "Cluster Resource Manager Daemon",
         "pve-ha-lrm.adoc" : "Local Resource Manager Daemon",
         "pve-installation-media.adoc" : "Prepare Installation Media",
         "pve-installation.adoc" : "Installation",
         "pve-intro.adoc" : "Introduction",
         "pve-network.adoc" : "Network Configuration",
         "pve-package-repos.adoc" : "Package Repositories",
         "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-iscsi.adoc" : "Storage: 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" : "Storage: 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" : "System Requirements",
         "pveam.adoc" : "Container Images",
         "pveceph.adoc" : "Deploy Hyper-Converged Ceph Cluster",
         "pvecm.adoc" : "Cluster Manager",
         "pvedaemon.adoc" : "pvedaemon - Proxmox VE API Daemon",
         "pvenode.adoc" : "Proxmox Node Management",
         "pveperf.adoc" : "pveperf - Proxmox VE Benchmark Script",
         "pveproxy.adoc" : "pveproxy - Proxmox VE API Proxy Daemon",
         "pvescheduler.adoc" : "pvescheduler - Proxmox VE Scheduler Daemon",
         "pvesdn.adoc" : "Software-Defined Network",
         "pvesh.adoc" : "Shell interface for the Proxmox VE API",
         "pvesm.adoc" : "Storage",
         "pvesr.adoc" : "Storage Replication",
         "pvestatd.adoc" : "pvestatd - Proxmox VE Status Daemon",
         "pvesubscription.adoc" : "pvesubscription - Subscription Management",
         "pveum.adoc" : "User Management",
         "qm-cloud-init.adoc" : "Cloud-Init Support",
         "qm-pci-passthrough.adoc" : "PCI(e) Passthrough",
         "qm-vcpu-list.adoc" : "Introduction",
         "qm.adoc" : "QEMU/KVM Virtual Machines",
         "qm.conf.adoc" : "Manual: qm.conf",
         "qmeventd.adoc" : "PVE QEMU Event Daemon",
         "qmrestore.adoc" : "Restore Virtual Machines",
         "spiceproxy.adoc" : "spiceproxy - SPICE Proxy Service",
         "sysadmin.adoc" : "Host System Administration",
         "system-booting.adoc" : "Host Bootloader",
         "system-software-updates.adoc" : "System Software Updates",
         "system-timesync.adoc" : "Time Synchronization",
         "translation.adoc" : "Translating Proxmox VE",
         "vxlan-and-evpn.adoc" : "VXLAN layer2 with vlan unware linux bridges",
         "vzdump.adoc" : "Backup and Restore"
      }
   },
   "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,
         "pve-intro.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,
         "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,
         "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-intro.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-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,
         "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,
         "sysadmin.adoc" : 1,
         "system-booting.adoc" : 1,
         "system-software-updates.adoc" : 1,
         "system-timesync.adoc" : 1,
         "translation.adoc" : 1,
         "vzdump.adoc" : 1
      }
   }
}
