<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/"><channel><title>V0nl1</title><description>Blog</description><link>https://v0nl1.com/</link><language>zh_CN</language><item><title>veeam backup replication 备份实验</title><link>https://v0nl1.com/posts/vbr-practice/</link><guid isPermaLink="true">https://v0nl1.com/posts/vbr-practice/</guid><description>veeam backup replication 实验</description><pubDate>Sun, 05 Apr 2026 00:00:00 GMT</pubDate><content:encoded>&lt;h2&gt;软件介绍：&lt;/h2&gt;
&lt;p&gt;&lt;a href=&quot;https://www.veeam.com/products/veeam-data-platform/backup-recovery.html&quot;&gt;Veeam backup replication&lt;/a&gt; （VBR）是目前&lt;strong&gt;企业级备份市场中兼容性最广、功能最全面的解决方案之一&lt;/strong&gt;，尤其在虚拟化环境和混合云场景中表现突出。&lt;/p&gt;
&lt;p&gt;人话就是你公司内有多台服务器，用VBR这个解决方案节省运维的工作量&lt;/p&gt;
&lt;h2&gt;实验平台&lt;/h2&gt;
&lt;p&gt;使用Hyper-V管理器创建VBR服务器和被备份服务器，以及一台物理服务器&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;VBR服务器要求： Windows Server 16-25&lt;/li&gt;
&lt;li&gt;被备份服务器支持：windows 8-11，Linux&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;实验内容&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;windows服务器操作系统备份和恢复&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Linux Rocky 9.7 整机备份&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;一、安装并破解VBR&lt;/h3&gt;
&lt;h4&gt;1.1 安装VBR&lt;/h4&gt;
&lt;p&gt;vbr软件百度网盘链接: https://pan.baidu.com/s/1sERSd_RycPWxCymZH8tc1Q?pwd=von1&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;参考 [网工格物] 博主的这个破解过程&lt;/p&gt;
&lt;p&gt;https://songxwn.com/Veeam12.3/&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;在hyper-V上安装好windows server 2025，具体配置参考&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;4 cpu&lt;/li&gt;
&lt;li&gt;8192 MB内存&lt;/li&gt;
&lt;li&gt;127 GB系统硬盘&lt;/li&gt;
&lt;li&gt;300 GB虚拟磁盘&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;将&lt;code&gt;VeeamDataPlatformPremium_v12.3.1_20250401.iso&lt;/code&gt;复制到win server 2025上，&lt;/p&gt;
&lt;p&gt;&lt;code&gt;win+r ncpa.cpl&lt;/code&gt;禁掉网卡，双击iso进行挂载安装&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://img.v0nl1.com/2026-04/56fd48387709a4a9a9de64d4eb64192f.webp&quot; alt=&quot;image-20260405154715007&quot; /&gt;&lt;/p&gt;
&lt;p&gt;电脑安装时间很长大约30-40分钟&lt;/p&gt;
&lt;h4&gt;1.2 破解VBR&lt;/h4&gt;
&lt;p&gt;安装完成后，停止veeam的后台服务，powershell管理员运行下边的命令&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;# 如果一直提出等待backup服务终止，可以直接进入任务管理器快速终止掉服务   
get-service -displayname Veeam* | stop-service   
get-service -displayname Veeam*  
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;&lt;img src=&quot;https://img.v0nl1.com/2026-04/bfb54c42969f39f1bca86b8b8581c907.webp&quot; alt=&quot;image-20260405161704915&quot; /&gt;&lt;/p&gt;
&lt;p&gt;替换License.dll&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://img.v0nl1.com/2026-04/49cbeaf3c3654514094eb473ff5e71cf.webp&quot; alt=&quot;image-20260405161751086&quot; /&gt;&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;# powershell 启动Veeam的所有服务，所有服务启动完成后，再打开Veeam软件
get-service -displayname Veeam* | start-service
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;安装文件夹下的许可证&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://img.v0nl1.com/2026-04/93f003f7c81f9136180bbca5db63b356.webp&quot; alt=&quot;image-20260405162012599&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;1.3 备份仓库&lt;/h4&gt;
&lt;h5&gt;1.3.1 VBR的备份磁盘格式化&lt;/h5&gt;
&lt;p&gt;&lt;code&gt;win+x k&lt;/code&gt;进入&lt;code&gt;磁盘管理&lt;/code&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;文件系统：REFS&lt;/li&gt;
&lt;li&gt;单元大小：64K&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;img src=&quot;https://img.v0nl1.com/2026-04/1bbcdf2b44d5b1333b908fc526a8fec3.webp&quot; alt=&quot;image-20260405162229782&quot; /&gt;&lt;/p&gt;
&lt;h5&gt;1.3.2 VBR添加备份存储仓库&lt;/h5&gt;
&lt;p&gt;&lt;img src=&quot;https://img.v0nl1.com/2026-04/ad777d09a5cd9501ea54d4afbdabda82.webp&quot; alt=&quot;image-20260405163030799&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;二、RockyLinux-9.7整机备份[虚拟机]&lt;/h3&gt;
&lt;h4&gt;2.1 安装相关的软件包&lt;/h4&gt;
&lt;pre&gt;&lt;code&gt;  dnf  install -y kernel-devel kernel-headers gcc make dkms elfutils-libelf-devel  
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;2.2 添加Veeam仓库并安装VAL&lt;/h4&gt;
&lt;p&gt;官网下载最新的 VAL（veeam agent for linux）&lt;/p&gt;
&lt;p&gt;下载地址（需要账号登录）：https://www.veeam.com/products/free/linux-download.html&lt;/p&gt;
&lt;p&gt;然后安装下载下来的仓库文件&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;rpm -ivh ./veeam-release* &amp;amp;&amp;amp; dnf check-update &amp;amp;&amp;amp; dnf update -y
&lt;/code&gt;&lt;/pre&gt;
&lt;blockquote&gt;
&lt;p&gt;参考安装仓库步骤：&lt;/p&gt;
&lt;p&gt;https://helpcenter.veeam.com/docs/agentforlinux/userguide/installation_repo.html?ver=13&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h4&gt;2.3 VBR添加主机&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://img.v0nl1.com/2026-04/4a54fb7ff1c4307aa15b6f740785933f.webp&quot; alt=&quot;image-20260405165338885&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://img.v0nl1.com/2026-04/11e36776e973635b138b89406273d359.webp&quot; alt=&quot;image-20260405165423283&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://img.v0nl1.com/2026-04/8a6fc0c9b49b88b57cca6fde563aa44b.webp&quot; alt=&quot;image-20260405165506871&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;2.4 VBR创建备份任务&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://img.v0nl1.com/2026-04/77e051d5482c79d697c40f6e8227049b.webp&quot; alt=&quot;image-20260405165834429&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;2.5 备份结果&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://img.v0nl1.com/2026-04/3822f082a4563489446207158d5c0172.webp&quot; alt=&quot;image-20260405165936854&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;三、备份Windows操作系统[虚拟机]&lt;/h3&gt;
&lt;p&gt;注意不要使用远景的精简镜像，可能会出现VBR的CBT驱动安装报错的问题&lt;/p&gt;
&lt;p&gt;建议使用massgrave的官方镜像&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;https://massgrave.dev/genuine-installation-media&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h4&gt;3.1 Windows开启的服务&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;远程桌面开启&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;本地账户密码完全正确&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;防火墙已关闭&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;但用本地账户远程连接时，Windows 默认会剥夺管理员 Token，导致认证测试显示失败。这不是密码问题，是 Windows 安全策略。&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;# 在目标物理服务器上执行（需要本地登录或 RDP）

# 查看当前值（1=已禁用UAC过滤 0=未禁用）
reg query &quot;HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System&quot; /v LocalAccountTokenFilterPolicy

# 若不存在或值为 0，执行以下命令添加/修改
reg add &quot;HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System&quot; /v LocalAccountTokenFilterPolicy /t REG_DWORD /d 1 /f

# 无需重启，立即生效
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;3.2 VBR添加主机&lt;/h4&gt;
&lt;p&gt;同Linux步骤&lt;/p&gt;
&lt;h4&gt;3.3 VBR创建备份任务&lt;/h4&gt;
&lt;p&gt;同Linux步骤&lt;/p&gt;
&lt;h4&gt;3.4 备份结果&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://img.v0nl1.com/2026-04/26cfdb49b0ba6badbba1020ed0bd3ad0.webp&quot; alt=&quot;image-20260405170316762&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;四、Win10 工作站 系统盘恢复&lt;/h3&gt;
&lt;h4&gt;4.1 设置仓库远程访问许可&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://img.v0nl1.com/2026-04/03e8f605eeab38776c380d8a7e73ef8e.webp&quot; alt=&quot;image-20260405170644603&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;4.2 VBR创建恢复介质&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://img.v0nl1.com/2026-04/eec789cd09e02d564292644669f2d985.webp&quot; alt=&quot;image-20260405171027686&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;4.3 恢复介质写入U盘&lt;/h4&gt;
&lt;p&gt;写盘工具&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Rufus（速度快、功能全）&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Ventoy（支持拖放多个ISO）&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;balenaEtcher（操作极简）&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;UltraISO（传统经典）&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;这里我是用rufus写入导出的恢复介质&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://img.v0nl1.com/2026-04/f66257e345721b6528b33e0e06e463ba.webp&quot; alt=&quot;image-20260405171139101&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;4.4 物理服务器进入U盘恢复模式&lt;/h4&gt;
&lt;p&gt;开机选择引导选项，选择U盘启动&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://img.v0nl1.com/2026-04/d3ae13631cdd3b4da83213f89ddca1be.webp&quot; alt=&quot;image-20260405171237074&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://img.v0nl1.com/2026-04/b85ad09012b84c77bb0867370df1ef0d.webp&quot; alt=&quot;image-20260405171342691&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://img.v0nl1.com/2026-04/b85ad09012b84c77bb0867370df1ef0d.webp&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://img.v0nl1.com/2026-04/290d53532bc4dc95940574c33531d380.webp&quot; alt=&quot;image-20260405171420099&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://img.v0nl1.com/2026-04/881ef4a64a856f296839cd59072ec7a4.webp&quot; alt=&quot;image-20260405171450791&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;参考内容&lt;/h2&gt;
&lt;blockquote&gt;
&lt;p&gt;参考 [网工格物] 博主的这个破解过程&lt;/p&gt;
&lt;p&gt;https://songxwn.com/Veeam12.3/&lt;/p&gt;
&lt;/blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;Veeam agent for linux&lt;/p&gt;
&lt;p&gt;https://www.veeam.com/products/free/linux-download.html&lt;/p&gt;
&lt;p&gt;Veeam 仓库安装&lt;/p&gt;
&lt;p&gt;https://helpcenter.veeam.com/docs/agentforlinux/userguide/installation_repo.html?ver=13&lt;/p&gt;
&lt;/blockquote&gt;
</content:encoded></item><item><title>家庭网络折腾</title><link>https://v0nl1.com/posts/home-network-record/</link><guid isPermaLink="true">https://v0nl1.com/posts/home-network-record/</guid><description>PVE家庭网络环境折腾</description><pubDate>Sat, 14 Feb 2026 00:00:00 GMT</pubDate><content:encoded>&lt;h3&gt;家庭网络环境介绍&lt;/h3&gt;
&lt;p&gt;&lt;img src=&quot;https://img.v0nl1.com/2026-02/0f6d28cd0d0606408ea34eafafaa27c5.webp&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;PVE服务器： 天钡 GEM12 8845HS 32G-2T 双2.5G网口&lt;/li&gt;
&lt;li&gt;天翼网关：中兴 7015TV3 无无线，一个2.5G网口三个千兆口&lt;/li&gt;
&lt;li&gt;路由器：小米AX9000&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;过年回家了，找电信师傅改的桥接；通过小主机PVE中的ROS虚拟机PPPOE拨号、DHCP，结合ADG虚拟机和TProxy虚拟机组成基础的网络架构；小主机的另一个网口连接小米AX9000路由器，路由器关闭DHCP功能，仅作为WIFI接入的功能&lt;/p&gt;
&lt;h3&gt;PVE安装及优化&lt;/h3&gt;
&lt;p&gt;参考 &lt;strong&gt;&lt;a href=&quot;https://gitee.com/callmer/pve_toss_notes&quot;&gt; 狐狸 Nomad./PVE_Toss_Notes&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;PVE温度风扇监控&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;https://github.com/KoolCore/Proxmox_VE_Status&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h3&gt;RouterOS&lt;/h3&gt;
&lt;p&gt;参考 &lt;strong&gt;&lt;a href=&quot;https://gitee.com/callmer/routeros_toss_notes&quot;&gt;狐狸 Nomad./RouterOS_Toss_Notes&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;注意，RouterOS的DNS设置为公共DNS不要使用内网DNS，不然DNS服务器和RouterOS互指，重启后你网会不通&lt;/p&gt;
&lt;h3&gt;TProxy&lt;/h3&gt;
&lt;p&gt;TProxy不是必要步骤，我是自建的科学，如果你是购买的机场直接用佛跳墙内科学软件就行&lt;/p&gt;
&lt;p&gt;但是我用op的passwall2的分流规则有点问题，佛跳墙和QWRT都试了，遂自己部署tproxy&lt;/p&gt;
&lt;p&gt;:::caution
如果不是自建节点，请跳过此章节！&lt;/p&gt;
&lt;p&gt;如果不是自建节点，请跳过此章节！&lt;/p&gt;
&lt;p&gt;如果不是自建节点，请跳过此章节！
:::&lt;/p&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;自建TProxy的步骤&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;h4&gt;1. 安装Xray-core&lt;/h4&gt;
&lt;pre&gt;&lt;code&gt;bash -c &quot;$(curl -L https://github.com/XTLS/Xray-install/raw/main/install-release.sh)&quot; @ install -u root
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;2. 客户端的&lt;code&gt;config.json&lt;/code&gt;&lt;/h4&gt;
&lt;pre&gt;&lt;code&gt;{
  // 1_日志设置
  &quot;log&quot;: {
    &quot;access&quot;: &quot;/var/log/xray/access.log&quot;,
    &quot;error&quot;: &quot;/var/log/xray/error.log&quot;,
    &quot;loglevel&quot;: &quot;warning&quot;
  },
  // 2_DNS设置
  &quot;dns&quot;: {
    &quot;servers&quot;: [
      // 2.1 国外域名使用国外DNS查询
      {
        &quot;address&quot;: &quot;1.1.1.1&quot;,
        &quot;domains&quot;: [&quot;geosite:geolocation-!cn&quot;]
      },
      // 2.2 国内域名使用国内DNS查询,并期待返回国内的IP,若不是国内IP则舍弃,用下一个查询
      {
        &quot;address&quot;: &quot;172.16.1.2&quot;,
        &quot;domains&quot;: [&quot;geosite:cn&quot;],
        &quot;expectIPs&quot;: [&quot;geoip:cn&quot;]
      },
      // 2.3 作为1.2的备份,对国内网站进行二次查询
      {
        &quot;address&quot;: &quot;114.114.114.114&quot;,
        &quot;domains&quot;: [&quot;geosite:cn&quot;]
      },
      // 2.4 最后的备份，上面全部失败时，用本机DNS查询
      &quot;localhost&quot;
    ]
  },

  // 3_分流设置
  // 所谓分流,就是将符合否个条件的流量,用指定`tag`的出站协议去处理（对应配置的5.x内容）
  &quot;routing&quot;: {
    &quot;domainMatcher&quot;: &quot;mph&quot;,
    &quot;domainStrategy&quot;: &quot;IPIfNonMatch&quot;,
    &quot;rules&quot;: [
      // 3.1 广告域名屏蔽
      {
        &quot;domain&quot;: [&quot;geosite:category-ads-all&quot;],
        &quot;outboundTag&quot;: &quot;block&quot;
      },
      // 3.2 Google play store下载
      {
        &quot;domain&quot;: [&quot;geosite:google&quot;,&quot;geosite:google-cn&quot;],
        &quot;outboundTag&quot;: &quot;proxy&quot;
      },
      // 3.3 ntp 123放行
      {
        &quot;inboundTag&quot;: [&quot;all-in&quot;],
        &quot;port&quot;: 123,
        &quot;network&quot;: &quot;udp&quot;,
        &quot;outboundTag&quot;: &quot;direct&quot;
      },
      // 3.4 dns 53 放行
      {
        &quot;inboundTag&quot;: [&quot;all-in&quot;],
        &quot;port&quot;: 53,
        &quot;network&quot;: &quot;udp&quot;,
        &quot;outboundTag&quot;: &quot;dns-out&quot;
      },
      // 3.5 阻断 udp 443
      {
        &quot;port&quot;: &quot;443&quot;,
        &quot;network&quot;: &quot;udp&quot;,
        &quot;outboundTag&quot;: &quot;block&quot;
      },
      // 3.6 绕过 BT 下载
      {
        &quot;protocol&quot;: &quot;bittorrent&quot;,
        &quot;outboundTag&quot;: &quot;direct&quot;
      },
      // 3.7 国内域名直连
      {
        &quot;domain&quot;: [&quot;geosite:cn&quot;,&quot;geosite:geolocation-cn&quot;,&quot;geosite:apple-cn&quot;,&quot;geosite:google-cn&quot;,&quot;geosite:tld-cn&quot;,&quot;geosite:category-games@cn&quot;],
        &quot;outboundTag&quot;: &quot;direct&quot;
      },
      // 3.8 国内IP直连
      {
        &quot;ip&quot;: [&quot;geoip:cn&quot;, &quot;geoip:private&quot;],
        &quot;outboundTag&quot;: &quot;direct&quot;
      },
      // 3.9 国外域名代理
      {
        &quot;domain&quot;: [&quot;geosite:geolocation-!cn&quot;],
        &quot;outboundTag&quot;: &quot;proxy&quot;
      }
    ]
  },

  // 4_入站设置
  &quot;inbounds&quot;: [
    // 4.1 一般都默认使用socks5协议作本地转发
    {
      &quot;tag&quot;: &quot;all-in&quot;,
      &quot;protocol&quot;: &quot;dokodemo-door&quot;,
      &quot;port&quot;: 12345,
      &quot;settings&quot;: {
        &quot;network&quot;: &quot;tcp,udp&quot;,
        &quot;followRedirect&quot;: true
      },
      &quot;sniffing&quot;: {
        &quot;enabled&quot;: true,
        &quot;destOverride&quot;: [&quot;http&quot;, &quot;tls&quot;, &quot;quic&quot;]
      },
      &quot;streamSettings&quot;: {
        &quot;sockopt&quot;: {
          &quot;tproxy&quot;: &quot;tproxy&quot;
        }
      }
    },
    // 4.2 为偶尔需要手动配置科学监听的SOCKS端口
    {
      &quot;port&quot;: 10000,
      &quot;protocol&quot;: &quot;socks&quot;,
      &quot;sniffing&quot;: {
        &quot;enabled&quot;: true,
        &quot;destOverride&quot;: [&quot;http&quot;, &quot;tls&quot;, &quot;quic&quot;]
      },
      &quot;settings&quot;: {
        &quot;auth&quot;: &quot;noauth&quot;,
        &quot;udp&quot;: true
      }
    }
  ],

  // 5_出站设置
  &quot;outbounds&quot;: [
    // 5.1 默认转发VPS
    {
      &quot;tag&quot;: &quot;proxy&quot;,
      &quot;protocol&quot;: &quot;vless&quot;,
      &quot;settings&quot;: {
        //省略，你自建的settings
      },
      &quot;streamSettings&quot;: {
        //省略，你自建的streansettings
        },
        &quot;sockopt&quot;: {
          &quot;mark&quot;: 255  // 必须对应 nftables 中的 meta mark 0xff return
        }
       }
    },
    // 5.2 用`freedom`协议直连出站,即当routing中指定&apos;direct&apos;流出时,调用这个协议做处理
    {
      &quot;tag&quot;: &quot;direct&quot;,
      &quot;protocol&quot;: &quot;freedom&quot;,
      &quot;streamSettings&quot;: {
        &quot;sockopt&quot;: {
          &quot;mark&quot;: 255  // 必须对应 nftables 中的 meta mark 0xff return
        }
      }
    },
    {
      &quot;tag&quot;: &quot;dns-out&quot;,
      &quot;protocol&quot;: &quot;dns&quot;,
      &quot;streamSettings&quot;: {
        &quot;sockopt&quot;: {
          &quot;mark&quot;: 255
        }
      }
    },
    // 5.3 用`blackhole`协议屏蔽流量,即当routing中指定&apos;block&apos;时,调用这个协议做处理
    {
      &quot;tag&quot;: &quot;block&quot;,
      &quot;protocol&quot;: &quot;blackhole&quot;
    }
  ]
}
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;3.重启xray&lt;/h4&gt;
&lt;pre&gt;&lt;code&gt;systemctl restart xray
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;4. nftables和策略路由&lt;/h4&gt;
&lt;h5&gt;4.1 安装并启动nftables&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;dnf install nftables;systemctl enable --now nftables 
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;4.2 创建nftables.rulesv46&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;#!/usr/sbin/nft -f

flush ruleset

table inet xray {
        chain prerouting {
                type filter hook prerouting priority filter; policy accept;
                ip daddr { 127.0.0.0/8, 224.0.0.0/4, 255.255.255.255 } return
                meta l4proto tcp ip daddr 172.16.0.0/16 return
                ip daddr 172.16.0.0/16 udp dport != 53 return
                ip6 daddr { ::1, fe80::/10 } return
                meta l4proto tcp ip6 daddr fdac::/8 return
                ip6 daddr fdac::/8 udp dport != 53 return
                meta mark 0x000000ff return
                meta l4proto { tcp, udp } meta mark set 0x00000001 tproxy ip to 127.0.0.1:12345 accept
                meta l4proto { tcp, udp } meta mark set 0x00000001 tproxy ip6 to [::1]:12345 accept
        }

        chain output {
                type route hook output priority filter; policy accept;
                ip daddr { 127.0.0.0/8, 224.0.0.0/4, 255.255.255.255 } return
                meta l4proto tcp ip daddr 172.16.0.0/16 return
                ip daddr 172.16.0.0/16 udp dport != 53 return
                ip6 daddr { ::1, fe80::/10 } return
                meta l4proto tcp ip6 daddr fdac::/8 return
                ip6 daddr fdac::/8 udp dport != 53 return
                meta mark 0x000000ff return
                meta l4proto { tcp, udp } meta mark set 0x00000001 accept
        }

        chain divert {
                type filter hook prerouting priority mangle; policy accept;
                meta l4proto tcp socket transparent 1 meta mark set 0x00000001 accept
        }
}
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;根据你的IPv4和IPv6网关进行更改，替换掉&lt;code&gt;172.16.0.0/16&lt;/code&gt;和&lt;code&gt;fdac::/8&lt;/code&gt;&lt;/p&gt;
&lt;h5&gt;4.3 创建tproxy.service&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;[Unit]
Description=Tproxy rules for Side Gateway
After=network-online.target
Wants=network-online.target

[Service]
Type=oneshot
RemainAfterExit=yes

# 确保网关连通后再加载
ExecStartPre=/bin/sh -c &quot;until ping -c1 172.16.1.1 &amp;gt;/dev/null 2&amp;gt;&amp;amp;1; do sleep 1; done&quot;

ExecStart=/bin/sh -c &quot;\
ip rule add fwmark 1 table 100 2&amp;gt;/dev/null || true; \
ip -6 rule add fwmark 1 table 106 2&amp;gt;/dev/null || true; \
ip route replace local default dev lo table 100; \
ip -6 route replace local default dev lo table 106; \
/usr/sbin/nft -f /etc/systemd/system/nftables.rulesv46&quot;

ExecStop=/bin/sh -c &quot;\
ip rule del fwmark 1 table 100 2&amp;gt;/dev/null || true; \
ip -6 rule del fwmark 1 table 106 2&amp;gt;/dev/null || true; \
nft flush ruleset&quot;

[Install]
WantedBy=multi-user.target
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;4.4 设置tproxy自启动&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;systemctl enable --now tproxy
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;4.5 如何使用tproxy&lt;/h5&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;pve中的服务器，通过cloudinit将网关和DNS指向TProxy服务器的IP，我的即&lt;code&gt;172.16.1.3&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;需要科学的设备，需要使用设备mac，不要使用随机mac，通过RouterOS 的&lt;code&gt;DHCP Server&lt;/code&gt;设置静态IP，设置&lt;code&gt;Option Sets&lt;/code&gt;将需要科学的设备网关和DNS指向 TProxy服务器&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;pre&gt;&lt;code&gt;# ROS终端中添加
/ip dhcp-server option
add code=6 name=tproxy-dns value=&quot;&apos;172.16.1.3&apos;&quot;
add code=3 name=tproxy-gw value=&quot;&apos;172.16.1.3&apos;&quot;

/ip dhcp-server option sets
add name=tproxy options=tproxy-dns,tproxy-gw
&lt;/code&gt;&lt;/pre&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;偶尔需要科学的设备，设置代理指向 TProxy监听的socks端口，即&lt;code&gt;socks://172.16.1.3:10000&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h4&gt;5.自动更新xray和geo分流文件&lt;/h4&gt;
&lt;h5&gt;5.1 update-xray.sh&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;#!/bin/bash

# 配置路径
XRAY_BIN=&quot;/usr/local/bin/xray&quot;
LOG_FILE=&quot;/var/log/xray_update.log&quot;

# --- 版本提取 ---
# 提取本地版本: Xray 26.2.6 -&amp;gt; 26.2.6
LOCAL_VER=$($XRAY_BIN --version 2&amp;gt;/dev/null | head -n 1 | awk &apos;{print $2}&apos;)

# 提取远程版本: &quot;tag_name&quot;: &quot;v26.2.6&quot; -&amp;gt; 26.2.6
# 增加 --connect-timeout 和 --retry 提高稳定性
REMOTE_VER=$(curl -s --connect-timeout 10 --retry 3 https://api.github.com/repos/XTLS/Xray-core/releases/latest | grep &apos;&quot;tag_name&quot;:&apos; | sed -E &apos;s/.*&quot;v?([^&quot;]+)&quot;.*/\1/&apos;)

echo &quot;-------------------------------------------&quot; &amp;gt;&amp;gt; $LOG_FILE
echo &quot;$(date &apos;+%Y-%m-%d %H:%M:%S&apos;) 检查 Xray-Core 更新...&quot; &amp;gt;&amp;gt; $LOG_FILE

# 检查远程版本是否获取成功
if [ -z &quot;$REMOTE_VER&quot; ]; then
    echo &quot;错误: 无法获取远程版本，可能是 GitHub API 访问受限或网络连接失败。&quot; &amp;gt;&amp;gt; $LOG_FILE
    exit 1
fi

echo &quot;当前本地版本: ${LOCAL_VER:-未知}&quot; &amp;gt;&amp;gt; $LOG_FILE
echo &quot;当前远程版本: ${REMOTE_VER}&quot; &amp;gt;&amp;gt; $LOG_FILE

# --- 核心判断逻辑 ---
if [ &quot;$LOCAL_VER&quot; == &quot;$REMOTE_VER&quot; ]; then
    echo &quot;结果: 已经是最新版本，跳过更新。&quot; &amp;gt;&amp;gt; $LOG_FILE
else
    echo &quot;结果: 发现新版本 ${REMOTE_VER}，准备开始升级...&quot; &amp;gt;&amp;gt; $LOG_FILE

    # 执行官方安装/更新脚本
    if bash -c &quot;$(curl -L -s --connect-timeout 10 https://github.com/XTLS/Xray-install/raw/main/install-release.sh)&quot; @ install -u root &amp;gt;&amp;gt; $LOG_FILE 2&amp;gt;&amp;amp;1; then
        echo &quot;$(date &apos;+%Y-%m-%d %H:%M:%S&apos;) 升级完成！&quot; &amp;gt;&amp;gt; $LOG_FILE
    else
        echo &quot;$(date &apos;+%Y-%m-%d %H:%M:%S&apos;) 升级脚本执行失败，请检查上方日志。&quot; &amp;gt;&amp;gt; $LOG_FILE
        exit 1
    fi
fi
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;5.2 update-geo.sh&lt;/h5&gt;
&lt;pre&gt;&lt;code&gt;#!/bin/bash

# 配置变量
DEST_DIR=&quot;/usr/local/share/xray&quot;
TMP_DIR=&quot;/tmp&quot;
MAX_RETRIES=3
FILES=(&quot;geoip.dat&quot; &quot;geosite.dat&quot;)
BASE_URL=&quot;https://github.com/Loyalsoldier/v2ray-rules-dat/releases/latest/download&quot;

# 确保目标目录存在
mkdir -p &quot;$DEST_DIR&quot;

download_and_verify() {
    local file=$1
    local retry=0
    local success=false

    while [ $retry -lt $MAX_RETRIES ]; do
        ((retry++))
        echo &quot;正在下载 $file (尝试 $retry/$MAX_RETRIES)...&quot;

        # 下载文件和对应的 sha256sum
        curl -L -s -o &quot;$TMP_DIR/$file&quot; &quot;$BASE_URL/$file&quot;
        curl -L -s -o &quot;$TMP_DIR/$file.sha256sum&quot; &quot;$BASE_URL/$file.sha256sum&quot;

        # 进入 tmp 目录执行校验
        # 因为校验文件内容是 &quot;hash  filename&quot;，需要 cd 过去确保文件名匹配
        cd &quot;$TMP_DIR&quot; || exit 1
        if sha256sum -c &quot;$file.sha256sum&quot; &amp;gt; /dev/null 2&amp;gt;&amp;amp;1; then
            echo &quot;$file 校验通过！&quot;
            success=true
            break
        else
            echo &quot;$file 校验失败，正在重试...&quot;
            rm -f &quot;$TMP_DIR/$file&quot; &quot;$TMP_DIR/$file.sha256sum&quot;
        fi
    done

    if [ &quot;$success&quot; = false ]; then
        echo &quot;错误: $file 在 $MAX_RETRIES 次尝试后仍下载失败或校验不匹配，退出脚本。&quot;
        exit 1
    fi
}

# 1. 处理两个文件
for f in &quot;${FILES[@]}&quot;; do
    download_and_verify &quot;$f&quot;
done

# 2. 如果运行到这里，说明全部校验通过，开始移动文件
echo &quot;所有文件校验成功，正在移动到 $DEST_DIR...&quot;
for f in &quot;${FILES[@]}&quot;; do
    mv -f &quot;$TMP_DIR/$f&quot; &quot;$DEST_DIR/$f&quot;
    rm -f &quot;$TMP_DIR/$f.sha256sum&quot;
done

# 3. 重启 xray 服务
echo &quot;正在重启 Xray 服务...&quot;
systemctl restart xray

if [ $? -eq 0 ]; then
    echo &quot;完成！规则已更新并重启服务。&quot;
else
    echo &quot;服务重启失败，请检查 systemctl status xray。&quot;
    exit 1
fi
&lt;/code&gt;&lt;/pre&gt;
&lt;h5&gt;5.3 定时任务&lt;/h5&gt;
&lt;ul&gt;
&lt;li&gt;每天凌晨两点更新geo文件&lt;/li&gt;
&lt;li&gt;每周六凌晨三点检查xray-core最新版，如有更新则更新xray-core&lt;/li&gt;
&lt;/ul&gt;
&lt;pre&gt;&lt;code&gt;00 02 * * * /opt/update-geo.sh &amp;gt;&amp;gt; /var/log/update-geo.log 2&amp;gt;&amp;amp;1
00 03 * * 6 /opt/update_xray.sh
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;h3&gt;AdGuardHome&lt;/h3&gt;
&lt;p&gt;一个开源的过滤广告和追踪的DNS服务器&lt;/p&gt;
&lt;p&gt;配置Adg服务器的cloudinit，将网关和DNS指向RouterOS&lt;/p&gt;
&lt;p&gt;可以参考我之前的配置&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;https://v0nl1.com/posts/adguardhome&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h3&gt;参考资料&lt;/h3&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;a href=&quot;https://gitee.com/callmer/pve_toss_notes&quot;&gt;狐狸 Nomad./PVE_Toss_Notes&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;https://github.com/KoolCore/Proxmox_VE_Status&lt;/p&gt;
&lt;/blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;a href=&quot;https://gitee.com/callmer/routeros_toss_notes&quot;&gt;狐狸 Nomad./RouterOS_Toss_Notes&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;https://github.com/XTLS/Xray-install&lt;/p&gt;
&lt;/blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;https://xtls.github.io/document/level-2/tproxy_ipv4_and_ipv6.html&lt;/p&gt;
&lt;/blockquote&gt;
</content:encoded></item><item><title>Win10 LTSC SAMBA文件共享给Hyper-V Fedora虚拟机</title><link>https://v0nl1.com/posts/win10-ltsc-samba-share-file-with-hyper-v-fedora/</link><guid isPermaLink="true">https://v0nl1.com/posts/win10-ltsc-samba-share-file-with-hyper-v-fedora/</guid><description>windows samba共享给fedora并持久化挂载</description><pubDate>Thu, 05 Feb 2026 00:00:00 GMT</pubDate><content:encoded>&lt;h3&gt;一、开启SMB共享&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;&lt;code&gt;win&lt;/code&gt;+&lt;code&gt;r&lt;/code&gt;，&lt;code&gt;appwiz.cpl&lt;/code&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;img src=&quot;https://img.v0nl1.com/2026-02/f902582dbe94038ef3088d063fe75c3f.webp&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;开启windows SMB1.0/CIFS 文件共享支持&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;img src=&quot;https://img.v0nl1.com/2026-02/8e610f3a200c0bb86fdc3b5a173053fe.webp&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;重启电脑&lt;/li&gt;
&lt;/ol&gt;
&lt;h3&gt;二、创建共享文件夹&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;以我电脑为例，D盘创建一个&lt;code&gt;Share_volume&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;设置共享权限&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;img src=&quot;https://img.v0nl1.com/2026-02/64d9b5a3c6ed6a8b133e7875ec800597.webp&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://img.v0nl1.com/2026-02/7153eba297239e4b1ee9022a3c8ccc51.webp&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;三、Linux虚拟机 添加SMB共享&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;操作系统：Fedora-43 workstation&lt;/li&gt;
&lt;li&gt;文件夹，输入windows的共享的网络路径，回车&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;img src=&quot;https://img.v0nl1.com/2026-02/6b34b515469b0ba0dfc9719bef697e8d.webp&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://img.v0nl1.com/2026-02/9585ed0d6699327a4901e29620042fcf.webp&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;成功的结果&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://img.v0nl1.com/2026-02/30af7f372bd20773e3224f06012ab4a2.webp&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;四、SMB挂载持久化&lt;/h3&gt;
&lt;h4&gt;1. 安装 CIFS 工具&lt;/h4&gt;
&lt;pre&gt;&lt;code&gt;sudo dnf install cifs-utils -y
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;2. 创建安全凭证&lt;/h4&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;创建文件&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;sudo vim /etc/win-credentials
&lt;/code&gt;&lt;/pre&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;输入用户名和密码&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;username=你的windows用户名
password=你的windows用户的密码
domain=SAMBA
&lt;/code&gt;&lt;/pre&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;设置文件权限&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;sudo chmod 600 /etc/win-credentials
&lt;/code&gt;&lt;/pre&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;h4&gt;3.获取用户UID，GID&lt;/h4&gt;
&lt;p&gt;确保用户对挂载目录具有读写权限&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;id 
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;4. 配置持久化挂载点&lt;/h4&gt;
&lt;ol&gt;
&lt;li&gt;创建挂载点&lt;/li&gt;
&lt;/ol&gt;
&lt;pre&gt;&lt;code&gt;mkdir Share_volume
&lt;/code&gt;&lt;/pre&gt;
&lt;ol&gt;
&lt;li&gt;编辑fstab&lt;/li&gt;
&lt;/ol&gt;
&lt;pre&gt;&lt;code&gt;sudo vim /etc/fstab

//LTSC-2021-7950/Share_volume /home/lee/Share_volume cifs credentials=/etc/win-credentials,uid=1000,gid=1000,iocharset=utf8,vers=3.0,x-systemd.automount 0 0
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;&lt;strong&gt;参数解析：&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;vers=3.0&lt;/strong&gt;：指定 SMB 版本，Windows 10/11 推荐使用 3.0。&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;x-systemd.automount&lt;/strong&gt;：&lt;strong&gt;非常重要&lt;/strong&gt;。由于是在 WSL 或 Hyper-V 环境，网络可能比系统启动慢。这个参数会让系统在第一次访问该文件夹时才真正挂载，避免开机死锁。&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;uid/gid&lt;/strong&gt;：将挂载的文件所有权赋予你的 Fedora 用户。&lt;/li&gt;
&lt;/ul&gt;
&lt;h4&gt;5. 立即生效与测试&lt;/h4&gt;
&lt;pre&gt;&lt;code&gt;# 重新加载 systemd 配置
sudo systemctl daemon-reload

# 挂载所有 fstab 中的项
sudo mount -a
&lt;/code&gt;&lt;/pre&gt;
</content:encoded></item><item><title>vmware_vcp-dcv</title><link>https://v0nl1.com/posts/vmware_vcp-dcv/</link><guid isPermaLink="true">https://v0nl1.com/posts/vmware_vcp-dcv/</guid><description>VMware_VCP-DCV认证记录</description><pubDate>Thu, 22 Jan 2026 00:00:00 GMT</pubDate><content:encoded>&lt;h2&gt;题库地址&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;上传者：Fahad Siddique&lt;/li&gt;
&lt;li&gt;上传时间：Jul 16, 2025&lt;/li&gt;
&lt;li&gt;题库地址：&lt;/li&gt;
&lt;/ul&gt;
&lt;blockquote&gt;
&lt;p&gt;https://www.scribd.com/document/889002352/VMware-2V0-21-23-104%E9%A2%98-%E6%96%B0&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h3&gt;Question 1&lt;/h3&gt;
&lt;p&gt;An administrator manually configures a reference ESXi host that meets company security standards for vSphere environments. The administrator now needs to apply all of the security standards to every identically configured host across multiple vSphere clusters within a single VMware vCenter instance.&lt;/p&gt;
&lt;p&gt;Which four steps would the administrator complete to meet this requirement? (Choose four.)&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[x]  &lt;code&gt;A. Extract the host profile from the reference host.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] B. Export the host profile from vCenter.&lt;/li&gt;
&lt;li&gt;[ ] C. Import host customization on the reference host.&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;D. Attach the host profile to each cluster that requires the secure configuration.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;E. Check the compliance of each host against the host profile.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] F. Reset host customization on the reference host.&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;G. Remediate all non-compliant hosts.&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Explanation&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;To apply the security standards from a reference host to other hosts across multiple clusters, the administrator needs to extract a host profile from the reference host, which captures its configuration settings; attach the host profile to each cluster that requires the same configuration; check the compliance of each host against the host profile, which compares their settings; and remediate all non-compliant hosts, which applies the configuration settings from the host profile.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;References&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;暂时没找到
&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;h3&gt;Question 2&lt;/h3&gt;
&lt;p&gt;An administrator creates a virtual machine that contains the latest company-approved software, tools and security updates. Company policy requires that only full clones are allowed for server workloads.&lt;/p&gt;
&lt;p&gt;A combination of which two tasks should the administrator complete to prepare for the deployment of this virtual machine for multiple users? (Choose two.)&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[ ] A. Set appropriate permissions on the virtual machine.&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;B. Create a virtual machine customization specification.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] C. Upgrade the virtual hardware.&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;D. Convert the virtual machine to a template.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] E. Take a snapshot of the virtual machine.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Explanation&lt;/strong&gt;
Option B and D are correct because they allow the administrator to create a virtual machine customization specification, which can be used to customize guest operating system settings for multiple virtual machines,and convert the virtual machine to a template, which can be used to create full clones of server workloads.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;References&lt;/strong&gt;
&lt;img src=&quot;https://img.v0nl1.com/26-01/6971f411aa354.webp&quot; alt=&quot;从模板部署虚拟机&quot; /&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/vsphere/8-0/vsphere-virtual-machine-administration/deploying-virtual-machinesvsphere-vm-admin/deploy-a-virtual-machine-from-a-template-h5vsphere-vm-admin.html
&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h3&gt;Question 3&lt;/h3&gt;
&lt;p&gt;An administrator has a requirement to revert a running virtual machine to a previous snapshot after a failed attempt to upgrade an application. When the administrator originally took the snapshot, the following choices in the Take Snapshot dialog were made:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Snapshot the virtual machine&apos;s memory = false&lt;/li&gt;
&lt;li&gt;Quiesce guest file system = false&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;What will be the result of the administrator selecting the &apos;Revert to Latest Snapshot&apos; option to return the virtual machine to a previous snapshot? (Choose two.)&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[x] &lt;code&gt;A. The virtual machine will be restored to the parent snapshot.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;B. The virtual machine will be restored in a powered off state.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] C. The virtual machine will be restored to the child snapshot.&lt;/li&gt;
&lt;li&gt;[ ] D. The virtual machine will be restored in a powered on state.&lt;/li&gt;
&lt;li&gt;[ ] E. The virtual machine will be restored in a suspended state.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;References&lt;/strong&gt;
&lt;img src=&quot;https://img.v0nl1.com/26-01/6971fb1b9c034.webp&quot; alt=&quot;快照恢复&quot; /&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/vsphere/8-0/reverting-snapshots.html
&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h3&gt;Question 4&lt;/h3&gt;
&lt;p&gt;An administrator is tasked with configuring remote direct memory access (RDMA) over Converged Ethernet v2 (RoCE v2).&lt;/p&gt;
&lt;p&gt;Which two types of adapters must the administrator configure? (Choose two.)&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[ ] A. Paravirtual RDMA adapter.&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;B. RDMA network adapter.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] C. Software iSCSi adapter.&lt;/li&gt;
&lt;li&gt;[ ] D. Fibre Channel over Ethernet (FCoE) adapter.&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;E. Software NVMe over RDMA storage adapter.&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;References&lt;/strong&gt;
&lt;img src=&quot;https://img.v0nl1.com/26-01/6971fea28bc83.webp&quot; alt=&quot;在ESXI上配置NVME over RDMA(RoCE v2)&quot; /&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/vsphere/8-0/vsphere-storage/about-vmware-nvme-storage/configuring-nvme-over-rdma-roce-v2-on-esxi.html#GUID-F4B42510-9E6D-4446-816A-5012866E0038-en
&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h3&gt;Question 5&lt;/h3&gt;
&lt;p&gt;An administrator is asked to segregate virtual machine (VM) traffic by VLAN on a vSphere standard switch.&lt;/p&gt;
&lt;p&gt;The following requirements must be met:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;VLAN ID on the switch port group must be 4095.&lt;/li&gt;
&lt;li&gt;VLAN tagging must be done at the VM level.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Which tagging mode is required?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[ ] A. External Switch Tagging (EST).&lt;/li&gt;
&lt;li&gt;[ ] B. None.&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;C. Virtual Guest Tagging (VGT)&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] D. Virtual Switch Tagging (VST)&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;References&lt;/strong&gt;
&lt;img src=&quot;https://img.v0nl1.com/26-01/6972006c582cd.webp&quot; alt=&quot;VLAN配置&quot; /&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/vsphere/8-0/vsphere-networking/isolate-network-traffic-by-using-vlans/vlan-configuration.html
&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h3&gt;Question 6&lt;/h3&gt;
&lt;p&gt;During the staging of a patch on a vCenter Server Appliance, an error was encountered and the process stopped. An administrator resolved the root cause and is ready to continue with the staging of the patch.&lt;/p&gt;
&lt;p&gt;From the vCenter Management Interface, which action should the administrator take to continue the process from the point at which the error occurred?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[ ] A. Use the Stage and Install option to resume the staging.&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;B. Use the Resume option to resume the staging.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] C. Use the Unstage option to restart the staging.&lt;/li&gt;
&lt;li&gt;[ ] D. Use the Stage Only option to restart the staging.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;References&lt;/strong&gt;
&lt;img src=&quot;https://img.v0nl1.com/26-01/697202f64700c.webp&quot; alt=&quot;检查vCenter Server Appliance的补丁并准备安装&quot; /&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/vsphere/8-0/vcenter-upgrade/patching-and-updating-vcenter-server.html
&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h3&gt;Question 7&lt;/h3&gt;
&lt;p&gt;An administrator notices a performance issue in VMvvare vCenter To try and understand more about the performance issue, the administrator needs to gather more information about the vCenter database to eliminate a potential disk space issue.&lt;/p&gt;
&lt;p&gt;Which two tools can the administrator use? (Choose two.)&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[x] &lt;code&gt;A. vCenter Management Interface (VAMI).&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] B. Perfmon.&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;C. df.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] D. esxtop.&lt;/li&gt;
&lt;li&gt;[ ] E. vSphere Client.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;References&lt;/strong&gt;
&lt;img src=&quot;https://img.v0nl1.com/26-01/6972057c13b1e.webp&quot; alt=&quot;vCenter Server Appliance disk space is full&quot; /&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;https://knowledge.broadcom.com/external/article?legacyId=76563
&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h3&gt;Question 8&lt;/h3&gt;
&lt;p&gt;Which three features are only available when using vSphere Distributed Switches instead of vSphere Standard Switches? (Choose three.)&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[ ] A. 802.1Q tagging.&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;B. Port mirroring.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;C. Netflow.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;D. Configuration backup and restore.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] E. IPv6 support.&lt;/li&gt;
&lt;li&gt;[ ] F. IPv4 support.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;References&lt;/strong&gt;
&lt;img src=&quot;https://img.v0nl1.com/26-01/69721964442c8.webp&quot; alt=&quot;什么是网络卸载兼容性&quot; /&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/vsphere/8-0/vsphere-networking/basic-networking-with-vnetwork-distributed-switches/network-offloads-capability.html
配置 vSphere 分布式交换机的 NetFlow 设置
https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/vsphere/8-0/vsphere-networking/monitoring-network-packets/configure-netflow-settings-with-the-vsphere-web-client.html
备份和恢复 vSphere 分布式交换机配置
https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/vsphere/8-0/vsphere-networking/networking-backup-and-restore/exporting-importing-and-restoring-vsphere-distributed-switch-configurations.html#GUID-BE48C292-F222-4095-BCF8-D6444A785E16-en
&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h3&gt;Question 9&lt;/h3&gt;
&lt;p&gt;An administrator needs to consolidate a number of physical servers by migrating the workloads to a software-defined data center solution.&lt;/p&gt;
&lt;p&gt;Which VMware solution should the administrator recommend?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[ ] A. VMware Horizon.&lt;/li&gt;
&lt;li&gt;[ ] B. VMware vSAN.&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;C. VMware vSphere.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] D. VMware.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Explanation&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Option C is correct because VMware vSphere is the solution that provides a software-defined data center platform that can consolidate physical servers by migrating the workloads to virtual machines.
&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;h3&gt;Question 10&lt;/h3&gt;
&lt;p&gt;What are two uses cases for VMware Tools? (Choose two.)&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[ ] A. Time synchronization with an NTP server.&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;B. Direct deployment of the Aria Automation Config minion&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] C. Share folders between ESXi hosts and guest OS file systems.&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;D. Ability to shutdown a virtual machine remotely.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] E. Support for unsupported network device drivers.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;References&lt;/strong&gt;
&lt;img src=&quot;https://img.v0nl1.com/26-01/69721e539c995.webp&quot; alt=&quot;VMware Tools介绍&quot; /&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/tools/13-0-0/vmware-tools-administration/introduction-to-vmware-tools.html
&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h3&gt;Question 11&lt;/h3&gt;
&lt;p&gt;An administrator is configuring vSphere Lifecycle Manager to install patches to a vSphere cluster. The cluster runs workload virtual machines (VMs) that are incompatible with vSphere vMotion, and therefore cannot be live migrated between hosts during the installation of the patches.&lt;/p&gt;
&lt;p&gt;Which configuration in vSphere Lifecycle Manager will allow the administrator to reduce the downtime
associated with the patching operation without migrating the VMs?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[ ] A. Enable Distributed Power Management (DPM) and set the VM power state to the suspend to disk option.&lt;/li&gt;
&lt;li&gt;[ ] B. Enable Quick Boot and set the VM power state to the suspend to disk option.&lt;/li&gt;
&lt;li&gt;[ ] C. Enable vSphere High Availability (HA) admission control and set the VM power state to the suspend to memory option.&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;D. Enable Quick Boot and set the VM power state to the suspend to memory option.&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;References&lt;/strong&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;配置 vSphere 生命周期管理器以实现快速升级
https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/vsphere/8-0/managing-host-and-cluster-lifecycle/configuring-vlcm-remediation-settings-1/fast-upgrades.html
&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h3&gt;Question 12&lt;/h3&gt;
&lt;p&gt;Which step is completed during Stage 1 of the vCenter Server Appliance deployment?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[ ] A. Join a vCenter Single Sign-On domain.&lt;/li&gt;
&lt;li&gt;[ ] B. Create a new vCenter Single Sign-On domain.&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;C. Select the deployment size.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] D. Configure SSH access.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;References&lt;/strong&gt;
&lt;img src=&quot;https://img.v0nl1.com/26-01/69722717a4022.webp&quot; alt=&quot;安装和设置vSphere&quot; /&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/vsphere/8-0/vcenter-installation-and-setup/introduction-to-vsphere-installation-and-setup/overview-of-the-installation-and-setup-process-vcenter.html
&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h3&gt;Question 13&lt;/h3&gt;
&lt;p&gt;Refer to the exhibit.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://img.v0nl1.com/26-01/69722934612fa.webp&quot; alt=&quot;&quot; /&gt;
An administrator set up the following configuration:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;The distributed switch has three ESXi hosts, and each host has two 40 Gbps NICs.&lt;/li&gt;
&lt;li&gt;The amount of bandwidth reserved for virtual machine (VM) traffic is 6 Gbps.
The administrator wants to guarantee that VMs in the Finance distributed port group can access 50 percent of the available reserved bandwidth for VM traffic.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Given this scenario, what should the size (in Gbps) of the Finance network resource pool be?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[x] &lt;code&gt;A. 18.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] B. 80.&lt;/li&gt;
&lt;li&gt;[ ] C. 36.&lt;/li&gt;
&lt;li&gt;[ ] D. 120.&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;Question 14&lt;/h3&gt;
&lt;p&gt;An administrator is tasked with configuring certificates for a VMware software-defined data center (SDDC) based on the following requirements:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;All certificates should use certificates trusted by the Enterprise Certificate Authority (CA).&lt;/li&gt;
&lt;li&gt;The solution should minimize the ongoing management overhead of replacing certificates.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Which three actions should the administrator take to ensure that the solution meets corporate policy? (Choose three.)&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[ ] A. Replace the VMware Certificate Authority (VMCA) certificate with a self-signed certificate generated from the VMware Certificate Authority (VMCA).&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;B. Replace the machine SSL certificates with custom certificates generated from the Enterprise CA.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] C. Replace the machine SSL certificates with trusted certificates generated from the VMware Certificate Authority (VMCA).&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;D. Replace the VMware Certificate Authority (VMCA) certificate with a custom certificate generated from the Enterprise CA.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;E. Replace the solution user certificates with custom certificates generated from the Enterprise CA.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] F. Replace the solution user certificates with trusted certificates generated from the VMware Certificate Authority (VMCA).&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;Question 15&lt;/h3&gt;
&lt;p&gt;An administrator is completing the configuration of a new vSphere cluster and has enabled vSphere High Availability (HA) and vSphere Distributed Resource Scheduler (DRS).&lt;/p&gt;
&lt;p&gt;After adding the ESXi hosts to the cluster, which networking information will the administrator be prompted to provide when using the Cluster Quickstart workflow?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[x] &lt;code&gt;A. vMotion networking.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] B. Management networking.&lt;/li&gt;
&lt;li&gt;[ ] C. vSAN networking.&lt;/li&gt;
&lt;li&gt;[ ] D. Virtual machine networking.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;References&lt;/strong&gt;
&lt;img src=&quot;https://img.v0nl1.com/26-01/6972361e5c882.webp&quot; alt=&quot;集群快速入门&quot; /&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/vsphere/8-0/vcenter-and-host-management/organizing-your-inventory-host-management/creating-and-configuring-clusters-host-management.html#GUID-BCDAEBCB-EAE4-4EAF-BC33-08977429E9C7-en
&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h3&gt;Question 16&lt;/h3&gt;
&lt;p&gt;An administrator Is looking to deploy a new VMware vCenter Instance. The current environment consists of 75 hosts and is expected to grow up to 100 hosts over the next three years.&lt;/p&gt;
&lt;p&gt;Which deployment size should the administrator select?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[ ] A. Medium.&lt;/li&gt;
&lt;li&gt;[ ] B. Tiny.&lt;/li&gt;
&lt;li&gt;[ ] C. Large.&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;D. Small.&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;References&lt;/strong&gt;
&lt;img src=&quot;https://img.v0nl1.com/26-01/69723929ce985.webp&quot; alt=&quot;VSCA硬件需求&quot; /&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/vsphere/7-0/vcenter-installation-and-setup/deploying-the-vcenter-server-appliance/vcenter-server-appliance-requirements/vcenter-server-appliance-hardware-requirements.html
&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h3&gt;Question 17&lt;/h3&gt;
&lt;p&gt;An administrator is tasked with adding two additional hosts into an existing production vSphere cluster to support the need for additional capacity.&lt;/p&gt;
&lt;p&gt;The vSphere cluster currently has four identically configured ESXi hosts (esxO1 esx02 esx03 and esx04) that utilize Intel Skylake-based CPUs. The two new hosts (esx05 and esx06) are configured
identically in terms of memory and storage to the existing hosts, but utilize Intel Ice Lake-based CPUs.&lt;/p&gt;
&lt;p&gt;The administrator must ensure that:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Any virtual machine migrates to any of the six ESXi hosts running in the cluster.&lt;/li&gt;
&lt;li&gt;There is no virtual machine downtime during the process of adding the new hosts.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Which step should the administrator take to meet these requirements?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[ ] A. Create a new vSphere cluster with Enhanced vMotion Compatibility (EVC) enabled and move all hosts into A&apos; the new cluster&lt;/li&gt;
&lt;li&gt;[ ] B. Create a new vSphere cluster and move only three hosts into the new cluster.&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;C. Configure Enhanced vMotion Compatibility (EVC) mode on the existing cluster and add the two new hosts into the cluster.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] D. Create a new vSphere cluster with vSphere High Availability (HA) enabled and move all hosts into the new cluster.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Explanation&lt;/strong&gt;
The step that the administrator should take to meet these requirements is to configure Enhanced vMotion Compatibility (EVC) mode on the existing cluster and add the two new hosts into the cluster.&lt;/p&gt;
&lt;p&gt;EVC mode allows migration of virtual machines between different generations of CPUs by masking unsupported processor features.EVC mode can be enabled on an existing cluster without affecting powered-on virtual machines.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;References&lt;/strong&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;https://blogs.vmware.com/cloud-foundation/2019/06/11/enhanced-vmotion-compatibility-evc-explained/
&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h3&gt;Question 18&lt;/h3&gt;
&lt;p&gt;An administrator is creating a content library to manage VM templates and ISO images. The administrator wants to password-protect the images and templates and share them with a remote site.&lt;/p&gt;
&lt;p&gt;Which two tasks must the administration perform when creating the content library? (Choose two.)&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[x] &lt;code&gt;A. Publish the local content library.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] B. Enable the security policy.&lt;/li&gt;
&lt;li&gt;[ ] C. Create a subscribed content library.&lt;/li&gt;
&lt;li&gt;[ ] D. Select an NFS datastore.&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;E. Enable authentication.&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;References&lt;/strong&gt;
&lt;img src=&quot;https://img.v0nl1.com/26-01/6972ccf8565eb.webp&quot; alt=&quot;使用内容库&quot; /&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/vsphere/8-0/vsphere-virtual-machine-administration/using-content-librariesvsphere-vm-admin/create-and-edit-a-content-libraryvsphere-vm-admin.html#GUID-A58AF4FD-6CBE-4210-9E67-27EFBDCC1EF2-en
&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h3&gt;Question 19&lt;/h3&gt;
&lt;p&gt;An administrator wants to create virtual machine (VM) templates and store them in a content library. The administrator would like to use the content library to manage different versions of these templates so that reverting to an earlier version is an option.&lt;/p&gt;
&lt;p&gt;How should the administrator create these templates?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[x] &lt;code&gt;A. Select a VM in the vCenter inventory.Clone the VM to the content library as a VM template type.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] B. Select a VM template in the vCenter inventory. Clone the template to the content library.&lt;/li&gt;
&lt;li&gt;[ ] C. Export a VM in the vCenter inventory to an OVF template. Import the OVF template into the content library.&lt;/li&gt;
&lt;li&gt;[ ] D. Convert a VM to a template in the vCenter inventory.Clone the template to the content library.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;References&lt;/strong&gt;
&lt;img src=&quot;https://img.v0nl1.com/26-01/6972d5b100628.webp&quot; alt=&quot;在内容库中管理虚拟机模板&quot; /&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/vsphere/8-0/vsphere-virtual-machine-administration/using-content-librariesvsphere-vm-admin/manage-vm-templates-in-a-content-libraryvsphere-vm-admin.html#GUID-E9EAF7AC-1C08-441A-AB80-0BAA1EAF9F0A-en
&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h3&gt;Question 20&lt;/h3&gt;
&lt;p&gt;An administrator has been notified that a number of hosts are not compliant with the company policy for time synchronization.&lt;/p&gt;
&lt;p&gt;The relevant portion of the policy states:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;All physical servers must synchronize time&lt;/code&gt; with an external time source that is &lt;code&gt;accurate to the microsecond.&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Which step should the administrator take to ensure compliance with the policy?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[ ] A. Ensure that each vCenter Server Appliance is configured to use a Network Time Protocol (NTP) source.&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;B. Ensure that each ESXi host is configured to use a Precision Time Protocol (PTP) source.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] C. Ensure that each ESXi host is configured to use a Network Time Protocol (NTP) source.&lt;/li&gt;
&lt;li&gt;[ ] D. Ensure that each vCenter Server Appliance is configured to use a Precision Time Protocol (PTP) source.&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;Question 21&lt;/h3&gt;
&lt;p&gt;An administrator is tasked with migrating a single virtual machine (VM) from an existing VMware vCenter to a secure environment where corporate security policy requires that all VMs be encrypted.
The secure environment consists of a dedicated vCenter instance with a 4-node vSphere cluster and already contains a number of encrypted VMs.&lt;/p&gt;
&lt;p&gt;Which two steps must the administrator take to ensure the migration is a success? (Choose two.)&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[x] &lt;code&gt;A. Ensure that the source and destination vCenter instances share the same Key Management Server (KMS).&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] B. Ensure that Encrypted vMotion Is turned off for the VM.&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;C. Ensure that the VM is encrypted before attempting the migration.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] D. Ensure that the VM is powered off before attempting the migration.&lt;/li&gt;
&lt;li&gt;[ ] E. Ensure that the source and destination vCenter Servers have a different Key Management Server (KMS).&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Explanation&lt;/strong&gt;
To ensure a successful migration of an encrypted VM to a secure environment, the administrator needs to ensure that the source and destination vCenter instances share the same Key Management Server (KMS), which provides encryption keys for both environments; and ensure that the VM is encrypted before attempting the migration, which allows preserving its encryption status during vMotion.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;References&lt;/strong&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/vsphere/8-0/vsphere-security.html
&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h3&gt;Question 22&lt;/h3&gt;
&lt;p&gt;An administrator is investigating reports of users experiencing difficulties logging into a VMware vCenter instance using LDAP accounts.&lt;/p&gt;
&lt;p&gt;Which service should the administrator check as part of troubleshooting?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[ ] A. vSphere Authentication Proxy Service.&lt;/li&gt;
&lt;li&gt;[ ] B. Lookup Service.&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;C. Identity Management Service.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] D. VMware Authentication Framework Daemon.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Explanation&lt;/strong&gt;
Identity Management Service is the service that handles authentication requests from LDAP accounts and other identity sources in vCenter Server.
&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;h3&gt;Question 23&lt;/h3&gt;
&lt;p&gt;An administrator is investigating user logon failures for a VMware vCenter instance.&lt;/p&gt;
&lt;p&gt;Where can the administrator find log files containing information related to user login activities?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[ ] A. On the vCenter Management Interface.&lt;/li&gt;
&lt;li&gt;[ ] B. On the ESXi host using the Direct Console User Interface (®).&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;C. On the vCenter Server Appliance.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] D. In the vSphere Client when viewing the vCenter virtual machine.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Explanation&lt;/strong&gt;
The administrator can find log files containing information related to user login activities on the vCenter Server Appliance, which is a preconfigured Linux-based virtual machine that runs all vCenter Server services.&lt;/p&gt;
&lt;p&gt;The log files are located in /var/log/vmware/vmware-vpx/vpxd.log and /var/log/vmware/sso/ssoAdminServer.log directories.
&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;h3&gt;Question 24&lt;/h3&gt;
&lt;p&gt;An administrator plans to bring VMware vCenter offline in order to perform hardware mainte-nance on the host where the vCenter Server Appliance is running.&lt;/p&gt;
&lt;p&gt;Which vSphere feature must be configured to ensure that vCenter users experience minimal downtime?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[ ] A. vSphere Distributed Resource Scheduler.&lt;/li&gt;
&lt;li&gt;[ ] B. Hybrid Linked Mode.&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;C. vCenter Server High Availability.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] D. Enhanced Linked Mode.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;References&lt;/strong&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/vsphere/8-0/vsphere-availability/business-continuity-and-minimizing-downtime/protecting-vcenter-server-with-vcenter-high-availability.html
&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h3&gt;Question 25&lt;/h3&gt;
&lt;p&gt;Which three vSphere features are still supported for Windows-based virtual machines when enabling vSphere&apos;s-virtualization-based security feature? (Choose three.)&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[x] &lt;code&gt;A. vSphere vMotion.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] B. PCI passthrough.&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;C. vSphere High Availability (HA).&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] D. vSphere Fault Tolerance.&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;E. vSphere Distributed Resources Scheduler (DRS).&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] F. Hot Add of CPU or memory.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;References&lt;/strong&gt;
&lt;img src=&quot;https://img.v0nl1.com/26-01/6972e46ad2b0a.webp&quot; alt=&quot;Unsupported VMware Features on VBS&quot; /&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/vsphere/8-0/vsphere-security/securing-windows-guest-operating-systems-with-virtual-based-security/virtualization-based-security-best-practices.html
&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h3&gt;Question 26&lt;/h3&gt;
&lt;p&gt;An administrator is tasked with deploying a new on-premises software-defined data center (SDDC) that will contain a total of eight VMware vCenter instances.&lt;/p&gt;
&lt;p&gt;The following requirements must be met:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;All vCenter instances should be visible in a single vSphere Client session.&lt;/li&gt;
&lt;li&gt;All vCenter inventory should be searchable from a single vSphere Client session.&lt;/li&gt;
&lt;li&gt;Any administrator must be able to complete operations on any vCenter instance using a single set of credentials.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;What should the administrator configure to meet these requirements?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[ ] A. Two Enhanced Linked Mode groups consisting of four vCenter instances each in a Single Sign-On domain.&lt;/li&gt;
&lt;li&gt;[ ] B. A single Hybrid Linked Mode group consisting of four vCenter instances each in a Single Sign-On domain.&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;C. A single Enhanced Linked Mode group consisting of eight vCenter instances in one Single Sign-On domain.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] D. A single Hybrid Linked Mode group consisting of eight vCenter instances in one Single Sign-On domain.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Explanation&lt;/strong&gt;
To meet the requirements of viewing and searching all vCenter instances and inventory with a single vSphere Client session and a single set of credentials, the administrator needs to configure a single Enhanced Linked Mode group consisting of eight vCenter instances in one Single Sign-On domain.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;References&lt;/strong&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/vsphere/8-0/vcenter-installation-and-setup/introduction-to-vsphere-installation-and-setup/creating-vcenter-server-linked-mode-groups.html#GUID-4394EA1C-0800-4A6A-ADBF-D35C41868C53-en
&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h3&gt;Question 27&lt;/h3&gt;
&lt;p&gt;After adding a new vSphere ESXi host with identical hardware configuration to an existing vSphere cluster, which task would an administrator complete prior to checking the compliance with an existing host profile?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[x] &lt;code&gt;A. Attach the host profile to the new host.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] B. Duplicate the host profile.&lt;/li&gt;
&lt;li&gt;[ ] C. Copy the host settings from the new host.&lt;/li&gt;
&lt;li&gt;[ ] D. Import the host profile.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Explanation&lt;/strong&gt;
The task that should be completed prior to checking the compliance with an existing host profile is to attach the host profile to the new host, which allows applying the configuration template of the reference host to the new host.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;References&lt;/strong&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/vsphere/8-0/host-profiles/what-are-vsphere-host-profiles.html#GUID-0E5BF330-A765-4CDB-A97C-1D8C26260E5A-en
&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h3&gt;Question 28&lt;/h3&gt;
&lt;p&gt;An administrator creates a new corporate virtual machine (VM) template every month to include all of the latest patches. The administrator needs to ensure that the new VM template is synchronized from the primary data center site (London) to two secondary data center sites (Tokyo and New York). The administrator is aware that datastore space is limited within the secondary data center sites. The administrator needs to ensure that the VM template is available in the secondary sites the first time a new virtual machine is requested.&lt;/p&gt;
&lt;p&gt;Which four steps should the administrator take to meet these requirements? (Choose four.)&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[x] &lt;code&gt;A. Create a new published content library at the primary site.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] B. Add the virtual machine template to the subscribed content library.&lt;/li&gt;
&lt;li&gt;[ ] C. Create a new published content library in each secondary site.&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;D. Create a new subscribed content library in each secondary site.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;E. Configure the subscribed content library to download content when needed.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;F. Configure each subscribed content library to download content immediately.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] G. Add the virtual machine template to the published content library.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Explanation&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;To meet the requirements of synchronizing and protecting images and templates with limited datastore space, the administrator needs to create a new published content library at the primary site, which makes it available for subscription by other vCenter Server instances;&lt;/li&gt;
&lt;li&gt;create a new subscribed content library in each secondary site, which allows accessing content from a published content library;&lt;/li&gt;
&lt;li&gt;configure the subscribed content library to download content when needed, which saves datastore space by only downloading content on demand;&lt;/li&gt;
&lt;li&gt;and add the virtual machine template to the published content library, which makes it available for other hosts to use.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;References&lt;/strong&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/vsphere/8-0/vsphere-virtual-machine-administration/using-content-librariesvsphere-vm-admin/managing-a-subscribed-libraryvsphere-vm-admin.html#GUID-9DE2BD8F-E499-4F1E-956B-67212DE593C6-en
&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h3&gt;Question 29&lt;/h3&gt;
&lt;p&gt;An administrator is preparing to perform an update to vSphere clusters that are running vSAN. The administrator wants to ensure that the following requirements are met as part of the update:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;All hosts in the cluster are updated with the same software.&lt;/li&gt;
&lt;li&gt;The firmware versions on the hosts are updated&lt;/li&gt;
&lt;li&gt;The new software versions are checked for compliance against the vSAN Hardware Compatibility List.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Which three steps should the administrator take to meet these requirements? (Choose three.)&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[x] &lt;code&gt;A. Configure vSphere Lifecycle Manager with an image for the cluster.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;B. Register the vendor hardware management system as a vCenter Server extension.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] C. Download the firmware updates from the VMware website&lt;/li&gt;
&lt;li&gt;[ ] D. Download the firmware updates from the vendor website.&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;E. Run a hardware compatibility check using vSphere Lifecycle Manager.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] F. Configure vSphere Lifecycle Manager with a baseline for the cluster.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Explanation&lt;/strong&gt;
The administrator should take these three steps to perform an update to vSphere clusters that are running vSAN:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Configure vSphere Lifecycle Manager with an image for the cluster, which allows the administrator to specify the desired ESXi version and firmware for the hosts in the cluster.&lt;/li&gt;
&lt;li&gt;Register the vendor hardware management system as a vCenter Server extension, which allows the administrator to update the firmware on the hosts using vSphere Lifecycle Manager. The vendor hardware management system can also provide the firmware updates to vSphere Lifecycle Manager, so there is no need to download them from the vendor website separately.&lt;/li&gt;
&lt;li&gt;Run a hardware compatibility check using vSphere Lifecycle Manager, which verifies that the new software and firmware versions are compatible with the vSAN Hardware Compatibility List.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;References&lt;/strong&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/vsphere/8-0/managing-host-and-cluster-lifecycle/about-vsphere-lifecycle-manager-new.html
https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/vsphere/8-0/managing-host-and-cluster-lifecycle/hardware-compatibility-checks.html
&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h3&gt;Question 30&lt;/h3&gt;
&lt;p&gt;An administrator is responsible for performing maintenance tasks on a vSphere cluster. The cluster has the following configuration:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Identically configured vSphere ESXi hosts (esx01, esx02, esx03 and esx04).&lt;/li&gt;
&lt;li&gt;All workloads are deployed into a single VMFS datastore provided by the external storage array.&lt;/li&gt;
&lt;li&gt;vSphere High Availability (HA) has not been enabled.&lt;/li&gt;
&lt;li&gt;vSphere Distributed Resource Scheduler (DRS) has not been enabled.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Currently, a critical production application workload (VM1) is running on esx01.&lt;/p&gt;
&lt;p&gt;Given this scenario, which two actions are required to ensure VM1 continues to run when esx01 is placed into maintenance mode? (Choose two.)&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[x] &lt;code&gt;A. Fully automated DRS must be enabled on the cluster so that VM1 will be automatically migrated to another host within the cluster when esx01 is placed into maintenance mode.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] B. VM1 must be manually shut down and cold migrated to another host within the cluster using vSphere vMotion before esx01 is placed into maintenance mode.&lt;/li&gt;
&lt;li&gt;[ ] C. vSphere HA must be enabled on the cluster so that VM1 will be automatically migrated to another host within the cluster when esx01 is placed into maintenance mode.&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;D. VM1 must be manually live migrated to another host within the cluster using vSphere vMotion before esx01 is placed into maintenance mode.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] E. VM1 must be manually migrated to another host within the cluster using vSphere Storage vMotion
before esx01 is placed into maintenance mode.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Explanation&lt;/strong&gt;
Two actions that are required to ensure VM1 continues to run when esx01 is placed into maintenance mode are enabling fully automated DRS on the cluster, which allows balancing the workload across hosts and migrating VMs without user intervention; and manually live migrating VM1 to another host within the cluster using vSphere vMotion, which allows moving a running VM without downtime.&lt;/p&gt;
&lt;p&gt;&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;h3&gt;Question 31&lt;/h3&gt;
&lt;p&gt;An administrator remotely deploys VMware ESXi using an out of band management connection and now needs to complete the configuration of the management network so that the host is accessible through the vSphere Host Client.&lt;/p&gt;
&lt;p&gt;The following information has been provided to complete the configuration:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Host FQDN esxi01.corp.local&lt;/li&gt;
&lt;li&gt;Management VLAN ID: 10&lt;/li&gt;
&lt;li&gt;DHCP: No&lt;/li&gt;
&lt;li&gt;Management IP Address: 172.16.10.101/24&lt;/li&gt;
&lt;li&gt;Management IP Gateway: 172.16.10.1&lt;/li&gt;
&lt;li&gt;Corporate DNS Servers: 172 16.10.5, 172.16.10..6&lt;/li&gt;
&lt;li&gt;DNS Domain: corp.local&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;In addition, all host configurations must also meet the following requirements:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;The management network must use only IPv4 network protocols.&lt;/li&gt;
&lt;li&gt;The management network must be fault tolerant.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Which four high level tasks should the administrator complete in the Direct Console User Interface (DCUI) in order to meet the requirements and successfully log into the vSphere Host Client? (Choose four.)&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[x] &lt;code&gt;A. Set the value of the VMware ESXi Management Network VLAN ID to 10.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;B. Configure at least two network adapters for the VMware ESXi Management Network.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;C. Update the VMware ESXi Management Network IPv4 configuration to use a static IPv4 address.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] D. Create a DNS A Record for the VMware ESXi host on the corporate DNS servers.&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;E. Disable IPv6 for the VMware ESXi Management Network.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] F. Restore the original Management vSphere Standard Switch.&lt;/li&gt;
&lt;li&gt;[ ] G. Update the VMware ESXi Management Network DNS configuration to use the corporate DNS servers for names resolution.&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;Question 32&lt;/h3&gt;
&lt;p&gt;Which feature would allow for the non-disruptive migration of a virtual machine between two clusters in a single VMware vCenter instance?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[x] &lt;code&gt;A. vSphere vMotion&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] B. Cross vCenter Migration&lt;/li&gt;
&lt;li&gt;[ ] C. vSphere Storage vMotion&lt;/li&gt;
&lt;li&gt;[ ] D. vSphere Fault Tolerance&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Explanation&lt;/strong&gt;
vSphere vMotion allows for the non-disruptive migration of a virtual machine between two clusters in a single vCenter instance, as long as there is shared storage and network connectivity between the clusters.&lt;/p&gt;
&lt;p&gt;vMotion is used to move the VM to a different cluster within the same vCenter. This only works if both clusters share the same storage. If they don&apos;t you also need to perform a Storage vMotion. Cross vCenter Migration is only used to migrate to a different vCenter.
&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;h3&gt;Question 33&lt;/h3&gt;
&lt;p&gt;An administrator needs to provide encryption for workloads within an existing vSphere cluster. The following requirements must be met:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Workloads should be encrypted at rest.&lt;/li&gt;
&lt;li&gt;Encrypted workloads must automatically be encrypted during transit.&lt;/li&gt;
&lt;li&gt;Encryption should not require any specific hardware.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;What should the administrator configure to meet these requirements?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[ ] A. Encrypted vSphere vMotion&lt;/li&gt;
&lt;li&gt;[ ] B. Unified Extensible Firmware Interface (UEFI) Secure Boot&lt;/li&gt;
&lt;li&gt;[ ] C. Host Encryption&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;D. VM Encryption&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Explanation&lt;/strong&gt;
The feature that should be configured to provide encryption for workloads within an existing vSphere cluster without requiring any specific hardware is VM Encryption, which allows encrypting VMs at rest and during vMotion.
&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;h3&gt;Question 34&lt;/h3&gt;
&lt;p&gt;Refer to the exhibit.
&lt;img src=&quot;https://img.v0nl1.com/26-01/697328f685020.webp&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;After updating a predefined alarm on VMware vCenter, an administrator enables email notifications as shown in the attached alarm; however, notifications are NOT being sent.&lt;/p&gt;
&lt;p&gt;Where must the mail server settings be configured by the administrator to resolve this issue?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[ ] A. In the ESXi host system config.&lt;/li&gt;
&lt;li&gt;[ ] B. In the alarm rule definitions.&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;C. In the vCenter settings in the vSphere Client.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] D. in the vCenter Management Interface.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Option C is correct because it allows the administrator to configure the mail server settings in the vCenter settings in the vSphere Client, which are required for sending email notifications for alarms.&lt;/li&gt;
&lt;li&gt;Option A is incorrect because it configures the mail server settings on an ESXi host system, which are not used for sending email notifications for alarms.&lt;/li&gt;
&lt;li&gt;Option B is incorrect because it configures the alarm rule definitions, which arealready enabled in the exhibit.&lt;/li&gt;
&lt;li&gt;Option D is incorrect because it configures the vCenter Management Interface,which is not used for sending email notifications for alarms.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;References:&lt;/strong&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/vsphere/8-0/vsphere-monitoring-and-performance.html
&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h3&gt;Question 35&lt;/h3&gt;
&lt;p&gt;An administrator needs better performance and near-zero CPU utilization from the ESXI hosts for networking functions and processing. The administrator creates a new vSphere Distributed Switch and enables network offloads compatibility.&lt;/p&gt;
&lt;p&gt;Which solution would help achieve this goal?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[ ] A. VSphere Distributed Services Engine&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;B. Data Processing Units (DPUs)&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] C. vSphere Network I/O Control&lt;/li&gt;
&lt;li&gt;[ ] D. Universal Passthrough version 2&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Explanation&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;The solution that would help achieve better performance and near-zero CPU utilization from the ESXi hosts for networking functions and processing is Data Processing Units (DPUs), which are specialized processors that offload network services from the CPU and provide hardware acceleration.
&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;h3&gt;Question 36&lt;/h3&gt;
&lt;p&gt;An administrator has configured Storage I/O Control (SIOC) on a Virtual Machine File System (VMFS) datastore.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;The datastore supports 30,000 IOPS&lt;/li&gt;
&lt;li&gt;Storage I/O Control has been set to manual&lt;/li&gt;
&lt;li&gt;Storage I/O Control is triggered when latency hits 30 ms&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The datastore contains 3 virtual machines (VMs)&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;A gold tier VM&lt;/li&gt;
&lt;li&gt;A silver tier VM&lt;/li&gt;
&lt;li&gt;A bronze tier VM&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Assuming the datastore latency does not exceed 29ms, what is the maximum number of IOPS the bronze tier VM is entitled to?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[x] &lt;code&gt;A. 30,000&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] B. 20,000&lt;/li&gt;
&lt;li&gt;[ ] C. 10.000&lt;/li&gt;
&lt;li&gt;[ ] D. 5,000&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Explanation&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;The bronze tier VM is entitled to 30,000 IOPS, which is the maximum number of IOPS that the datastore supports. Storage I/O Control (SIOC) does not limit the IOPS of any VM unless the datastore latency exceeds the threshold, which is 30 ms in this case. Therefore, as long as the datastore latency is below 29 ms, the bronze tier VM can use up to 30,000 IOPS.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;References:&lt;/strong&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;https://docs.vmware.com/en/VMware-vSphere/7.0/com.vmware.vsphere.resmgmt.doc/GUID-7686FEC3-1FAC-
&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h3&gt;Question 37&lt;/h3&gt;
&lt;p&gt;A VMkernel port is labelled PROD01 and uses the default TCP/IP stack. Currently, this VMkernel port is configured for supporting live virtual machine (VM) migrations.&lt;/p&gt;
&lt;p&gt;Which configuration change should the administrator make to isolate live VM migration traffic from other network traffic?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[x] &lt;code&gt;A. Remove PROD01 and create a new VMkernel port and set the TCP/IP stack to vSphere vMotion.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] B. Remove PROD01 and create a new VMkernel port with the TCP/IP stack set to provisioning.&lt;/li&gt;
&lt;li&gt;[ ] C. Create a new VMkernel port and set the TCP/IP stack to provisioning.&lt;/li&gt;
&lt;li&gt;[ ] D. Modify PROD01 by changing the TCP/IP stack to vSphere vMotion.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Explanation&lt;/strong&gt;
Select a TCP/IP stack from the list. Once you set a TCP/IP stack for the VMkernel adapter, you cannot change it later.&lt;/p&gt;
&lt;p&gt;If you select the vMotion or the Provisioning TCP/IP stack, you will be able to use only these stacks to handle vMotion or Provisioning traffic on the host.&lt;/p&gt;
&lt;p&gt;All VMkernel adapters for vMotion on the default TCP/IP stack are disabled for future vMotion sessions.&lt;/p&gt;
&lt;p&gt;If you set the Provisioning TCP/IP stack, VMkernel adapters on the default TCP/IP stack are disabled for operations that include Provisioning traffic, such as virtual machine cold migration, cloning, and snapshot migration.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;References:&lt;/strong&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/vsphere/8-0/vsphere-networking/setting-up-vmkernel-networking/the-vmkernel-networking-layer.html#GUID-79846459-2437-459B-BA67-4A6C493DF2E7-en
&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h3&gt;Question 38&lt;/h3&gt;
&lt;p&gt;Refer to the exhibit.
&lt;img src=&quot;https://img.v0nl1.com/26-01/697365b90aa2a.webp&quot; alt=&quot;&quot; /&gt;
Given the configuration shown in the exhibit, what should the administrator do if the latest VM template contains changes that are no longer needed?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[ ] A. Delete App-LibTemplate (2)&lt;/li&gt;
&lt;li&gt;[ ] B. Revert to App-LibTernplate (2)&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;C. Delete App-LibTemplate (3)&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] D. Check out App-LibTemplate (3)&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Explanation&lt;/strong&gt;
Deleting App-LibTemplate (3) will remove the changes that are no longer needed and revert to the previous version of the template.
&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;h3&gt;Question 39&lt;/h3&gt;
&lt;p&gt;An administrator successfully installs VMware ESXi onto the first host of a new vSphere cluster but makes no additional configuration changes. When attempting to log into the vSphere Host Client using the Fully Qualified Domain Name (FQDN) of the host, the administrator receives the following error message:&lt;/p&gt;
&lt;p&gt;&quot;Server Not Found - We can&apos;t connect to the server at esxi101.corp.local.&quot;&lt;/p&gt;
&lt;p&gt;The following information has been provided to complete the configuration:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Host FQDN esxi101.corp.local&lt;/li&gt;
&lt;li&gt;Management VLAN ID: 10&lt;/li&gt;
&lt;li&gt;DHCP: No&lt;/li&gt;
&lt;li&gt;Management IP Address: 172.16 10.101/24&lt;/li&gt;
&lt;li&gt;Management IP Gateway: 172.16.10.1&lt;/li&gt;
&lt;li&gt;Corporate DNS Servers: 172.16 10.5,172.16.10.6&lt;/li&gt;
&lt;li&gt;DNS Domain: corp.local&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;In addition, all host configurations must also meet the following requirements:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;The management network must use only IPv4 network protocols.&lt;/li&gt;
&lt;li&gt;The management network must be fault tolerant&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Which three high level tasks should the administrator complete, at a minimum, in order to successfully log into the vSphere Host Client using the FQDN for esxi101 and complete the configuration? (Choose three.)&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[x] &lt;code&gt;A. Ensure a DNS A Record is created for the VMware ESXi host on the corporate DNS servers.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] B. Update the VMware ESXi Management Network DNS configuration to use the corporate DNS servers for names resolution&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;C. Update the VMware ESXi Management Network IPv4 configuration to use a static a IPv4 address&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] D. Configure at least two network adapters for the VMware ESXi Management Network&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;E. Set the value of the VMware ESXi Management Network VLAN ID to 10&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] F. Disable IPv6 for the VMware ESXi Management Network&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;Question 40&lt;/h3&gt;
&lt;p&gt;Refer to the exhibit.
&lt;img src=&quot;https://img.v0nl1.com/26-01/6973778246122.webp&quot; alt=&quot;&quot; /&gt;
An administrator is tasked with adding new capacity to an existing software-defined data center (SDDC).&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;The SDDC currently hosts two vSphere clusters (ClusterA and ClusterB) with different CPU compatibilities.&lt;/li&gt;
&lt;li&gt;vSphere vMotion and vSphere Distributed Resource Scheduler (DRS) are currently in use in the SDDC.&lt;/li&gt;
&lt;li&gt;The new capacity  will be implemented by provisioning four ESXi hosts running a new generation of Intel Skylake CPUs.&lt;/li&gt;
&lt;li&gt;All workload virtual machines (VMs) must support live migration to any cluster in the SDDC.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The administrator noticed the running critical ever virtual machine (VM) shown in the exhibit is not migrating using vSphere vMotion to the original Clusters A or B.&lt;/p&gt;
&lt;p&gt;Which three steps must the administrator take to support this functionality? (Choose three.)&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[x] &lt;code&gt;A. Power on the VM.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] B. Disable the Enhanced vMotion Compatibility (EVC) on the VM.&lt;/li&gt;
&lt;li&gt;[ ] C. Reboot the VM.&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;D. Configure the Enhanced vMotion Compatibility (EVC) on vSphere Cluster A and B to support Intel Skylake.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;E. Power off the VM.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] F. Configure the Enhanced vMotion Compatibility (EVC) on the VM to Intel Skylake.&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;Question 41&lt;/h3&gt;
&lt;p&gt;To keep virtual machines (VMs) up and running at all times in a vSphere cluster, an administrator would like VMs to be migrated automatically when the host hardware health status becomes degraded.&lt;/p&gt;
&lt;p&gt;Which cluster feature can be used to meet this requirement?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[ ] A. Predictive DRS&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;B. Proactive HA&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] C. vSphere HA Orchestrated Restart&lt;/li&gt;
&lt;li&gt;[ ] D. vSphere Fault Tolerance&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Explanation&lt;/strong&gt;
Proactive HA is a cluster feature that can be used to migrate VMs automatically when the host hardware health status becomes degraded, before a failure occurs.
&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;h3&gt;Question 42&lt;/h3&gt;
&lt;p&gt;What is the minimum network throughput in Gb/s for vSAN using the Express Storage Architecture (ESA)?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[ ] A. 50&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;B. 25&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] C. 1&lt;/li&gt;
&lt;li&gt;[ ] D. 10&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;strong&gt;特性&lt;/strong&gt;&lt;/th&gt;
&lt;th&gt;&lt;strong&gt;vSAN OSA (Original)&lt;/strong&gt;&lt;/th&gt;
&lt;th&gt;&lt;strong&gt;vSAN ESA (Express)&lt;/strong&gt;&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;最低网络速率&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;1 Gb/s (Hybrid) / 10 Gb/s (AF)&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;25 Gb/s&lt;/strong&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;推荐网络速率&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;10 Gb/s 或更高&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;100 Gb/s&lt;/strong&gt; (为了获得最佳性能)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;支持的介质&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;混合 (磁盘+闪存) 或 全闪存&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;仅限 NVMe&lt;/strong&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&amp;lt;/details&amp;gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h3&gt;Question 43&lt;/h3&gt;
&lt;p&gt;An administrator needs to update a VMware vCenter instance to a newer minor release version. Due to restrictions within the environment, the vCenter instance does not have access to the Internet As a first step, the administrator downloads the required update on another machine.&lt;/p&gt;
&lt;p&gt;What are the next steps the administrator must perform to complete the update?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[ ] A. Place the update ISO file in a Virtual Machine File System (VMFS) datastore.Use the vSphere Client to select the update ISO file as the source for the update.&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;B. Mount the ISO update file to the CD-ROM drive of the vCenter instance.Use the vCenter Management Interface to select the CD-ROM as the source for the update.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] C. Place the ISO update file in a folder accessible to the vCenter instance over HTTPS.Use the vCenter Management Interface to select the update file as the source for the update.&lt;/li&gt;
&lt;li&gt;[ ] D. Place the ZIP update file in a folder accessible to the vCenter instance over HTTPS.Use the vSphere Client to select the update file as the source for the update.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;https://4sysops.com/archives/three-ways-to-update-vmware-vcenter-server-appliance-vcsa/
&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h3&gt;Question 44&lt;/h3&gt;
&lt;p&gt;An administrator must gracefully restart a virtual machine (VM) through the vSphere Client but the option is greyed out. The administrator has full administrative access on VMware vCenter and all the objects available in vCenter, but has no access to log onto the operating system.&lt;/p&gt;
&lt;p&gt;Which action should the administrator take to meet the objective?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[ ] A. Upgrade the virtual hardware&lt;/li&gt;
&lt;li&gt;[ ] B. Migrate the VM to another host&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;C. Install VMware Tools&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] D. Restart vCenter&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Explanation&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Installing VMware Tools will enable the graceful restart option for the virtual machine, as well as other features such as time synchronization  and guest OS customization.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;References:&lt;/strong&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/tools/13-0-0/vmware-tools-administration/introduction-to-vmware-tools.html
&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h3&gt;Question 45&lt;/h3&gt;
&lt;p&gt;An administrator is adding a new ESXi host to an existing vSphere cluster. When selecting the cluster, the administrator Is unable to use the Cluster Quickstart workflow to add and configure the additional host.&lt;/p&gt;
&lt;p&gt;What could be the root cause of this issue?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[x] &lt;code&gt;A. The administrator has previously dismissed the Cluster Quickstart workflow.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] B. The administrator must manually add the host to the cluster before using the Cluster Quickstart workflow.&lt;/li&gt;
&lt;li&gt;[ ] C. The administrator has not been assigned the required permissions to use the Cluster Quickstart workflow.&lt;/li&gt;
&lt;li&gt;[ ] D. The administrator must enable the Cluster Quickstart workflow option in VMware vCenter.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Explanation&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Option A is correct because it indicates that the administrator has previously dismissed the Cluster Quickstart workflow, which will prevent them from using it to add and configure an additional host. To use the Cluster Quickstart workflow again,
the administrator must enable it in the cluster settings.&lt;/p&gt;
&lt;p&gt;Option B is incorrect because the administrator does not need to manually add the host to the cluster before using the Cluster Quickstart workflow, as this is one of the steps in the workflow.&lt;/p&gt;
&lt;p&gt;Option C is incorrect because the administrator does not need any special permissions to use the Cluster Quickstart workflow, as long as they have permissions to perform cluster operations.&lt;/p&gt;
&lt;p&gt;Option D is incorrect because there is no option to enable the Cluster Quickstart workflow in VMware vCenter, as this is a feature of vSphere clusters.&lt;/p&gt;
&lt;p&gt;&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;h3&gt;Question 46&lt;/h3&gt;
&lt;p&gt;A vSphere cluster has the following vSphere Distributed Resource Scheduler (DRS) group configuration:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Virtual machine (VM) group named DB&lt;/li&gt;
&lt;li&gt;Host groups named PROD11 and PROD55&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The administrator wants to force the VMs in the DB group to run on the hosts in the PROD11 group.&lt;/p&gt;
&lt;p&gt;However, if all the hosts in PROD55.&lt;/p&gt;
&lt;p&gt;Which VM/Host rule must the administrator create to ensure that these requirements are met?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[x] &lt;code&gt;A. A preferential rule between the DB group and PROD11 group&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] B. A preferential rule between the DB group and the PROD55 group&lt;/li&gt;
&lt;li&gt;[ ] C. A preferential rule between the DB group and the PROD55 group&lt;/li&gt;
&lt;li&gt;[ ] D. A required rule between the DB group and the PROD11 group&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Explanation&lt;/strong&gt;
Option A is correct because it allows the administrator to create a preferential rule between the DB group and PROD11 group, which will force the VMs in the DB group to run on the hosts in the PROD11 group if possible, but will allow them to run on the hosts in PROD55 group if necessary.&lt;/p&gt;
&lt;p&gt;Option B is incorrect because it will create a preferential rule between the DB group and PROD55 group, which will force the VMs in the DB group to run on the hosts in PROD55 group if possible, which is not what the administrator wants.&lt;/p&gt;
&lt;p&gt;Option C is incorrect because it is the same as option B. Option D is incorrect because it will create a required rule between the DB group and PROD11 group, which will force the VMs in the DB group to run only on the hosts in PROD11 group and not allow them to run on the hosts in PROD55 group if needed.&lt;/p&gt;
&lt;p&gt;&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;h3&gt;Question 47&lt;/h3&gt;
&lt;p&gt;An administrator decides to restore VMware vCenter from a file-based backup following a failed upgrade.&lt;/p&gt;
&lt;p&gt;Which interface should the administrator use to complete the restore?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[ ] A. Direct Console User Interface (DCUI)&lt;/li&gt;
&lt;li&gt;[ ] B. vCenter Management Interface (VAMI)&lt;/li&gt;
&lt;li&gt;[ ] C. vSphere Client&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;D. vCenter GUI Installer&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;Question 48&lt;/h3&gt;
&lt;p&gt;An administrator plans to update the Supervisor cluster and has noticed some of the Tanzu Kubemetes Grid clusters are running an incompatible version.&lt;/p&gt;
&lt;p&gt;Which action must the administrator take before proceeding with the Supervisor cluster update?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[ ] A. Update all Tanzu Kubernetes Grid clusters to the latest version prior to the Supervisor cluster update.&lt;/li&gt;
&lt;li&gt;[ ] B. No action is needed - Tanzu Kubernetes Grid clusters will be updated automatically as part of the update process.&lt;/li&gt;
&lt;li&gt;[ ] C. No action is needed - Incompatible Tanzu Kubernetes Grid clusters can be manually updated after the Supervisor cluster update.&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;D. Update incompatible Tanzu Kubernetes Grid clusters prior to the Supervisor cluster update.&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;Question 49&lt;/h3&gt;
&lt;p&gt;An administrator is planning to upgrade a VMware vCenter instance to version 8. It is currently integrated with the following solutions:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;VMware Aria Automation&lt;/li&gt;
&lt;li&gt;VMware Cloud Director&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Which tool can the administrator use to run Interoperability reports before the upgrade process?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[ ] A. sphere Update Manager&lt;/li&gt;
&lt;li&gt;[ ] B. VMware Aria Suite Lifecycle&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;C. vCenter Server Update Planner&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] D. vSphere Lifecycle Manager&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Explanation&lt;/strong&gt;
The tool that can be used to run interoperability reports before upgrading a vCenter Server instance is vCenter
Server Update Planner, which allows checking compatibility with other VMware products.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;References:&lt;/strong&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Monitor Interoperability for the Current vCenter Server Version&lt;/p&gt;
&lt;/blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/vsphere/8-0/vcenter-upgrade/managing-vcenter-server-updates-and-upgrades.html#GUID-E3097303-3F41-42B7-BCD3-E06B1D231328-en&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;h3&gt;Question 50&lt;/h3&gt;
&lt;p&gt;A vSphere environment is experiencing intermittent short bursts of CPU contention, causing brief production outages for some of the virtual machines (VMs). To understand the cause of the issue, the administrator wants to observe near real-time statistics for all VMs.&lt;/p&gt;
&lt;p&gt;Which two vSphere reporting tools could the administrator use? (Choose two.)&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[x] &lt;code&gt;A. Advanced Performance Charts&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] B. esxcli&lt;/li&gt;
&lt;li&gt;[ ] C. resxtop&lt;/li&gt;
&lt;li&gt;[ ] D. Overview Performance Charts&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;E. esxtop&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Explanation&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Advanced Performance Charts and esxtop are both vSphere reporting tools that can be used to observe near real-time statistics for all VMs. Advanced Performance Charts provides a graphical view of performance data, while esxtop is a command-line tool that provides more detailed information.
&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;h3&gt;Question 51&lt;/h3&gt;
&lt;p&gt;An administrator is attempting to configure Storage I/O Control (SIOC) on five datastores within a vSphere environment. The administrator is being asked to determine why SIOC configuration completed successfully on only four of the datastores.&lt;/p&gt;
&lt;p&gt;What are two possible reasons why the configuration was not successful? (Choose two.)&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[x] &lt;code&gt;A. The datastore contains Raw Device Mappings (RDMs).&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] B. SAS disks are used for the datastore.&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;C. The datastore has multiple extents.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] D. The datastore is using ISCSI.&lt;/li&gt;
&lt;li&gt;[ ] E. The administrator is using NFS storage.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Explanation&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;A. The datastore contains Raw Device Mappings (RDMs). (数据存储包含原始设备映射)&lt;/p&gt;
&lt;p&gt;理由：SIOC 只能管理由 ESXi 主机通过 VMFS 文件系统调度和控制的流量。裸设备映射 (RDM)（尤其是物理模式的 RDM）允许虚拟机绕过 VMFS 直接与存储设备通信。由于 SIOC 无法监控或拦截这种直接的 I/O 流，因此包含 RDM 的数据存储不支持开启 SIOC。&lt;/p&gt;
&lt;p&gt;C. The datastore has multiple extents. (数据存储具有多个扩展盘)&lt;/p&gt;
&lt;p&gt;理由：VMware 明确规定，SIOC 不支持由多个 Extents（扩展） 组成的数据存储。如果一个 VMFS 数据存储是通过跨越多个 LUN（物理卷）创建的，SIOC 将无法在该卷上启用。&lt;/p&gt;
&lt;p&gt;参考文档：&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Manage Storage I/O Resources with vSphere
https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/vsphere/8-0/vsphere-resource-management/managing-storage-i-o-resources.html#GUID-7686FEC3-1FAC-4DA7-B698-B808C44E5E96-en&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;h3&gt;Question 52&lt;/h3&gt;
&lt;p&gt;A vSphere cluster has the following configuration:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Virtual machines (VMs) are running Production and Test workloads&lt;/li&gt;
&lt;li&gt;vSphere Distributed Resource Scheduler (DRS) is enabled&lt;/li&gt;
&lt;li&gt;There are no resource pools in the cluster&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Performance monitoring data shows that the Production workload VMs are not receiving their fully allocated memory when the vSphere cluster is fully utilized.&lt;/p&gt;
&lt;p&gt;A combination of which two steps could the administrator perform to ensure that the Production VMs are always guaranteed the full allocation of memory? (Choose two.)&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[ ] A. Assign a custom memory share value to the resource pool containing the Production VMs.&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;B. Assign a memory reservation value to the resource pool containing the Production VMs.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] C. Create a parent resource pool for the Production VMs.&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;D. Create a sibling resource pool for each of the Production and Test VMs.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] E. Create a child resource pool for the Test VMs.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;:::warning[警告]
本解答由AI生成，仅供参考，请仔细甄别。
:::&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Explanation&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;D. Create a sibling resource pool for each of the Production and Test VMs (为生产和测试 VM 分别创建同级资源池)&lt;/p&gt;
&lt;p&gt;理由：题目指出当前群集中没有资源池。为了对这两类性质不同的工作负载进行差异化管理，首先需要创建资源池。同级结构 (Sibling)：在群集下创建两个平行的（同级）资源池（例如 &quot;Production-Pool&quot; 和 &quot;Test-Pool&quot;），可以将生产 VM 和测试 VM 物理隔离开来。这是实施后续资源保障步骤的前提。&lt;/p&gt;
&lt;p&gt;B. Assign a memory reservation value to the resource pool containing the Production VMs (为包含生产 VM 的资源池分配内存预留值)
理由：预留 (Reservation) 是 vSphere 中唯一的“硬性保证”。&lt;/p&gt;
&lt;p&gt;工作机制：当你在生产资源池上设置了内存预留（Reservation），无论群集多么拥挤，ESXi 都会确保物理内存中始终留出这部分空间给该池。由于题目要求“始终保证全额分配（always guaranteed the full allocation）”，只有 Reservation 能够提供这种绝对保证。&lt;/p&gt;
&lt;p&gt;联动效应：通过在同级池结构中仅给生产池设置高额预留，即使测试池尝试争抢资源，也会因为生产池的“预留保护”而无法侵占生产环境的内存。&lt;/p&gt;
&lt;p&gt;A. Assign a custom memory share value (分配自定义份额)：&lt;/p&gt;
&lt;p&gt;缺陷：份额 (Shares) 仅在资源竞争时表现为“优先级”。它是一种相对保证。如果群集资源极度匮乏，即使 Shares 很高，也无法像 Reservation 那样提供“全额（Full allocation）”的硬性承诺。&lt;/p&gt;
&lt;p&gt;C. Create a parent resource pool (创建父资源池)：&lt;/p&gt;
&lt;p&gt;缺陷：单独创建一个父池而不进行切分或设置预留，无法解决生产和测试 VM 之间的资源争用问题。&lt;/p&gt;
&lt;p&gt;E. Create a child resource pool for the Test VMs (为测试 VM 创建子资源池)：&lt;/p&gt;
&lt;p&gt;缺陷：仅限制测试环境（通常是通过 Limit）并不等同于给生产环境提供“保证”。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;References:&lt;/strong&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/vsphere/8-0/vsphere-resource-management/configuring-resource-allocation-settings.html#GUID-14102AB7-2CF9-42E3-9642-3EB6629EF530-en&lt;/p&gt;
&lt;/blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/vsphere/8-0/vsphere-resource-management/managing-resource-pools.html#GUID-60077B40-66FF-4625-934A-641703ED7601-en&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;h3&gt;Question 53&lt;/h3&gt;
&lt;p&gt;An administrator runs a two-node vSphere cluster, which contains two domain controller virtual machines(VMs). The administrator wants to ensure that VMs run on separate hosts without interfering with normal maintenance operations.&lt;/p&gt;
&lt;p&gt;How should the administrator configure Distributed Resource Scheduler (DRS)?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[ ] A. Create a &apos;Must run Virtual Machines to Hosts&apos; anti-affinity rule.&lt;/li&gt;
&lt;li&gt;[ ] B. Create a &apos;Virtual Machines to Virtual Machines&apos; anti-affinity rule.&lt;/li&gt;
&lt;li&gt;[ ] C. Create a &apos;Virtual Machines to Virtual Machines&apos; dependency rule.&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;D. Create a &apos;Should run Virtual Machines to Hosts&apos; anti-affinity rule.&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;:::warning[警告]
本解答由AI生成，仅供参考，请仔细甄别。
:::&lt;/p&gt;
&lt;p&gt;场景需求：&lt;/p&gt;
&lt;p&gt;集群中有两个节点（主机）。
有两个域控制器虚拟机（VM）。
要求这两个 VM 运行在不同的主机上，以避免单点故障。
同时不能干扰正常的维护操作（如进入维护模式、DRS 自动迁移等）。&lt;/p&gt;
&lt;p&gt;规则类型分析：&lt;/p&gt;
&lt;p&gt;“Must run”规则：是硬性规则，DRS 和 vMotion 会强制满足它，但在某些情况下（如主机进入维护模式）可能阻止正常操作，甚至导致虚拟机无法迁移。
“Should run”规则：是软性规则，DRS 会尽量满足，但在必要时（如维护、资源紧张）可以违反，从而不影响维护操作的灵活性。
反关联规则对象：&lt;/p&gt;
&lt;p&gt;题目要求两个 VM 运行在不同主机上，所以应该是 Virtual Machines to Hosts 的反关联规则，而不是 VM to VM 的反关联规则（虽然 VM to VM 反关联也能实现类似效果，但 DRS 中更直接的是 VM to Hosts 规则）。&lt;/p&gt;
&lt;p&gt;但注意，在 vSphere DRS 规则中，VM to VM 反关联也是常见做法，不过这里选项里 VM to VM 反关联是 B，而 B 是“Must”还是“Should”？题中 B 没有说明是“Should”还是“Must”，但通常默认是“Must”。&lt;/p&gt;
&lt;p&gt;实际上，在 vSphere 7.x/8.x 中，创建 VM-VM 反关联规则时可以选择“Must”或“Should”。但题目给的选项里，B 只是“Virtual Machines to Virtual Machines anti-affinity rule”，没有“Should”字样，而 D 明确写了“Should run Virtual Machines to Hosts”。&lt;/p&gt;
&lt;p&gt;为什么选 D 而不是 B：&lt;/p&gt;
&lt;p&gt;因为题目强调“without interfering with normal maintenance operations”，所以必须用 Should 而不是 Must。&lt;/p&gt;
&lt;p&gt;在给定的四个选项中，只有 D 是“Should”类型的反关联规则，并且是针对 VM 到 Hosts 的，这正好满足“运行在不同主机上”且“允许维护时临时违反”的需求。&lt;/p&gt;
&lt;p&gt;结论：&lt;/p&gt;
&lt;p&gt;管理员应配置一个 Should run Virtual Machines to Hosts 反关联规则，这样 DRS 会尽量让两个域控制器 VM 运行在不同主机上，但在主机维护时仍可迁移到一个主机上，不会阻碍操作。
&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;h3&gt;Question 54&lt;/h3&gt;
&lt;p&gt;An administrator is tasked with providing users access to objects within an existing VMware vCenter instance.&lt;/p&gt;
&lt;p&gt;The vCenter inventory has a single data center with one management vSphere cluster and five workload vSphere clusters.&lt;/p&gt;
&lt;p&gt;The following requirements must be met for assigning the users access:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Users must only be able to view all of the inventory objects associated with the management vSphere cluster.&lt;/li&gt;
&lt;li&gt;Users must be able to edit all of the inventory objects associated with the workload vSphere clusters.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The administrator creates a custom role to provide the permissions needed to allow users to edit inventory objects.&lt;/p&gt;
&lt;p&gt;Which series of steps should the administrator complete to assign the custom role and provide the required level of access to users?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[ ] A. Apply Global permissions to assign the Read Only role to the root vCenter object.Apply vCenter permissions to assign the custom role to the workload vSphere clusters and enable propagation.&lt;/li&gt;
&lt;li&gt;[ ] B. Apply Global permissions to assign the Read Only role to the root vCenter object and enable propagation. Apply vCenter permissions to assign the custom role to the workload vSphere clusters and enable propagation.&lt;/li&gt;
&lt;li&gt;[ ] C. Apply Global permissions to assign the Read Only role to the root vCenter object. Apply vCenter permissions to assign the custom role to the workload vSphere clusters.&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;D. Apply Global permissions to assign the Read Only role to the root vCenter object and enable propagation. Apply vCenter permissions to assign the custom role to the workload vSphere clusters.&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;Question 55&lt;/h3&gt;
&lt;p&gt;An administrator wants to use tag-based placement rules on their virtual machine disks using VMware vCenter.&lt;/p&gt;
&lt;p&gt;Which option would allow the administrator to achieve this?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[x] &lt;code&gt;A. Storage Policy Based Management&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] B. Storage I/O Control&lt;/li&gt;
&lt;li&gt;[ ] C. vSphere Storage APIs for Storage Awareness (VASA)&lt;/li&gt;
&lt;li&gt;[ ] D. vSphere Distributed Resource Scheduler (DRS)&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;https://vnote42.net/2020/01/15/vcenter-tag-based-vm-placement/
&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h3&gt;Question 56&lt;/h3&gt;
&lt;p&gt;An administrator enable Secure Boot on an ESXi host. On booting the ESXi host, the following error message appears:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Fatal error: 39 (Secure Boot Failed)&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;[x] &lt;code&gt;A. The kernel has been tampered with.&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;[ ] B. The Trusted Platform Module chip has failed.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;[ ] C. The administrator attempted to boot with a bootloader that is unsigned or has been tampered with.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;[ ] D. A package (VIB or driver) has been tampered with.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;:::warning[警告]
本解答由AI生成，仅供参考，请仔细甄别。
:::&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;strong&gt;报错现象&lt;/strong&gt;&lt;/th&gt;
&lt;th&gt;&lt;strong&gt;对应原因&lt;/strong&gt;&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;Fatal error: 39 (Secure Boot Failed)&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;**内核（Kernel）**校验失败。这通常意味着内核镜像文件被篡改、损坏，或者其签名不再被信任。&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Purple Screen of Death (PSOD)&lt;/strong&gt; 提示 &lt;code&gt;Failed to verify signatures of the following vibs&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;软件包 (VIB 或 驱动程序)&lt;/strong&gt; 校验失败。这通常是因为安装了未经签名的驱动或第三方软件包。&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;硬件商特定错误&lt;/strong&gt; (如 &lt;code&gt;UEFI0073&lt;/code&gt;)&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;引导程序 (Bootloader)&lt;/strong&gt; 未签名或被篡改。此时 ESXi 还没能加载内核。&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&amp;lt;/details&amp;gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h3&gt;Question 57&lt;/h3&gt;
&lt;p&gt;An administrator needs to create affinity rules for the following vSphere cluster setup:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;The cluster contains two virtual machines (VMs) named app01 and app02.&lt;/li&gt;
&lt;li&gt;The cluster contains six hosts named esx11 through esx16.&lt;/li&gt;
&lt;li&gt;The app01 and app02 VMs run software that is licensed to run &lt;code&gt;only on esx11, esx12, or esx13&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;vSphere Distributed Resource Scheduler (DRS) is configured&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Which set of steps must the administrator perform to ensure that the licensing requirements are met for app01 and app02?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[ ] A.
&lt;ol&gt;
&lt;li&gt;Add all the hosts to a host group.&lt;/li&gt;
&lt;li&gt;Create a VM-VM anti-affinity rule for app01 and app02&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;[ ] B.
&lt;ol&gt;
&lt;li&gt;Add the esx11 - esx13 hosts to a host group&lt;/li&gt;
&lt;li&gt;Create a VM-VM affinity rule for app01 and app02&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;[x] C.
&lt;ol&gt;
&lt;li&gt;&lt;code&gt;Add the VMs to a VM group and the esx11 - esx13 hosts to a host group.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;Create a VM-Host required rule between the VM group and the host group.&lt;/code&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;[ ] D
&lt;ol&gt;
&lt;li&gt;Add the VMs to a VM group and the esx11 - esx13 hosts to a host group.&lt;/li&gt;
&lt;li&gt;Create a VM-Host preferential rule between the VM group and the host group&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;Question 58&lt;/h3&gt;
&lt;p&gt;Following a merger with another company, an administrator is tasked with configuring an identity source for VMware vCenter so that all vSphere administrators can authenticate using their existing Active Directory accounts. Each company has user accounts in their own Active Directory forests.&lt;/p&gt;
&lt;p&gt;The following additional information has been provided:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;The corporate policy states that only Windows-based machine accounts are allowed in Active Directory.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Which action should the administrator take to configure vCenter Single Sign-On (SSO) to meet this requirement?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[x] &lt;code&gt;A. Configure SSO to use Active Directory over LDAP as the identity source.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] B. Configure SSO to use OpenLDAP as the identity source.&lt;/li&gt;
&lt;li&gt;[ ] C. Join the vCenter Server Appliance to the LDAP domain.&lt;/li&gt;
&lt;li&gt;[ ] D. Configure SSO to use Active Directory (Integrated Windows Authentication) as the identity source.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;:::warning[警告]
本解答由AI生成，仅供参考，请仔细甄别。
:::&lt;/p&gt;
&lt;p&gt;在 vSphere 环境中，配置多林（Multi-forest）身份验证并遵守特定的准入政策时，选择正确的身份源类型至关重要。&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;为什么选择 A (Active Directory over LDAP)?
多林支持：当需要从两个不同的 AD 林进行身份验证时，AD over LDAP 是最灵活的选择。你可以为每个林分别添加一个身份源。&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;合规性（无需加入域）：这是本题的关键。 题目提到“仅允许 Windows 计算机账户”。vCenter Server Appliance (VCSA) 基于 Photon OS（一种 Linux 发行版）。如果使用选项 D（集成的 Windows 身份验证），则需要将 VCSA 物理加入 AD 域，这会在 AD 中创建一个 Linux 机器账户，从而违反了“仅允许 Windows 机器账户”的策略。AD over LDAP 不需要将主机加入域。&lt;/p&gt;
&lt;p&gt;安全性：虽然名称中带有 LDAP，但你可以通过配置 LDAPS (LDAP over SSL) 并上传域控制器的证书来确保通信加密。&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;为什么其他选项不正确?&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;B. OpenLDAP：OpenLDAP 是一种不同的 LDAP 目录协议。虽然 AD 支持 LDAP，但在 vCenter 中有专门针对 AD 优化的“Active Directory over LDAP”选项，使用 OpenLDAP 选项会导致架构映射（Schema mapping）变得极其复杂。&lt;/p&gt;
&lt;p&gt;C. Join the vCenter Server Appliance to the LDAP domain：在 vSphere 中，你通常是将 VCSA 加入 Active Directory 域，而不是“LDAP 域”。此外，如前所述，加入域会违反题目中的 Windows 机器账户政策。&lt;/p&gt;
&lt;p&gt;D. Active Directory (Integrated Windows Authentication)：这是最常见的配置（IWA），但它有两个致命弱点：&lt;/p&gt;
&lt;p&gt;它要求 VCSA 加入域（违反政策）。&lt;/p&gt;
&lt;p&gt;它通常不支持跨林身份验证，除非在 AD 层级建立了极为复杂的信任关系。&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;strong&gt;特性&lt;/strong&gt;&lt;/th&gt;
&lt;th&gt;&lt;strong&gt;AD (Integrated Windows Authentication)&lt;/strong&gt;&lt;/th&gt;
&lt;th&gt;&lt;strong&gt;Active Directory over LDAP&lt;/strong&gt;&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;需要加入域&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;是&lt;/strong&gt; (创建 Linux 机器账户)&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;否&lt;/strong&gt; (仅需查询权限)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;符合 Windows 唯一策略&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;不符合&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;符合&lt;/strong&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;支持多林&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;局限性大&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;原生支持&lt;/strong&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;配置复杂度&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;简单&lt;/td&gt;
&lt;td&gt;中等（需配置 URL 和证书）&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&amp;lt;/details&amp;gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h3&gt;Question 59&lt;/h3&gt;
&lt;p&gt;An administrator is tasked with looking into the disaster recovery options for protecting a database server using VMware vSphere Replication.&lt;/p&gt;
&lt;p&gt;The following requirements must be met:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;The virtual machine must remain online during the protection.&lt;/li&gt;
&lt;li&gt;The virtual machine&apos;s snapshots must be used as part of the replication process.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Which step must the administrator complete to accomplish this task?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[ ] A. Configure the virtual machine storage policy.&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;B. Enable guest OS VSS quiescing for this virtual machine.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] C. Perform a full initial synchronization of the source virtual machine to the target location.&lt;/li&gt;
&lt;li&gt;[ ] D. Configure network traffic isolation for vSphere Replication.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;:::warning[警告]
本解答由AI生成，仅供参考，请仔细甄别。
:::&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;核心逻辑解析&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;为了满足题目中的两个关键要求，管理员必须启用**静默（Quiescing）**功能：&lt;/p&gt;
&lt;p&gt;虚拟机必须保持在线 (Remain online)：vSphere Replication 本身就是一种基于主机的异步复制技术，它在虚拟机运行过程中通过记录数据块的变化来执行复制。&lt;/p&gt;
&lt;p&gt;必须使用虚拟机快照作为复制的一部分 (Snapshots must be used)：这是解决数据库一致性的核心。&lt;/p&gt;
&lt;p&gt;对于数据库（如 SQL Server, Oracle）而言，如果只是简单的块复制，恢复后的数据可能处于“崩溃一致性”状态，导致数据库无法启动或索引损坏。&lt;/p&gt;
&lt;p&gt;通过启用 VSS (Volume Shadow Copy Service) 静默，vSphere Replication 会协同虚拟机内部的 VMware Tools，触发 Guest OS 内的 VSS 驱动。&lt;/p&gt;
&lt;p&gt;VSS 会通知数据库暂时将内存数据刷入磁盘并挂起写入操作，此时 vSphere Replication 会创建一个静默快照。&lt;/p&gt;
&lt;p&gt;复制过程会利用这个一致性的快照点确保发送到灾备端的数据是应用层一致的。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;为什么其他选项不适用？&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;A. Configure the virtual machine storage policy：存储策略（如 vSAN 策略）主要用于定义数据在本地存储上的存放方式（副本数、条带化等），它不直接控制 vSphere Replication 的一致性逻辑或快照行为。&lt;/p&gt;
&lt;p&gt;C. Perform a full initial synchronization：这是 vSphere Replication 启动后的必经过程，但它只是一个操作步骤，并不能“满足”题目中关于使用快照保证数据库保护特定要求的配置手段。&lt;/p&gt;
&lt;p&gt;D. Configure network traffic isolation：流量隔离是为了性能和安全性（将复制流量与管理流量分开），与虚拟机是否在线或是否使用快照来保护数据库无关。
&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;h3&gt;Question 60&lt;/h3&gt;
&lt;p&gt;Which two datastore types store the components of a virtual machine as a set of objects? (Choose two.)&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[ ] A. VMware Virtual Machine File System (VMFS)&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;B. VMware vSAN&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] C. Network File System (NFS) 3&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;D. vSphere Virtual Volumes (vVols)&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] E. Network File System (NFS) 4.1&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;:::warning[警告]
本解答由AI生成，仅供参考，请仔细甄别。
:::&lt;/p&gt;
&lt;p&gt;B. VMware vSAN&lt;/p&gt;
&lt;p&gt;vSAN 是典型的对象存储。它不使用传统的文件系统卷，而是将每个虚拟机的组件（如 VMX、VMDK、快照）存储为独立的对象（Objects）。&lt;/p&gt;
&lt;p&gt;每个对象由多个**组件（Components）**组成，这些组件根据存储策略（如 RAID-1 镜像或 RAID-5 纠删码）分布在集群的不同主机和磁盘上。&lt;/p&gt;
&lt;p&gt;D. vSphere Virtual Volumes (vVols)&lt;/p&gt;
&lt;p&gt;vVols 将这种“基于对象”的理念扩展到了外部存储阵列（如 SAN/NAS）。&lt;/p&gt;
&lt;p&gt;在传统存储（VMFS/NFS）中，LUN 或挂载点是存储管理的最小单位。&lt;/p&gt;
&lt;p&gt;在 vVols 中，虚拟机本身（或其磁盘）成为存储阵列直接管理的单元。存储阵列将虚拟机的各个部分作为独立的对象进行处理，允许在每个虚拟磁盘级别应用不同的硬件加速功能。&lt;/p&gt;
&lt;p&gt;为什么其他选项不适用？&lt;/p&gt;
&lt;p&gt;A. VMFS：这是一种块存储文件系统。它在 LUN 上创建一个大型的文件系统结构，虚拟机磁盘（.vmdk）作为该文件系统中的文件存在。&lt;/p&gt;
&lt;p&gt;C &amp;amp; E. NFS 3 / 4.1：这属于文件级存储。虚拟机组件以文件的形式存储在远程服务器的共享目录中。
&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;h3&gt;Question 61&lt;/h3&gt;
&lt;p&gt;Exhibit switch&lt;/p&gt;
&lt;p&gt;An administrator configures a distributed switch and adds the first VMware ESXi server to it.
The administrator also performs the following activities:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;The administrator assigns two uplinks to the distributed switch.&lt;/li&gt;
&lt;li&gt;The administrator enables uplink teaming.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;When attempting to perform a health check of the teaming policy, the health status of the Teaming and Failover reports as &quot;Unknown , as seen in the exhibit.&quot;&lt;/p&gt;
&lt;p&gt;What can the administrator changes in the distributed switch for the health status to report correctly?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[ ] A. Add a minimum of three hosts with two uplinks each&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;B. Add a minimum of two hosts with two uplinks each&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] C. Add a minimum of three hosts with four uplinks each&lt;/li&gt;
&lt;li&gt;[ ] D. Add a minimum of two hosts with one uplink each&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;:::warning[警告]
本解答由AI生成，仅供参考，请仔细甄别。
:::&lt;/p&gt;
&lt;p&gt;核心逻辑解析&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;为什么状态显示为 &quot;Unknown&quot;?
vSphere Distributed Switch 的健康检查（尤其是 Teaming and Failover 检查）并不是一种“自检”机制，它依赖于集群内主机之间的心跳/探测包 (Probing)。&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;当分布式交换机上只有一台主机时，健康检查无法运行，因为：&lt;/p&gt;
&lt;p&gt;健康检查需要通过一个主机上的上行链路（Uplink）发送探测包，并由另一台连接到相同物理交换机/VLAN 的 ESXi 主机接收。&lt;/p&gt;
&lt;p&gt;如果只有一台主机，探测包发出去后没有“对端”来接收并确认链路状态，因此 vCenter 无法获得足够的数据，状态便会显示为 Unknown。&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;为什么需要“至少两台主机，每台两个上行链路”？
两台主机 (Two Hosts)：为了形成发送和接收的闭环。&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;两个上行链路 (Two Uplinks)：Teaming（成组）策略的健康检查旨在验证物理交换机端口的配置（如 Trunking、LACP、VLAN 允许列表）是否与 VDS 设置一致。如果每台主机只有一个上行链路，就无法测试负载均衡和故障转移（Failover）的冗余路径。
&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;h3&gt;Question 62&lt;/h3&gt;
&lt;p&gt;An administrator is performing maintenance activities and discovers that a Virtual Machine File System (VMFS) datastore has a lot more used capacity than expected. The datastore contains 10 virtual machines (VMs), when the administrator reviews the contents of the associated datastore, discovers that five virtual machines have a snapshot file (-delta.vmdk flies) that has not been modified in over 12 months. The administrator check the Snapshot Manager within the vSphere Client and confirms that there are no snapshots visible.&lt;/p&gt;
&lt;p&gt;Which task should the administrator complete on the virtual machines to free up datastore space?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[x] &lt;code&gt;A. Consolidate the snapshots for each VM.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] B. Inflate the disk files for each VM.&lt;/li&gt;
&lt;li&gt;[ ] C. Delete all snapshots for each VM.&lt;/li&gt;
&lt;li&gt;[ ] D. Storage vMotion each VM to another datastore.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;:::warning[警告]
本解答由AI生成，仅供参考，请仔细甄别。
:::&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;故障现象解析&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;现状：数据存储中存在 -delta.vmdk 文件（这是快照的增量磁盘文件），但 vSphere Client 的 Snapshot Manager（快照管理器） 却显示没有快照。&lt;/p&gt;
&lt;p&gt;原因：这通常是因为在之前的快照删除操作中，vCenter 成功从数据库中移除了快照条目，但由于某种原因（如磁盘锁定或备份软件干扰），ESXi 未能成功将增量数据合并回原始磁盘并删除物理文件。&lt;/p&gt;
&lt;p&gt;结果：虚拟机虽然在逻辑上认为自己没有快照，但在物理上仍然在读写这些 -delta.vmdk 文件，导致占用了大量预期之外的存储空间。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;为什么选择 A (Consolidate)？&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Consolidation（合并） 功能是 VMware 专门为这种情况设计的：&lt;/p&gt;
&lt;p&gt;功能：它会扫描数据存储中的文件，检查是否存在未在快照管理器中列出但仍与虚拟机磁盘链关联的增量文件。&lt;/p&gt;
&lt;p&gt;操作：一旦发现不一致，它会强制将这些“幽灵”增量数据合并到父磁盘中，并安全地删除物理文件。&lt;/p&gt;
&lt;p&gt;识别：当 VM 需要合并时，vSphere Client 的“摘要”选项卡通常会显示一条警告消息：“Virtual machine disk consolidation is needed”。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;为什么其他选项不正确？&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;C. Delete all snapshots：因为快照管理器中已经看不到快照了，“Delete All”按钮通常是灰色的，或者点击后由于数据库中没有条目而不会执行任何操作。&lt;/p&gt;
&lt;p&gt;B. Inflate the disk files：这用于将“精简置备（Thin Provision）”磁盘转换为“厚置备置备（Thick Provision）”，它会消耗更多空间，而不是释放空间，且与解决快照问题无关。&lt;/p&gt;
&lt;p&gt;D. Storage vMotion：虽然 Storage vMotion 在迁移过程中有时会自动合并磁盘链，但它是一个耗时且耗费资源的绕路方案。在原地执行 Consolidate 是最直接、官方推荐的修复方法。&lt;/p&gt;
&lt;p&gt;&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;h3&gt;Question 63&lt;/h3&gt;
&lt;p&gt;An administrator is working with VMware Support and Is asked to provide log bundles for the ESXI hosts in an environment.&lt;/p&gt;
&lt;p&gt;The three options does the administrator have? (Choose three.)&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[ ] A. Generate a combined log bundle for all ESXI hosts using the vCenter Management Interface.&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;B. Generate a separate log bundle for each ESXI host using the vSphere Host Client.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;C. Generate a combined log bundle for all ESXI hosts using the vSphere Client.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;D. Generate a separate log bundle for each ESXI host using the vSphere Client.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] E. Generate a separate log bundle for each ESXI host using the vCenter Management Interface.&lt;/li&gt;
&lt;li&gt;[ ] F. Generate a combined log bundle for all ESXi hosts using the vSphere Host Client.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;:::warning[警告]
本解答由AI生成，仅供参考，请仔细甄别。
:::&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;正确选项：&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;B. Generate a separate log bundle for each ESXi host using the vSphere Host Client (使用 vSphere Host Client)&lt;/p&gt;
&lt;p&gt;适用场景：当 vCenter 宕机或无法连接时，你可以直接通过浏览器登录单个 ESXi 主机的管理界面（https://&amp;lt;ESXi-IP&amp;gt;/ui）。&lt;/p&gt;
&lt;p&gt;操作：右键点击“主机（Host）” -&amp;gt; “获取支持包（Get support bundle）”。这将为该特定主机生成并下载一个压缩包。&lt;/p&gt;
&lt;p&gt;C. Generate a combined log bundle for all ESXi hosts using the vSphere Client (使用 vSphere Client 生成合并包)&lt;/p&gt;
&lt;p&gt;适用场景：这是最常用的方法。通过 vCenter 的图形界面，你可以一次性勾选集群中的多台甚至全部主机。&lt;/p&gt;
&lt;p&gt;操作：在 vSphere Client 中，点击“主机和集群”，右键点击 vCenter 实例或数据中心 -&amp;gt; “导出支持日志（Export Support Logs）”。&lt;/p&gt;
&lt;p&gt;结果：虽然它会收集多台主机的数据，但 vCenter 会将其打包处理，方便一次性下载。&lt;/p&gt;
&lt;p&gt;D. Generate a separate log bundle for each ESXi host using the vSphere Client (使用 vSphere Client 生成单独包)&lt;/p&gt;
&lt;p&gt;操作：在 vSphere Client 中，你也可以单独右键点击某一台 ESXi 主机，选择“导出支持日志”。这与选项 C 的工具相同，只是范围缩小到了单台主机。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;为什么其他选项不正确？&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;A &amp;amp; E (vCenter Management Interface / VAMI)：VAMI（端口 5480）主要用于管理 vCenter Server Appliance (VCSA) 本身的健康状况、网络、更新和备份。它可以生成 vCenter 的日志包，但不能直接用于生成受管 ESXi 主机的日志包。&lt;/p&gt;
&lt;p&gt;F (vSphere Host Client 生成合并包)：vSphere Host Client 是单机管理工具。它只能看到并操作它自己这台主机，无法触达或“合并”集群中其他主机的日志。
&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;h3&gt;Question 64&lt;/h3&gt;
&lt;p&gt;An administrator is preparing for a deployment of a new vCenter Server Appliance. The following information has been provided to complete the deployment:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;ESXi Host name (FQDN): esxOl.corp.local&lt;/li&gt;
&lt;li&gt;ESXi IP Address: 172.20.10.200&lt;/li&gt;
&lt;li&gt;vCenter Server Name (FQDN): vcsa01.corp.local&lt;/li&gt;
&lt;li&gt;vCenter Server IP Address: 172.20 10.100&lt;/li&gt;
&lt;li&gt;NTP Server: 172.20.10.20&lt;/li&gt;
&lt;li&gt;DNS Server: 172.20.10.1&lt;/li&gt;
&lt;li&gt;Deployment Size: Tiny&lt;/li&gt;
&lt;li&gt;Storage Size: Default&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Which two actions must the administrator complete before starting the installation of the vCenter Server Appliance? (Choose two.)&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[ ] A. Create a DNS CNAME record for the vCenter Server (vcsaOl.corp.local)&lt;/li&gt;
&lt;li&gt;[ ] B. Create a DNS CNAME record for the ESXi Host server (esx01.corp.local).&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;C. Create a reverse DNS A record for the vCenter Server (vcsaOl).&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] D. Create a reverse DNS A record for the ESXi Host server (esx01)&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;E. Create a forward DNS A record for the vCenter Server (vcsaOl).&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;:::warning[警告]
本解答由AI生成，仅供参考，请仔细甄别。
:::&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;详细解析&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;E. Create a forward DNS A record for the vCenter Server (vcsa01)&lt;/p&gt;
&lt;p&gt;理由：在安装过程中，VCSA 会尝试验证其自身的 FQDN (vcsa01.corp.local)。如果正向查找（A 记录）未配置，安装程序将无法将主机名解析为 IP 地址 172.20.10.100，导致安装失败。&lt;/p&gt;
&lt;p&gt;注意：必须使用 A 记录，而不是 CNAME。&lt;/p&gt;
&lt;p&gt;C. Create a reverse DNS A record for the vCenter Server (vcsa01)&lt;/p&gt;
&lt;p&gt;理由：这是 vCenter 部署中最容易被忽略但最核心的要求。VCSA 的 Web 服务器和许多内部服务（如 SSO）在初始化时执行反向查找 (PTR)。&lt;/p&gt;
&lt;p&gt;后果：如果 IP 172.20.10.100 无法反向解析回 vcsa01.corp.local，部署通常会在“第二阶段（配置阶段）”卡在 80% 左右，并报错“Failed to set network identifier”。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;为什么其他选项不正确？&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;A &amp;amp; B (CNAME 记录)：vSphere 官方明确要求使用 A 记录。使用别名 (CNAME) 可能会导致证书验证失败或身份验证重定向问题。&lt;/p&gt;
&lt;p&gt;D (ESXi 的反向 A 记录)：虽然为 ESXi 主机配置 DNS 是最佳实践，但它不是启动 vCenter 安装前的强制性“阻塞型”任务。你可以使用 IP 地址（如 172.20.10.200）来指定部署的目标主机，安装程序可以正常工作。
&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;h3&gt;Question 65&lt;/h3&gt;
&lt;p&gt;An administrator is tasked with installing VMware vCenter. The vCenter Server Appliance must support an environment of:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;400 hosts&lt;/li&gt;
&lt;li&gt;4000 virtual machines&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Which two resources must be allocated, at a minimum, to meet the requirements? (Choose two.)&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[ ] A. 16 vCPUs&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;B. 30 GB Memory&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] C. 4 vCPUs&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;D. 8 vCPUs&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] E. 20 GB Memory&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;:::warning[警告]
本解答由AI生成，仅供参考，请仔细甄别。
:::&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;strong&gt;部署大小&lt;/strong&gt;&lt;/th&gt;
&lt;th&gt;&lt;strong&gt;主机数量&lt;/strong&gt;&lt;/th&gt;
&lt;th&gt;&lt;strong&gt;虚拟机数量&lt;/strong&gt;&lt;/th&gt;
&lt;th&gt;&lt;strong&gt;vCPU (最低)&lt;/strong&gt;&lt;/th&gt;
&lt;th&gt;&lt;strong&gt;内存 (最低)&lt;/strong&gt;&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Tiny (微型)&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;10&lt;/td&gt;
&lt;td&gt;100&lt;/td&gt;
&lt;td&gt;2&lt;/td&gt;
&lt;td&gt;14 GB&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Small (小型)&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;100 - 400&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;1000 - 4000&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;8 vCPU&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;30 GB&lt;/strong&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Medium (中型)&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;1000&lt;/td&gt;
&lt;td&gt;10,000&lt;/td&gt;
&lt;td&gt;16 vCPU&lt;/td&gt;
&lt;td&gt;40 GB&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Large (大型)&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;2000&lt;/td&gt;
&lt;td&gt;35,000&lt;/td&gt;
&lt;td&gt;24 vCPU&lt;/td&gt;
&lt;td&gt;56 GB&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;X-Large (超大型)&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;2500&lt;/td&gt;
&lt;td&gt;45,000&lt;/td&gt;
&lt;td&gt;32 vCPU&lt;/td&gt;
&lt;td&gt;80 GB&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&amp;lt;/details&amp;gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h3&gt;Question 66&lt;/h3&gt;
&lt;p&gt;After a recent unexplained peak in virtual machine (VM) CPU usage, an administrator is asked to monitor the VM performance for a recurrence of the issue.&lt;/p&gt;
&lt;p&gt;Which two tools can the administrator use? (Choose two.)&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[ ] A. vCenter Management Interface&lt;/li&gt;
&lt;li&gt;[ ] B. Direct Console User Interface (DCUI)&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;C. vSphere Performance Charts&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] D. vCenter Command Line Interface&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;E. ESXi Shell&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;:::warning[警告]
本解答由AI生成，仅供参考，请仔细甄别。
:::&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;核心工具分析&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;C. vSphere Performance Charts (vSphere 性能图表)&lt;/p&gt;
&lt;p&gt;理由：这是 vSphere Client 中最常用的监控工具。它提供了**概览（Overview）和高级（Advanced）**两种视图。&lt;/p&gt;
&lt;p&gt;历史数据：它可以存储数天、数周甚至数月的性能数据，非常适合用于回顾和分析“过去发生的” CPU 峰值。&lt;/p&gt;
&lt;p&gt;细粒度分析：通过高级图表，管理员可以查看特定指标，如 CPU Ready、CPU Usage 和 CPU Wait，从而区分是应用负载重还是资源争用导致的峰值。&lt;/p&gt;
&lt;p&gt;E. ESXi Shell (ESXi 命令行界面)&lt;/p&gt;
&lt;p&gt;理由：ESXi Shell 允许管理员运行强大的实时性能监控工具 esxtop。&lt;/p&gt;
&lt;p&gt;实时性：当管理员怀疑问题正在再次发生时，esxtop 可以提供每隔几秒刷新一次的极高精度数据。&lt;/p&gt;
&lt;p&gt;深度诊断：它可以展示物理 CPU 核的分配情况、中断比例以及虚拟机是否存在因电源管理设置导致的性能缩减。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;为什么其他选项不适用？&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;A. vCenter Management Interface (VAMI)：该界面（端口 5480）仅用于监控 vCenter Server 本体 的健康状况（如 vCenter 的 CPU、内存和数据库占用），它无法查看受管虚拟机的性能数据。&lt;/p&gt;
&lt;p&gt;B. Direct Console User Interface (DCUI)：这是 ESXi 主机的黄黑控制台界面。它主要用于基础网络配置、重置管理密码或重启服务，不具备性能监控或图表显示功能。&lt;/p&gt;
&lt;p&gt;D. vCenter Command Line Interface (CLI)：虽然可以通过 API 或脚本获取数据，但它通常不是管理员“直接监控性能”的首选交互式工具。
&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;h3&gt;Question 67&lt;/h3&gt;
&lt;p&gt;What are three options an administrator can configure after creating a vSphere Namespace? (Choose three.)&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[ ] A. Backup schedule&lt;/li&gt;
&lt;li&gt;[ ] B. Certificates&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;C. Storage policies&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] D. Update policies&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;E. Permissions&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;F. Resource and Object limits&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;:::warning[警告]
本解答由AI生成，仅供参考，请仔细甄别。
:::&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;核心配置项解析&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;E. Permissions (权限)&lt;/p&gt;
&lt;p&gt;这是最先执行的操作之一。管理员需要向用户或组授予访问权限（如 Can edit 或 Can view）。只有被授权的用户才能在对应的命名空间中部署工作负载或创建 Kubernetes 资源。&lt;/p&gt;
&lt;p&gt;C. Storage policies (存储策略)&lt;/p&gt;
&lt;p&gt;管理员必须将一个或多个 VM Storage Policies 映射到命名空间。&lt;/p&gt;
&lt;p&gt;这些策略定义了 Kubernetes 工作负载（Pods、持久卷）将使用哪些底层数据存储。它决定了存储的性能、冗余度（如 RAID 级别）以及加密属性。&lt;/p&gt;
&lt;p&gt;F. Resource and Object limits (资源和对象限制)&lt;/p&gt;
&lt;p&gt;为了防止单个命名空间耗尽整个集群的资源，管理员需要设置配额：&lt;/p&gt;
&lt;p&gt;资源限制 (Resource Limits)：定义 CPU、内存和存储的具体配额（Quotas）。&lt;/p&gt;
&lt;p&gt;对象限制 (Object Limits)：限制可在命名空间中创建的 Kubernetes 对象数量（如 Services、Deployments、Pods）。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;为什么其他选项不正确？&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;A. Backup schedule (备份计划)：vSphere Namespace 本身不提供内置的备份计划功能。备份通常由外部工具（如 Velero 或第三方解决方案）在 Kubernetes 集群级别或存储级别进行管理。&lt;/p&gt;
&lt;p&gt;B. Certificates (证书)：命名空间的证书管理通常由 Kubernetes 内部的 cert-manager 或 Supervisor 集群自动处理，而不是在 vSphere 命名空间的配置菜单中手动配置。&lt;/p&gt;
&lt;p&gt;D. Update policies (更新策略)：更新通常与 Tanzu Kubernetes Grid (TKG) 集群的版本或 ESXi 主机维护相关，不属于单个命名空间的常规配置选项。
&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;h3&gt;Question 68&lt;/h3&gt;
&lt;p&gt;After a number of outages within a production VMware software-defined data center, an administrator is tasked with identifying a solution to meet the following requirements:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Reduce the risk of outages by proactively identifying issues with the environment and resolving them.&lt;/li&gt;
&lt;li&gt;Reduce the complexity of uploading log bundles when raising support tickets.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Which solution should the administrator recommend to meet these requirements?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[ ] A. VMware Aria Operations for Logs&lt;/li&gt;
&lt;li&gt;[ ] B. VMware Skyline Advisor Pro&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;C. VMware Skyline Health&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] D. VMware Aria Operations&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;The solution that should be recommended to reduce the risk of outages by proactively identifying and resolving issues with the environment and reducing the complexity of uploading log bundles is VMware Skyline Health, which provides automated support and proactive recommendations for vSphere.
&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;h3&gt;Question 69&lt;/h3&gt;
&lt;p&gt;Refer to the exhibit.
&lt;img src=&quot;https://img.v0nl1.com/26-01/697473af82f9a.webp&quot; alt=&quot;&quot; /&gt;
An administrator set up the following configuration:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;The distributed switch has four ESXi hosts, and each host has two 10 Gbps NIC&lt;/li&gt;
&lt;li&gt;In the Network I/O Control configuration, the amount of bandwidth reserved for virtual machine (VM) traffic if 4 Gbps.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The administrator wants to guarantee that VMs in the Retail distributed port group can access 50 percent of the available reserved bandwidth for VM traffic.&lt;/p&gt;
&lt;p&gt;Given this scenario, what should the size (in Gbps) of the Retail network resource pool be?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[ ] A. 40&lt;/li&gt;
&lt;li&gt;[ ] B. 32&lt;/li&gt;
&lt;li&gt;[ ] C. 8&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;D. 16&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;
4Gbps&lt;em&gt;8Nic=32Gbps&lt;/em&gt;50%=16Gbps
&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;h3&gt;Question 70&lt;/h3&gt;
&lt;p&gt;An administrator needs to configure a content library solution based on the following information:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;A new corporate virtual machine (VM) template is created every month to include all of the latest patches.&lt;/li&gt;
&lt;li&gt;The new VM template should be downloaded from the primary data center site (London) to two secondary data center sites (Tokyo and New York) as soon as possible.&lt;/li&gt;
&lt;li&gt;There is limited disk space available at one of the secondary data center sites (Tokyo) due to an ongoing data center consolidation project.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Which four steps should the administrator take to configure the content library solution before adding a VM template? (Choose four.)&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[ ] A. Create a new published content library In each secondary site&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;B. Configure the New York subscribed content library to download content immediately.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] C. Configure the Tokyo subscribed content library to download content immediately&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;D. Configure the Tokyo subscribed content library to download content when needed&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;E. Create a new published content library at the primary site&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] F. Configure the New York subscribed content library to download content when needed.&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;G. Create a new subscribed content library in each secondary site&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;The administrator should take these four steps to configure the content library solution before adding a VM template:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Create a new published content library at the primary site, which allows the administrator to share the VM template with other sites.&lt;/li&gt;
&lt;li&gt;Configure the New York subscribed content library to download content immediately, which ensures that the new VM template is downloaded from the primary site as soon as possible.&lt;/li&gt;
&lt;li&gt;Configure the Tokyo subscribed content library to download content when needed, which saves disk space at the secondary site by downloading only the metadata of the VM template until it is deployed.&lt;/li&gt;
&lt;li&gt;Create a new subscribed content library in each secondary site, which allows the administrator to subscribe to the published content library at the primary site and synchronize the VM template.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;h3&gt;Question 71&lt;/h3&gt;
&lt;p&gt;Refer to the exhibit.
&lt;img src=&quot;https://img.v0nl1.com/26-01/697475e718bed.webp&quot; alt=&quot;&quot; /&gt;
Given the configuration shown in the exhibit, what must the administrator do to delete only the latest version of the template?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[ ] A. Delete App-LibTemplete(3) from the SA-Templates folder.&lt;/li&gt;
&lt;li&gt;[ ] B. In the SA-template folder, rename App-Libtemplate (2) to App-LibTemplate&lt;/li&gt;
&lt;li&gt;[ ] C. Check out AppLibTemplate (3) and delete the template from the SA-Templates folder.&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;D. Revert to APP-LibTemplate (2) and delete App-LibTemplate (3).&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;:::warning[警告]
本解答由AI生成，仅供参考，请仔细甄别。
:::&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;核心原理解析&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;在 vSphere 内容库中，当您对虚拟机模板进行更新时，它会形成一个版本链（1, 2, 3...）。&lt;/p&gt;
&lt;p&gt;版本依赖性：内容库的模板管理遵循一种类似“栈”或“快照链”的逻辑。当前处于“Active”状态的通常是最新版本（本例中为版本 3）。&lt;/p&gt;
&lt;p&gt;回滚（Revert）机制：如果您直接尝试删除最新版本，系统可能不允许，或者会影响整个模板对象的完整性。为了安全地移除最新版并保留之前的版本，管理员必须先将模板的状态**回滚（Revert）**到前一个稳定的版本（版本 2）。&lt;/p&gt;
&lt;p&gt;删除特定版本：执行回滚操作后，版本 2 重新成为“当前版本”。此时，版本 3 将变为一个可以被单独清理的独立历史版本。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;为什么其他选项不正确？&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;A. Delete App-LibTemplate(3) from the SA-Templates folder：在 vCenter 的文件夹视图（Folder View）中，模板通常显示为一个整体对象。您无法直接在文件夹中看到版本号并像删除普通文件一样删除其中的“版本 3”。&lt;/p&gt;
&lt;p&gt;B. Rename App-Libtemplate (2) to App-LibTemplate：重命名操作只是改变了显示名称，并不会触发版本链的逻辑变更或物理删除多余的版本。&lt;/p&gt;
&lt;p&gt;C. Check out AppLibTemplate (3) and delete...：“Check out”功能是用于编辑模板的（将其转换为虚拟机）。如果您签出版本 3，您只是创建了一个临时的 VM，这与删除内容库中的版本历史记录是两回事。
&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;h3&gt;Question 72&lt;/h3&gt;
&lt;p&gt;An administrator is tasked with implementing a backup solution capable of backing up the Supervisor cluster,vSphere Pods,and persistent volumes.&lt;/p&gt;
&lt;p&gt;Which two solutions must be used to meet this requirement? (Choose two.)&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[ ] A. VMware vCenter&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;B. Standalone Velero and Restic&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] C. NSX-T Manager&lt;/li&gt;
&lt;li&gt;[ ] D. vSphere Host Client&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;E. Velero Plugin for vSphere&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;:::warning[警告]
本解答由AI生成，仅供参考，请仔细甄别。
:::&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;核心原理解析&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;在 vSphere with Tanzu 环境中，标准的虚拟机备份方式无法直接感知 Kubernetes 的元数据（如 Namespaces、Secrets、Deployments）。因此，VMware 采用了开源项目 Velero 作为核心备份引擎。&lt;/p&gt;
&lt;p&gt;E. Velero Plugin for vSphere (vSphere 专用 Velero 插件)&lt;/p&gt;
&lt;p&gt;作用：这是实现该需求的关键组件。它作为 Supervisor 集群中的一个服务运行，专门负责与 vSphere 存储层对接。&lt;/p&gt;
&lt;p&gt;功能：它允许 Velero 对 vSphere 原始存储上的持久卷（PV）进行快照，并将这些数据移动到外部存储（如 S3 兼容存储）。&lt;/p&gt;
&lt;p&gt;B. Standalone Velero and Restic (独立 Velero 与 Restic)&lt;/p&gt;
&lt;p&gt;Velero：作为命令行工具（CLI）和服务器端组件，负责协调备份流程，抓取 Kubernetes 的 API 对象（元数据）。&lt;/p&gt;
&lt;p&gt;Restic：在很多 vSphere 环境中，如果底层存储不支持原生快照，Velero 会集成 Restic 来实现对文件系统级别的数据备份。通过两者结合，可以确保 Pod 的配置和其挂载的数据卷都能被完整备份。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;为什么其他选项不正确？&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;A. VMware vCenter：vCenter 负责管理集群，但它本身没有内置备份 vSphere Pods 或 K8s 资源对象的功能。&lt;/p&gt;
&lt;p&gt;C. NSX-T Manager：NSX-T 负责网络和安全策略。虽然它有自己的配置备份，但无法备份容器内的数据或应用定义。&lt;/p&gt;
&lt;p&gt;D. vSphere Host Client：这是用于管理单台 ESXi 主机的网页界面，完全不具备集群级别的容器备份能力。&lt;/p&gt;
&lt;p&gt;&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;h3&gt;Question 73&lt;/h3&gt;
&lt;p&gt;An administrator is responsible for the management of a VMware vCenter instance that is currently experience performance issues. The administrator quickly identifies that the CPU and memory utilization of vCenter is consistently over 90%. Upon further analysis, it seems that the vpxd process is contributing significantly to the performance issue.&lt;/p&gt;
&lt;p&gt;A combination of which four steps should the administrator take to resolve the performance issues and ensure that a similar issue can be rectified without required downtime to vCenter moving forward? (Choose four.)&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[x] &lt;code&gt;A. Gracefully shutdown vCenter using the vSphere Client.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] B. Enable CPU Hot add on the vCenter virtual machine.&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;C. Power on the vCenter Server Appliance using the vSphere Host Client.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;D. Add a additional CPU and memory to the vCenter Server Appliance.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;E. Enable CPU an Memory Hot add on the vCenter virtual machine.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] F. Add a additional CPU and memory to the vCenter server machine.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;:::warning[警告]
本解答由AI生成，仅供参考，请仔细甄别。
:::&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;为什么这四个是正确的?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;✅ A. Gracefully shutdown vCenter using the vSphere Client&lt;/p&gt;
&lt;p&gt;当前 CPU / 内存 Hot-Add 尚未启用&lt;/p&gt;
&lt;p&gt;初次启用 Hot-Add 必须关机&lt;/p&gt;
&lt;p&gt;“Gracefully” 是官方推荐方式，避免数据库损坏&lt;/p&gt;
&lt;p&gt;👉 这是必须的前置步骤&lt;/p&gt;
&lt;p&gt;✅ D. Add additional CPU and memory to the VCSA&lt;/p&gt;
&lt;p&gt;vpxd 负载高 = vCenter 资源不足&lt;/p&gt;
&lt;p&gt;官方解决方案第一步：纵向扩容（scale up）&lt;/p&gt;
&lt;p&gt;扩容的是 VCSA（不是普通 VM）&lt;/p&gt;
&lt;p&gt;✅ E. Enable CPU and Memory Hot add on the vCenter VM&lt;/p&gt;
&lt;p&gt;这是题目后半句的关键：&lt;/p&gt;
&lt;p&gt;“ensure that a similar issue can be rectified without required downtime moving forward”&lt;/p&gt;
&lt;p&gt;启用 CPU / Memory Hot-Add 后：&lt;/p&gt;
&lt;p&gt;以后可以 不停机加资源&lt;/p&gt;
&lt;p&gt;避免再次 vCenter 停机&lt;/p&gt;
&lt;p&gt;✅ C. Power on the VCSA using the vSphere Host Client&lt;/p&gt;
&lt;p&gt;vCenter 已经被关机&lt;/p&gt;
&lt;p&gt;不能再用 vSphere Client&lt;/p&gt;
&lt;p&gt;必须用 ESXi Host Client 直接启动&lt;/p&gt;
&lt;p&gt;👉 这是一个典型陷阱点，考试非常爱考&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;为什么其他选项是错的&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;❌ B. Enable CPU Hot add on the vCenter VM&lt;/p&gt;
&lt;p&gt;只启用 CPU，不启用 Memory&lt;/p&gt;
&lt;p&gt;vpxd 同时消耗 CPU + 内存&lt;/p&gt;
&lt;p&gt;而且题目要求 未来彻底避免停机&lt;/p&gt;
&lt;p&gt;👉 不完整，必错&lt;/p&gt;
&lt;p&gt;❌ F. Add additional CPU and memory to the vCenter virtual machine&lt;/p&gt;
&lt;p&gt;这是一个措辞陷阱&lt;/p&gt;
&lt;p&gt;正确对象应是：&lt;/p&gt;
&lt;p&gt;vCenter Server Appliance（VCSA）&lt;/p&gt;
&lt;p&gt;VMware 官方文档与考试中：&lt;/p&gt;
&lt;p&gt;对 vCenter 必须使用 Appliance 术语&lt;/p&gt;
&lt;p&gt;此选项暗示“普通 VM”，不严谨&lt;/p&gt;
&lt;p&gt;👉 考试按字面理解 → 错&lt;/p&gt;
&lt;p&gt;&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;h3&gt;Question 74&lt;/h3&gt;
&lt;p&gt;Refer to Exhibit:
&lt;img src=&quot;https://img.v0nl1.com/26-01/6974acaa97acf.webp&quot; alt=&quot;&quot; /&gt;
An environment has the following configuration:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Resource Pool “RP-MOM? has a reservation of 6GHz and one running virtual machine (VM) &quot;VM-M1? with 1 GHz reserved&lt;/li&gt;
&lt;li&gt;Resource Pool ^RP-KID? has a reservation of 2GHz, and expandable reservations is activated&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The administrator creates two VMs, “VM-K1? and &apos;VM-K2?, in the &apos;&apos;RP-KID? resource pool with 2GHz reserved for each, and turns on “VM-M1 ?&lt;/p&gt;
&lt;p&gt;Given this scenario, which statement is true?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[ ] A. The administrator must deactivate expandable reservations to turn on VM-K2&lt;/li&gt;
&lt;li&gt;[ ] B. The administrator can create a third VM ( VM-K3?) at RP-KID and reserve 6GHz&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;C. VM-K2 can be powered on because it can get the resources needed from RP-MOM.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] D. VM-K2 cannot be powered on because there are not enough resources in RP-KID.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;:::warning[警告]
本解答由AI生成，仅供参考，请仔细甄别。
:::&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;核心原理解析&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;要理解为什么 VM-K2 可以启动，我们需要分析可扩展预留 (Expandable Reservations) 的工作机制&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;资源池 RP-KID 的状态：&lt;/li&gt;
&lt;/ol&gt;
&lt;ul&gt;
&lt;li&gt;自身预留（Local Reservation）：2 GHz。&lt;/li&gt;
&lt;li&gt;策略：启用了可扩展预留。&lt;/li&gt;
&lt;/ul&gt;
&lt;ol&gt;
&lt;li&gt;虚拟机需求：&lt;/li&gt;
&lt;/ol&gt;
&lt;ul&gt;
&lt;li&gt;VM-K1 请求 2 GHz 预留。RP-KID 自身的 2 GHz 正好完全分配给 VM-K1。&lt;/li&gt;
&lt;li&gt;VM-K2 请求额外的 2 GHz 预留。此时 RP-KID 内部已无可用预留资源。&lt;/li&gt;
&lt;/ul&gt;
&lt;ol&gt;
&lt;li&gt;可扩展预留的借调逻辑：&lt;/li&gt;
&lt;/ol&gt;
&lt;ul&gt;
&lt;li&gt;由于 RP-KID 开启了“可扩展预留”，当它内部资源耗尽时，它会向其**父级（Parent）**请求资源。&lt;/li&gt;
&lt;li&gt;在本例中，RP-KID 和 VM-M1 都在 RP-MOM 下。这意味着 RP-MOM 是 RP-KID 的父资源池。&lt;/li&gt;
&lt;/ul&gt;
&lt;ol&gt;
&lt;li&gt;父级 RP-MOM 的可用资源计算：&lt;/li&gt;
&lt;/ol&gt;
&lt;ul&gt;
&lt;li&gt;RP-MOM 总预留：6 GHz。&lt;/li&gt;
&lt;li&gt;已消耗资源：
&lt;ul&gt;
&lt;li&gt;VM-M1 占用：1 GHz。&lt;/li&gt;
&lt;li&gt;子资源池 RP-KID 占用：2 GHz。&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;剩余可用预留：6 - 1 - 2 = 3 GHz。&lt;/li&gt;
&lt;/ul&gt;
&lt;ol&gt;
&lt;li&gt;最终结果：&lt;/li&gt;
&lt;/ol&gt;
&lt;ul&gt;
&lt;li&gt;RP-KID 向 RP-MOM 借调 2 GHz。由于 RP-MOM 还有 3 GHz 空闲，它会批准这个请求。&lt;/li&gt;
&lt;li&gt;因此，VM-K2 能够获得所需的 2 GHz 预留并成功开机。&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;为什么其他选项是错误的？&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;A. 停用可扩展预留：这样做反而会导致 VM-K2 无法启动，因为 RP-KID 内部只有 2 GHz，在分配给 VM-K1 后就没钱给 VM-K2 了。&lt;/li&gt;
&lt;li&gt;B. 创建 VM-K3 并预留 6GHz：即便使用可扩展预留，也不能超过父级的上限。目前 RP-MOM 剩余 3 GHz，无法满足 6 GHz 的请求。&lt;/li&gt;
&lt;li&gt;D. 资源不足无法启动：这忽略了“可扩展预留”的功能，只有在父级资源也耗尽的情况下，D 才是正确的。
&amp;lt;/details&amp;gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;Question 75&lt;/h3&gt;
&lt;p&gt;An administrator is deploying a new all flash vSAN cluster based on the vSAN Original Storage Architecture (OSA).&lt;/p&gt;
&lt;p&gt;What is the minimum supported network throughput in Gb/s for each host?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[ ] A. 50&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;B. 10&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] C. 25&lt;/li&gt;
&lt;li&gt;[ ] D. 1&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;:::warning[警告]
本解答由AI生成，仅供参考，请仔细甄别。
:::&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;核心要求解析&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;VMware 对 vSAN 网络的最低要求取决于存储配置的类型（混合 vs 全闪存）：&lt;/p&gt;
&lt;p&gt;全闪存 (All-Flash) 配置：&lt;/p&gt;
&lt;p&gt;最低要求：10 Gb/s 专用网络。&lt;/p&gt;
&lt;p&gt;原因：全闪存环境的 I/O 吞吐量极高，1 Gb/s 的带宽会成为严重的性能瓶颈，导致延迟增加，甚至在重建（Rebuild）或重新平衡（Rebalance）期间触发同步超时。&lt;/p&gt;
&lt;p&gt;混合 (Hybrid) 配置：&lt;/p&gt;
&lt;p&gt;最低要求：1 Gb/s 网络。&lt;/p&gt;
&lt;p&gt;注意：虽然支持 1 Gb/s，但在生产环境中通常仍强烈建议使用 10 Gb/s，尤其是对于较大的工作负载。
&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;h3&gt;Question 76&lt;/h3&gt;
&lt;p&gt;An administrator is tasked with configuring an appropriate Single Sign-On (SSO) solution for VMware vCenter based on the following criteria:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;The solution should support the creation of Enhanced Link Mode groups.&lt;/li&gt;
&lt;li&gt;All user accounts are stored within a single Active Directory domain and the solution must support only this Active Directory domain as the identity source.&lt;/li&gt;
&lt;li&gt;All user account password and account lockout policies must be managed within the Active Directory domain.&lt;/li&gt;
&lt;li&gt;The solution should support token-based authentication.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Which SSO solution should the administrator choose based on the criteria?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[x] &lt;code&gt;A. vCenter Identity Provider Federation with Active Directory Federation Services as the identity provider&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] B. vCenter Single Sign-On with Active Directory over LDAP as the identity source&lt;/li&gt;
&lt;li&gt;[ ] C. vCenter Single Sign-On with Active Directory (Windows Integrated Authentication) as the identity source&lt;/li&gt;
&lt;li&gt;[ ] D. vCenter Identity Provider Federation with Active Directory over LDAP as the identity provider&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;:::warning[警告]
本解答由AI生成，仅供参考，请仔细甄别。
:::&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;核心逻辑解析&lt;/strong&gt;&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;为什么是 Identity Provider Federation (IdP)？
题目要求支持 Token-based authentication（基于令牌的身份验证）。&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;传统的“Active Directory over LDAP”或“Integrated Windows Authentication (IWA)”主要依赖用户名/密码或 Kerberos。&lt;/p&gt;
&lt;p&gt;只有通过 Federation（联合身份验证），vCenter 才能将认证请求重定向到外部 IdP（如 AD FS），并接收现代化的安全令牌（如 SAML 或 OIDC 令牌）。&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;为什么选择 AD FS？
题目要求所有的密码和账户锁定策略必须在 AD 域中管理。&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;当使用 ADFS 时，vCenter 不再接触用户的明文密码。&lt;/p&gt;
&lt;p&gt;用户在 ADFS 的登录界面输入凭据，ADFS 直接与 AD 交互执行策略。这种“外包认证”模式确保了 AD 的策略（如密码复杂度、15分钟锁定等）被 100% 强制执行。&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;关于增强型链接模式 (ELM)
这是 A 选项的一个重要特性。自 vSphere 7.0 Update 1 起，VMware 引入了 Identity Federation，它完全支持 Enhanced Link Mode。管理员可以配置多个 vCenter 实例使用同一个外部 ADFS 实例，从而实现跨 vCenter 的单点登录。&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;strong&gt;为什么排除其他选项？&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;B. Active Directory over LDAP：&lt;/p&gt;
&lt;p&gt;不支持真正的 Token-based 现代身份验证（如 OIDC）。&lt;/p&gt;
&lt;p&gt;vCenter 需要处理凭据，虽然可以验证密码，但在处理某些复杂的 AD 锁定策略时不如 ADFS 直接。&lt;/p&gt;
&lt;p&gt;C. Active Directory (WIA)：&lt;/p&gt;
&lt;p&gt;已弃用 (Deprecated)。VMware 官方明确建议停止使用 IWA，转而使用 ADFS 联合或 AD over LDAP。&lt;/p&gt;
&lt;p&gt;D. Identity Provider Federation with AD over LDAP：&lt;/p&gt;
&lt;p&gt;这是一个不存在或表述错误的配置。Federation（联合）通常是与 ADFS、Okta 或 Azure AD 等身份提供者进行的，而不是直接与“LDAP 协议”进行联合。&lt;/p&gt;
&lt;p&gt;&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;h3&gt;Question 77&lt;/h3&gt;
&lt;p&gt;An administrator receives reports from the application team of poor performance of a virtual ma-chine (VM).The administrator reviews the virtual machine and discovers that it has 20 snapshots that are over 12 months old.&lt;/p&gt;
&lt;p&gt;What could the administrator do to improve the VM’s performance?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[ ] A. Inflate the base disk to make space for future snapshots.&lt;/li&gt;
&lt;li&gt;[ ] B. Revert to the latest snapshot.&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;C. Consolidate all of the snapshots into the base VM.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] D. Identify and delete the largest delta .vmdk file.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;:::warning[警告]
本解答由AI生成，仅供参考，请仔细甄别。
:::&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;核心解析&lt;/strong&gt;&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;为什么快照会影响性能？
在 vSphere 中，每创建一个快照，系统就会创建一个增量磁盘文件（-delta.vmdk）。&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;读取延迟：当 VM 请求读取数据时，由于存在 20 个快照，系统可能需要从最新的增量文件开始，逐级向上溯源到基础磁盘（Base Disk）来查找所需的数据块。快照链越长，这种“读取放大”效应就越严重，导致 I/O 延迟增加。&lt;/p&gt;
&lt;p&gt;锁定与管理开销：由于快照已存在 12 个月之久，这些增量文件可能已经增长到非常大，增加了底层存储元数据管理的负担。&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;为什么选择“合并（Consolidate）”？
操作本质：合并操作（以及快照管理器中的“删除所有快照”）会将所有增量文件中的更改写回基础磁盘。&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;结果：完成后，VM 将直接从单一的基础磁盘进行读写，彻底消除多层读取带来的延迟，从而显著提升性能。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;为什么其他选项不正确？&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;A. Inflate the base disk：这用于将精简置备磁盘转换为厚置备磁盘。虽然可能微调性能，但它完全无法解决 20 个快照导致的读取链路过长问题。&lt;/p&gt;
&lt;p&gt;B. Revert to the latest snapshot：这只是将 VM 的状态恢复到最后一次快照的时间点，但快照链依然存在，性能问题不会得到任何改善。&lt;/p&gt;
&lt;p&gt;D. Identify and delete the largest delta .vmdk file：绝对不要手动删除单个增量文件！ 这样做会破坏虚拟磁盘的完整性（Broken Disk Chain），导致虚拟机无法启动并发生数据丢失。&lt;/p&gt;
&lt;p&gt;&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;h3&gt;Question 78&lt;/h3&gt;
&lt;p&gt;The vCenter inventory contains a virtual machine (VM) template called Linux-01 The administrator wants to install a software patch into Linux-01 while allowing take to continue to access Linux-01 to deploy VMs.&lt;/p&gt;
&lt;p&gt;Which series of steps should the administrator take to accomplish this task ?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[ ] A.
&lt;ol&gt;
&lt;li&gt;Verify that Linux-01 is in a content library.&lt;/li&gt;
&lt;li&gt;Clone Linux-01.&lt;/li&gt;
&lt;li&gt;Convert the clone to a VM.&lt;/li&gt;
&lt;li&gt;Install the software patch.&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;[ ] B.
&lt;ol&gt;
&lt;li&gt;Convert Linux-01 to a VM.&lt;/li&gt;
&lt;li&gt;Install the software patch.&lt;/li&gt;
&lt;li&gt;Convert the VM back to a VM template.&lt;/li&gt;
&lt;li&gt;Add Linux-01 to the content library.&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;[ ] C.
&lt;ol&gt;
&lt;li&gt;Verify that Linux-01 is in a content library.&lt;/li&gt;
&lt;li&gt;Checkout Linux-01.&lt;/li&gt;
&lt;li&gt;Install the software patch.&lt;/li&gt;
&lt;li&gt;Check in Linux-01.&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;[x] D.
&lt;ol&gt;
&lt;li&gt;&lt;code&gt;Clone Linux-01.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;Convert the clone to a VM.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;Install the software patch.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;Convert the VM back to a template.&lt;/code&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;:::warning[警告]
本解答由AI生成，仅供参考，请仔细甄别。
:::&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;为什么选择 D？&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;在没有内容库的情况下，要满足“安装补丁”同时“不中断其他用户部署”这两个条件，必须通过克隆来操作：&lt;/p&gt;
&lt;p&gt;Clone Linux-01 (克隆模板)：直接在原模板上操作会导致模板进入“虚拟机”状态，此时其他用户无法利用它进行部署。因此，先克隆出一份副本。&lt;/p&gt;
&lt;p&gt;Convert the clone to a VM (将克隆体转换为虚拟机)：模板是无法开机运行的，必须转换回 VM 状态才能进入操作系统安装补丁。&lt;/p&gt;
&lt;p&gt;Install the software patch (安装软件补丁)：在转换后的 VM 中完成更新工作。&lt;/p&gt;
&lt;p&gt;Convert the VM back to a template (将虚拟机转回模板)：补丁完成后将其变回模板。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;逻辑核心：&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Linux-01（原模板）：始终保持“模板”状态，没有被修改，因此其他用户可以继续通过它部署虚拟机。&lt;/p&gt;
&lt;p&gt;副本：承担了更新的任务，更新完成后，你可以用这个新的模板替换旧模板。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;选项对比分析&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;A 的错误：虽然流程类似，但它最后没有将 VM 转回模板，这意味着你最后只得到了一个普通的虚拟机，无法作为正式模板分发。&lt;/p&gt;
&lt;p&gt;B 的错误：它直接将“Linux-01”转换为了虚拟机。在转换期间，由于 Linux-01 已经不是模板状态，其他用户将无法在菜单中找到它来执行部署任务，这违反了题目要求。&lt;/p&gt;
&lt;p&gt;C 的错误：正如你指出的，如果环境里没提到 Content Library，Checkout/Check-in 功能根本不存在。&lt;/p&gt;
&lt;p&gt;&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;h3&gt;Question 79&lt;/h3&gt;
&lt;p&gt;Which VMware offering will allow an administrator to manage the lifecycle of multiple vCenter Server instances in a single software as a service (SaaS)-based solution to help drive operational efficiency?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[ ] A. VMware vSphere with Tanzu&lt;/li&gt;
&lt;li&gt;[ ] B. VMware Cloud Foundation&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;C. VMware vSphere+&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] D. VMware Aria Suite Lifecycle
&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;:::warning[警告]
本解答由AI生成，仅供参考，请仔细甄别。
:::&lt;/p&gt;
&lt;p&gt;VCF includes the management domain and multiple workload domains.&lt;/p&gt;
&lt;p&gt;While VCF does use LCM to manage vCenter lifecycle, it is on-prem only (for now) and is not SaaS based.&lt;/p&gt;
&lt;p&gt;That only leave vSphere+.
&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;h3&gt;Question 80&lt;/h3&gt;
&lt;p&gt;An administrator needs to perform maintenance on a datastore that Is running the vSphere Cluster Services (vCLS) virtual machines (VMs).&lt;/p&gt;
&lt;p&gt;Which feature can the administrator use in this scenario to avoid the use of Storage vMotion on the vCLS VMs?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[ ] A. vSphere Distributed Resource Scheduler (DRS)&lt;/li&gt;
&lt;li&gt;[ ] B. vSphere vMotion&lt;/li&gt;
&lt;li&gt;[ ] C. vSphere Fault Tolerance&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;D. vCLS Retreat Mode&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;:::warning[警告]
本解答由AI生成，仅供参考，请仔细甄别。
:::
&lt;strong&gt;核心原理解析&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;vSphere Cluster Services (vCLS) 是从 vSphere 7.0 Update 1 开始引入的一项功能，用于确保集群服务（如 DRS 和 vSphere HA）的正常运行。这些轻量级虚拟机由 vCenter 自动管理。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;为什么选择 vCLS Retreat Mode？&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;清理存储需求：在进行存储维护、下线数据存储或迁移整个集群时，通常需要移除存储在上面的 vCLS 虚拟机。&lt;/p&gt;
&lt;p&gt;避免迁移开销：由于 vCLS 虚拟机是自动生成的，手动进行 Storage vMotion 既繁琐也不一定是最佳方案。&lt;/p&gt;
&lt;p&gt;自动化处理：通过在集群上开启 Retreat Mode，管理员可以指示 vCenter 暂时删除（卸载） 该集群中的所有 vCLS 虚拟机。&lt;/p&gt;
&lt;p&gt;恢复简便：维护完成后，只需将模式切回普通状态，vCenter 会自动在可用的数据存储上重新创建这些 vCLS 虚拟机。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;为什么其他选项不适用？&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;A. vSphere Distributed Resource Scheduler (DRS)：DRS 负责在主机之间平衡负载。虽然它依赖 vCLS 运行，但它本身无法将虚拟机从一个数据存储迁移到另一个数据存储（这是 Storage DRS 的功能）。&lt;/p&gt;
&lt;p&gt;B. vSphere vMotion：这仅用于在主机之间在线迁移虚拟机，而不涉及存储路径的改变。题目明确要求避免使用 Storage vMotion。&lt;/p&gt;
&lt;p&gt;C. vSphere Fault Tolerance (FT)：这是为了实现虚拟机的零停机冗余，与存储维护和删除 vCLS 虚拟机无关。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;如何开启 Retreat Mode？&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;在 vSphere Client 中，导航到 Cluster &amp;gt; Configure &amp;gt; Advanced Parameters。&lt;/p&gt;
&lt;p&gt;点击 Edit Settings。&lt;/p&gt;
&lt;p&gt;添加或修改参数 config.vcls.clusters.domain-c&amp;lt;number&amp;gt;.enabled。&lt;/p&gt;
&lt;p&gt;将其值设置为 False（此时 vCLS 虚拟机会被自动删除）。&lt;/p&gt;
&lt;p&gt;维护完成后，将其设回 True。
&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;h3&gt;Question 81&lt;/h3&gt;
&lt;p&gt;If a distributed switch uses the &quot;Route based on physical NIC load&quot; load balancing algorithm, what does the mean send or receive utilization of an uplink need to exceed for the flow of traffic to move to the second uplink?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[x] &lt;code&gt;A. 75 percent of the capacity over a 30 second period&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] B. 60 percent of the capacity over a 30 second period&lt;/li&gt;
&lt;li&gt;[ ] C. 60 percent of the capacity over a 40 second period&lt;/li&gt;
&lt;li&gt;[ ] D. 75 percent of the capacity over a 40 second period&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;:::warning[警告]
本解答由AI生成，仅供参考，请仔细甄别。
:::&lt;/p&gt;
&lt;p&gt;当 vSphere Distributed Switch 使用 Route based on physical NIC load（LBT） 时，负载迁移触发条件是固定且写死的：&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;触发条件（必须同时满足）&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;平均发送或接收利用率&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;超过物理 uplink 带宽的 75%&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;持续 30 秒&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;一旦满足这个条件，vDS 会：&lt;/p&gt;
&lt;p&gt;找出 I/O 最高的虚拟机（port ID）&lt;/p&gt;
&lt;p&gt;将该 VM 的流量迁移到 负载更低的 uplink&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;为什么其他选项一定是错的&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;❌ B. 60% / 30 秒&lt;/p&gt;
&lt;p&gt;VMware 从未使用 60% 作为 LBT 阈值&lt;/p&gt;
&lt;p&gt;❌ C. 60% / 40 秒&lt;/p&gt;
&lt;p&gt;阈值和时间都不对&lt;/p&gt;
&lt;p&gt;❌ D. 75% / 40 秒&lt;/p&gt;
&lt;p&gt;时间错误，LBT 的检测周期是 30 秒，不是 40 秒&lt;/p&gt;
&lt;p&gt;&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;h3&gt;Question 82&lt;/h3&gt;
&lt;p&gt;What is the role of vSphere Distributed Services Engine?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[ ] A. Provide a live shadow Instance of a virtual machine (VM) that mirror, the primary VM to prevent data loss and downtime during outages.&lt;/li&gt;
&lt;li&gt;[ ] B. Implement Quality of Service (QoS) on network traffic within a vSphert Distributed Switch.&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;C. Provide hardware accelerated data processing to boost infrastructure performance.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] D. Redistribute virtual machines across vSphere cluster host affinity rules following host failures or during maintenance operations.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;:::warning[警告]
本解答由AI生成，仅供参考，请仔细甄别。
:::&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;核心功能与角色&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;其核心角色是将基础设施服务从主 CPU 卸载（Offload） 到 数据处理单元 (DPU) 上，从而实现硬件加速。&lt;/p&gt;
&lt;p&gt;硬件加速 (Hardware Acceleration)：利用 DPU（也称为 SmartNIC）的计算能力来处理网络、存储和安全性等低级任务。&lt;/p&gt;
&lt;p&gt;提升性能 (Boost Performance)：由于原本由服务器 CPU 负担的这些任务被移交给了 DPU，服务器的 CPU 资源可以被完全释放，专注于运行业务虚拟机。&lt;/p&gt;
&lt;p&gt;改善安全性：在物理层面上将基础设施管理与客户工作负载隔离开来，提高了系统的安全性。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;选项深度解析&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;A. 错误：这是 vSphere Fault Tolerance (FT) 的功能。&lt;/p&gt;
&lt;p&gt;B. 错误：虽然 Distributed Switch 支持 QoS，但这不是 Distributed Services Engine 的定义性角色。&lt;/p&gt;
&lt;p&gt;C. 正确：它将网络和生命周期管理等服务从 CPU 卸载到 DPU，从而加速数据处理。&lt;/p&gt;
&lt;p&gt;D. 错误：这是 vSphere DRS (Distributed Resource Scheduler) 的功能。&lt;/p&gt;
&lt;p&gt;&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;h3&gt;Question 83&lt;/h3&gt;
&lt;p&gt;An administrator is tasked with configuring vSphere Trust Authority. The administrator has completed the following steps:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Set up the workstation&lt;/li&gt;
&lt;li&gt;Enabled the Trust Authority Administrator&lt;/li&gt;
&lt;li&gt;Enabled the Trust Authority State&lt;/li&gt;
&lt;li&gt;Collected information about the ESXi hosts and vCenter to be trusted&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Which step does the administrator need to complete next?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[x] &lt;code&gt;A. Import the Trusted Host information to the Trust Authority Cluster&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] B. Import the Trusted Cluster information to the Trusted Hosts&lt;/li&gt;
&lt;li&gt;[ ] C. Create the Key Provider on the Trusted Cluster&lt;/li&gt;
&lt;li&gt;[ ] D. Import the Trusted Host information to the Trusted Cluster&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;:::warning[警告]
本解答由AI生成，仅供参考，请仔细甄别。
:::&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;核心流程解析&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;vSphere Trust Authority 将架构分为两个核心角色：受信任集群 (Trust Authority Cluster) 和 受信集群 (Trusted Cluster)。&lt;/p&gt;
&lt;p&gt;在管理员完成了环境准备、启用管理员权限、开启状态并收集了基础信息（如主机元数据、证书、TPM 节点信息等）之后，接下来的逻辑是将这些数据填充到“信任源”中。&lt;/p&gt;
&lt;p&gt;逻辑顺序：你已经“收集了信息”，现在必须将这些信息“输入”到管理端。&lt;/p&gt;
&lt;p&gt;具体操作：管理员需要将从 ESXi 主机 收集到的身份信息（Identity）和证明信息（Attestation）导入到 Trust Authority Cluster。&lt;/p&gt;
&lt;p&gt;目的：只有 Trust Authority Cluster 拥有了这些主机的“白名单”信息，它才能在后续步骤中对这些主机进行健康完整性校验（Attestation）。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;为什么选择 A 而不是 D？&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;虽然两者看起来都在讨论导入信息，但 VMware 的官方文档和考试标准通常采用以下表述：&lt;/p&gt;
&lt;p&gt;Trust Authority Cluster：指的是运行 Attestation Service（证明服务）和 Key Provider Service（密钥提供者服务）的专用服务器集群。&lt;/p&gt;
&lt;p&gt;Trusted Cluster：指的是运行受保护工作负载（如加密虚拟机）的普通业务集群。&lt;/p&gt;
&lt;p&gt;配置的下一步是将收集到的 ESXi 主机信息导入到负责审核它们的 Trust Authority Cluster 中。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;vSphere Trust Authority 配置全流程回顾&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;为了确保万无一失，以下是完成该任务的五个关键步骤：&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;设置与启用：准备工作站，启用管理员和 vSTA 状态（题目已完成）。&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;信息收集：收集受信任主机的元数据。&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;导入信息 (当前步骤)：使用 Add-TpmEndorsementKey 等命令将主机信息导入 Trust Authority Cluster。&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;配置证明服务：定义验证策略。&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;配置密钥服务：在受信任集群（Trusted Cluster）上配置 Provider 以获取加密密钥。
&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;Question 84&lt;/h3&gt;
&lt;p&gt;An administrator has Windows virtual machines (VMs) and VMware Tools is installed in each VM. The administrator performs a status check of VMware Tools using vSphere Lifecycle Manager.&lt;/p&gt;
&lt;p&gt;What is the VMware Tools status for the Windows VMs if the version of VMware Tools has a known problem and must be immediately upgraded?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[x] &lt;code&gt;A. Version Unsupported&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] B. Guest Managed&lt;/li&gt;
&lt;li&gt;[ ] C. Unknown&lt;/li&gt;
&lt;li&gt;[ ] D. Upgrade Available&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;:::warning[警告]
本解答由AI生成，仅供参考，请仔细甄别。
:::&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;核心状态解析&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;VMware 根据版本的健康状况和兼容性，将状态分为以下几种：&lt;/p&gt;
&lt;p&gt;Version Unsupported (版本不受支持)：当安装的版本存在严重缺陷、已知问题，或者版本过于陈旧以至于 VMware 不再提供技术支持时，会触发此状态。这种情况通常要求立即升级以确保虚拟机的稳定性和安全性。&lt;/p&gt;
&lt;p&gt;Upgrade Available (有可用升级)：这是一个更常见的状态。它表示当前的 VMware Tools 是受支持且正常的，但内容库或主机中有一个更新的版本。这不属于紧急修复，而是常规维护。&lt;/p&gt;
&lt;p&gt;Guest Managed (客户机托管)：当 VMware Tools 是通过操作系统自带的包管理器（如 Linux 的 open-vm-tools）安装和管理时，vCenter 会显示此状态。&lt;/p&gt;
&lt;p&gt;Unknown (未知)：通常发生在虚拟机未开机，或者 vCenter 无法与虚拟机内的 VMware Tools 进程通信时。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;为什么在 Windows 环境中很重要？&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;对于 Windows 虚拟机，VMware Tools 包含关键的驱动程序（如 VMXNET3 网卡驱动和 PVSCSI 存储驱动）。&lt;/p&gt;
&lt;p&gt;如果状态为 Version Unsupported，意味着该版本可能导致系统崩溃（BSOD）、网络中断或数据损坏。&lt;/p&gt;
&lt;p&gt;vSphere Lifecycle Manager 允许管理员针对此类虚拟机创建补丁基准（Baseline），并进行批量修复（Remediate）。
&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;h3&gt;Question 85&lt;/h3&gt;
&lt;p&gt;Administrator successfully installs VMware ESXi onto the first host of a new vSphere cluster but makes no additional configuration changes.&lt;/p&gt;
&lt;p&gt;When attempting to log into the vSphere Host Client using the Fully Qualified Domain Name (FQDN) of the host, the administrator receives the following error message:
&quot;server Not Found –we can’t connect to the server at esxit101.corp.local.&quot;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Host FQDN: esxi101.corp.local&lt;/li&gt;
&lt;li&gt;Management VLAN ID: 10&lt;/li&gt;
&lt;li&gt;DHCP: No&lt;/li&gt;
&lt;li&gt;Management IP Address: 172.16.10.101/24&lt;/li&gt;
&lt;li&gt;Management IP Gateway: 172.16.10.1&lt;/li&gt;
&lt;li&gt;Corporate DNS Servers: 172.16.10.5, 172.16.10.6&lt;/li&gt;
&lt;li&gt;DNS Domain: corp.local&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Which three high level tasks should the administrator complete, at a minimum, in order to successfully log into the vSphsrs Host Client using the FQDN for the esxi101 and complete the configuration (Choose three.)&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[x] &lt;code&gt;A. Ensure a DNS A Record is created for the VMware ESXI host on the corporate DNS servers.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] B. Update the VMware ESXI Management Network DNS configuration to use the corporate DNS servers for name, resolution.&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;C. Update the VMware ESXI Management Network IPv4 configuration to use a static a IPv4 address.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] D. Configure at least two network adapters for the VMware ESXI Management Network.&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;E. Set the value of the VMware ESXI Management Network VLAN ID to 10.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] F. Disable IPv6 for the VMware ESXI Management Network.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;:::warning[警告]
本解答由AI生成，仅供参考，请仔细甄别。
:::&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;核心任务解析&lt;/strong&gt;
A. Ensure a DNS A Record is created for the VMware ESXi host&lt;/p&gt;
&lt;p&gt;原因：浏览器报错“Server Not Found”通常意味着 DNS 无法将 esxi101.corp.local 解析为 IP 地址 172.16.10.101。&lt;/p&gt;
&lt;p&gt;操作：必须在企业 DNS 服务器（172.16.10.5/6）上手动创建一个 A 记录，将主机名指向其管理 IP。&lt;/p&gt;
&lt;p&gt;C. Update the VMware ESXi Management Network IPv4 configuration to use a static IPv4 address&lt;/p&gt;
&lt;p&gt;原因：题目明确说明 DHCP: No。ESXi 默认安装后可能会尝试获取 DHCP 或使用自动配置的链路本地地址。&lt;/p&gt;
&lt;p&gt;操作：由于没有 DHCP，管理员必须在 DCUI（直观控制台界面）中手动将 172.16.10.101/24 和网关 172.16.10.1 配置为静态 (Static) 地址，否则主机在网络上将不可达。&lt;/p&gt;
&lt;p&gt;E. Set the value of the VMware ESXi Management Network VLAN ID to 10&lt;/p&gt;
&lt;p&gt;原因：题目指出 Management VLAN ID: 10。如果物理交换机端口配置为 Trunk 模式，而 ESXi 默认的 Management Network 未标记 VLAN（即 VLAN 0 或 None），则数据包无法在 VLAN 10 中传输。&lt;/p&gt;
&lt;p&gt;操作：必须在管理网络设置中显式指定 VLAN ID 为 10，以确保与网关和 DNS 服务器的二层连通性。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;为什么不选择其他选项？&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;B (Update DNS configuration on ESXi)：虽然配置主机自身的 DNS 服务器很重要，但这主要影响主机解析别人的能力（例如主机解析 vCenter）。要让管理员通过浏览器访问主机，关键是 A 记录（选项 A）和基础网络连通。&lt;/p&gt;
&lt;p&gt;D (Configure two network adapters)：这是为了冗余，不是实现首次 FQDN 登录的必要条件。&lt;/p&gt;
&lt;p&gt;F (Disable IPv6)：禁用 IPv6 通常需要重启，虽然是推荐的优化步骤，但与解决当前的 FQDN 连接问题无关。
&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;h3&gt;Question 86&lt;/h3&gt;
&lt;p&gt;An administrator is required to configure several Microsoft Windows virtual machines (VMs) to support Secure Boot for a critical secure application.&lt;/p&gt;
&lt;p&gt;The following information is provided:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;The corporate security policy states that all forms of data encryption must utilize a key provider.&lt;/li&gt;
&lt;li&gt;The firmware of each VM is currently set to use Unified Extensible Firmware Interface (UEFI).&lt;/li&gt;
&lt;li&gt;Due to the nature of the application running within the VMs, the guest operating system for each VM is currently a minimum of Windows Server 2008 and Windows 7.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Which security feature should the administrator implement to meet these requirements?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[ ] A. vSphere Virtual Machine Encryption&lt;/li&gt;
&lt;li&gt;[ ] B. vSphere Visualization-Based Security&lt;/li&gt;
&lt;li&gt;[ ] C. Virtual Intel Software Guard Extensions (vSGX)&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;D. Virtual Trusted Platform Module (vTPM)&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;:::warning[警告]
本解答由AI生成，仅供参考，请仔细甄别。
:::&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;核心原理解析&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;要支持 Microsoft Windows 的 Secure Boot（安全启动） 并满足企业对基于密钥提供者（Key Provider）的加密要求，vTPM 是必不可少的组件。&lt;/p&gt;
&lt;p&gt;Secure Boot 与 UEFI 的关系：&lt;/p&gt;
&lt;p&gt;题目提到虚拟机已经配置为 UEFI 固件。在 vSphere 中，启用 UEFI 是使用 Secure Boot 的先决条件。Secure Boot 确保只有经过签名且受信任的操作系统的引导加载程序才能运行。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;vTPM 的作用：&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;安全性需求：Windows 10 及 Windows Server 2016 后的版本通常依赖 TPM 来实现高级安全特性。&lt;/p&gt;
&lt;p&gt;数据加密与 Key Provider：在 vSphere 中，添加 vTPM 设备会自动要求该虚拟机进行加密。由于题目规定必须使用 Key Provider（如标准密钥提供者或受信任颁发机构），vTPM 正好利用了 vCenter 定义的 Key Provider 来保护其存储在 .nvram 文件中的敏感数据。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;为什么其他选项不正确？&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;A. vSphere Virtual Machine Encryption：虽然这使用了 Key Provider，但它主要用于加密磁盘文件。它本身并不直接为操作系统提供“Secure Boot”所需的安全硬件抽象层。&lt;/p&gt;
&lt;p&gt;B. vSphere Virtualization-Based Security (VBS)：VBS 是一个更高层的功能，它通常需要 vTPM 作为基础。虽然它能提升安全性，但满足“Secure Boot”和“Key Provider 加密”最基础、最直接的组件是 vTPM。&lt;/p&gt;
&lt;p&gt;C. Virtual Intel Software Guard Extensions (vSGX)：SGX 是一种硬件隔离技术，允许应用程序在受保护的“飞地”（Enclaves）中运行。它与 Secure Boot 或虚拟机级别的磁盘/元数据加密没有直接关系。&lt;/p&gt;
&lt;p&gt;&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;h3&gt;Question 87&lt;/h3&gt;
&lt;p&gt;An administrator is tasked with looking into the disaster recovery (DR) options for a software-defined data center (SDDC).&lt;/p&gt;
&lt;p&gt;The following requirements must be met:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;All virtual machines (VMs) must be protected to a secondary site.&lt;/li&gt;
&lt;li&gt;The source VMs must remain online until the failover.&lt;/li&gt;
&lt;li&gt;When failing over to the secondary site, application downtime is allowed&lt;/li&gt;
&lt;li&gt;The DR failover must be managed from the vSphere Client.&lt;/li&gt;
&lt;li&gt;Costs must remain as low as possible.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;How can the administrator accomplish this task?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[ ] A. Configure VMware Cloud Disaster Recovery (VCDR) and combine it with array-based storage replication.&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;B. Configure VMware a Site Recovery Manager and combine it with vSphere Replication.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] C. Configure a subscribed content library on the secondary site.&lt;/li&gt;
&lt;li&gt;[ ] D. Configure VMware Site Recovery Manager and combine it with array-based storage replication.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;:::warning[警告]
本解答由AI生成，仅供参考，请仔细甄别。
:::&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;核心逻辑解析&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;通过对比各项需求，我们可以得出为什么 SRM + vSphere Replication 是最佳平衡点：&lt;/p&gt;
&lt;p&gt;低成本要求 (Costs must remain as low as possible)：&lt;/p&gt;
&lt;p&gt;vSphere Replication 是一种基于主机的复制技术。它不需要昂贵的特定型号存储阵列（Array-based Storage），也不需要额外的存储复制许可。它包含在大多数 vSphere 许可中，是成本最低的复制方案。&lt;/p&gt;
&lt;p&gt;源虚拟机保持在线 (Source VMs must remain online until failover)：&lt;/p&gt;
&lt;p&gt;vSphere Replication 在后台异步同步数据，不会影响源 VM 的运行。只有在最终计划迁移的切断时刻，源 VM 才需要关机以确保最后的数据一致性。&lt;/p&gt;
&lt;p&gt;允许应用停机 (Application downtime is allowed)：&lt;/p&gt;
&lt;p&gt;由于 vSphere Replication 是异步的，且在灾难恢复（DR）切换过程中需要更改 IP 或重新启动 VM，因此会存在一定的恢复时间目标（RTO）。这完全符合“允许停机”的要求。&lt;/p&gt;
&lt;p&gt;在 vSphere Client 中管理：&lt;/p&gt;
&lt;p&gt;VMware Site Recovery Manager (SRM) 与 vSphere Client 深度集成。管理员可以在同一个界面内创建恢复计划（Recovery Plans）、映射网络以及执行一键切换。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;为什么排除其他选项？&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;A 和 D (Array-based storage replication)：&lt;/p&gt;
&lt;p&gt;基于阵列的复制通常需要同品牌、同型号的高端存储硬件，且往往涉及昂贵的厂商授权费。这与“成本尽可能低”的要求相悖。&lt;/p&gt;
&lt;p&gt;C (Subscribed content library)：&lt;/p&gt;
&lt;p&gt;内容库主要用于分发模板、ISO 镜像和脚本。它不是一个灾难恢复解决方案，无法提供虚拟机的实时/异步数据同步或自动化的故障切换流程。
&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;h3&gt;Question 88&lt;/h3&gt;
&lt;p&gt;An administrator is asked to configure a security policy at the port group level of a standard switch.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;The security policy must apply to all virtual machines on portgroup-1.&lt;/li&gt;
&lt;li&gt;All traffic must be forwarded, regardless of the destination.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The following requirements must be met:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[ ] . Forged transmits set to reject&lt;/li&gt;
&lt;li&gt;[ ] B. MAC address changes set to accept&lt;/li&gt;
&lt;li&gt;[ ] C. Promiscuous mode set to reject&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;D. Promiscuous mode set to accept&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;:::warning[警告]
本解答由AI生成，仅供参考，请仔细甄别。
:::&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;核心原理解析&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;在 vSphere 标准交换机（Standard Switch）的端口组安全策略中，有三个关键选项。针对本题的需求，我们需要理解“混杂模式”的作用：&lt;/p&gt;
&lt;p&gt;D. Promiscuous mode (混杂模式)&lt;/p&gt;
&lt;p&gt;默认行为（Reject）：标准交换机的端口只会将数据包转发到目标 MAC 地址与该虚拟网卡（vNIC）匹配的虚拟机。&lt;/p&gt;
&lt;p&gt;启用行为（Accept）：当设置为 Accept 时，连接到该端口组的虚拟机会接收到交换机在该 VLAN 上收到的所有流量。这通常用于运行网络监听工具（如 Wireshark）、入侵检测系统（IDS）或需要执行二层桥接的特殊应用。&lt;/p&gt;
&lt;p&gt;对应需求：满足“转发所有流量，无论目的地”的要求。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;为什么其他选项不正确？&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;A. Forged transmits (伪造传输)：此设置控制是否允许虚拟机发送源 MAC 地址与其有效 MAC 地址不符的数据包。将其设置为 Reject 是一种安全增强手段，但它不影响流量的接收。&lt;/p&gt;
&lt;p&gt;B. MAC address changes (MAC 地址更改)：此设置控制当虚拟机更改其网卡的 MAC 地址时，交换机是否允许其接收流量。虽然设置为 Accept 允许更改，但它并不意味着虚拟机会接收发送给其他人的流量。&lt;/p&gt;
&lt;p&gt;C. Promiscuous mode set to reject：这是默认的安全设置，它会阻止虚拟机查看不属于自己的流量，直接违反了题目的要求。&lt;/p&gt;
&lt;p&gt;&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;h3&gt;Question 89&lt;/h3&gt;
&lt;p&gt;An administrator is tasked with allowing a single user the ability to take snapshots on a virtual machine. When looking in vCenter, the administrator can see that there are already users and groups assigned permissions on the virtual machine as follows:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;The group VMJJsers has the Virtual Machine Power User role.&lt;/li&gt;
&lt;li&gt;The group VM_Viewers has the Read Only role.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The administrator confirms that the user requesting the additional access is currently one of five members of the VM_Viewers group.&lt;/p&gt;
&lt;p&gt;Which two steps should the administrator take to grant this user the additional access required without
impacting the user access of others? (Choose two.)&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[ ] A. Add the user to the VM_Users group and leave the permissions on the virtual machine object unchanged.&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;B. Add a new permission on the virtual machine object selecting the user and the new custom role.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] C. Edit the Read Only role to add the Virtual Machine Snapshot Management privileges.&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;D. Create a new custom role with the Virtual Machine Snapshot Management privileges.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] E. new permission on the virtual machine object selecting the VM_Viewers group and the new custom.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;:::warning[警告]
本解答由AI生成，仅供参考，请仔细甄别。
:::&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;详细步骤解析&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;D. Create a new custom role with the Virtual Machine Snapshot Management privileges.
原因：vCenter 预置的“Read Only”角色不允许创建快照，而“Virtual Machine Power User”虽然权限大，但可能超出了该用户的实际需求。&lt;/p&gt;
&lt;p&gt;操作：创建一个仅包含 Virtual Machine &amp;gt; Snapshot management &amp;gt; Create snapshot（以及必要的 State 权限）的自定义角色。这确保了权限的精确性。&lt;/p&gt;
&lt;p&gt;B. Add a new permission on the virtual machine object selecting the user and the new custom role.
原因：该用户目前属于 VM_Viewers 组（Read Only）。如果直接修改组权限，组内其他 4 名用户也会获得快照权限。&lt;/p&gt;
&lt;p&gt;冲突解决逻辑：在 vSphere 权限模型中，如果为一个特定用户直接分配了权限，该权限会**覆盖（Override）**通过组继承而来的权限。&lt;/p&gt;
&lt;p&gt;结果：该用户将拥有“Read Only”+“Snapshot Management”权限，而组内其他成员维持“Read Only”不变。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;为什么其他选项不正确？&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;A. Add the user to the VM_Users group：&lt;/p&gt;
&lt;p&gt;后果：Virtual Machine Power User 角色权限非常广泛（包括删除 VM、修改配置等）。这违反了“最小特权原则”，给出的权限远远超过了“仅创建快照”的要求。&lt;/p&gt;
&lt;p&gt;C. Edit the Read Only role：&lt;/p&gt;
&lt;p&gt;后果：这会影响所有分配了该角色的用户和组。VM_Viewers 组的所有成员（以及系统中其他使用该角色的对象）都将获得快照权限。&lt;/p&gt;
&lt;p&gt;E. New permission on the VM_Viewers group：&lt;/p&gt;
&lt;p&gt;后果：同样会影响该组内的所有 5 名成员，无法实现针对“单个用户（single user）”的要求。
&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;h3&gt;Question 90&lt;/h3&gt;
&lt;p&gt;An administrator has a requirement to revert a running virtual machine to a previous snapshot after a failed attempt to upgrade an application. When the administrator originally took the snapshot the following choices in the Take Snapshot dialog were made:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Snapshot the virtual machine’s memory = false&lt;/li&gt;
&lt;li&gt;Quiesce guest file system = false&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;What will be the result of the administrator selecting the ‘Revert to Latest Snapshot?&lt;/p&gt;
&lt;p&gt;Option to return the virtual machine to a previous snapshot?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[ ] A. The virtual machine will be restored to the parent snapshot in a powered on state&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;B. The virtual machine will be restored to the parent snapshot in a powered off state.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] C. The virtual machine will be restored to the child snapshot in a powered off state&lt;/li&gt;
&lt;li&gt;[ ] D. The virtual machine will be restored to the child snapshot in a powered on state.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;:::warning[警告]
本解答由AI生成，仅供参考，请仔细甄别。
:::&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;核心合理解析&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;根据题目给出的快照配置：&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Snapshot the virtual machine’s memory = false&lt;/strong&gt;：这意味着快照仅记录了虚拟磁盘（.vmdk）在那个时间点的数据状态，而&lt;strong&gt;没有&lt;/strong&gt;保存运行中的内存数据（RAM）和 CPU 寄存器状态。&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;结果&lt;/strong&gt;：由于没有内存数据可供恢复，虚拟机无法“继续”运行。因此，在执行恢复操作后，虚拟机会被还原到快照点时的磁盘状态，但其电源状态将变为&lt;strong&gt;关机（Powered Off）&lt;/strong&gt;。&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;对比分析&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;为了更好地理解，我们可以对比不同的快照选项：&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;strong&gt;快照设置&lt;/strong&gt;&lt;/th&gt;
&lt;th&gt;&lt;strong&gt;恢复后的电源状态&lt;/strong&gt;&lt;/th&gt;
&lt;th&gt;&lt;strong&gt;说明&lt;/strong&gt;&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;包含内存 (Memory=True)&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;保持开机 (Powered On)&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;虚拟机像从“休眠”中唤醒一样，保持之前的运行状态。&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;不含内存 (Memory=False)&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;关机 (Powered Off)&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;虚拟机回到当时的磁盘状态。你需要手动开机，就像“冷启动”一样。&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;静默文件系统 (Quiesce=True)&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;取决于内存设置&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;仅用于确保磁盘上的应用程序数据一致性（如数据库），不影响电源状态。&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;&lt;strong&gt;为什么不是其他选项？&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;A/D (Powered on state)&lt;/strong&gt;：只有在 &lt;code&gt;Snapshot memory&lt;/code&gt; 选为 &lt;strong&gt;True&lt;/strong&gt; 的情况下，恢复后才会处于开机状态。&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;C (Child snapshot)&lt;/strong&gt;：执行“Revert to Latest Snapshot”始终是将 VM 恢复到当前状态的直接 &lt;strong&gt;父级(Parent)&lt;/strong&gt; 快照，而不是子级。&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;h3&gt;Question 91&lt;/h3&gt;
&lt;p&gt;Which two tasks can be completed using vSphere LifeCycle Manager? (Choose two.)&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[x] &lt;code&gt;A. Manage the firmware lifecycle of ESXi hosts that are part of a managed cluster with a single image.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;B. Check that the ESXi hosts are compliant with the recommended baseline and update the hosts.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] C. Upgrade VMware vCenter from version 7 to 8.&lt;/li&gt;
&lt;li&gt;[ ] D. Check the hardware compatibility of the hosts in a cluster against the VMware Compatibility Guide(VCG) using baselines.&lt;/li&gt;
&lt;li&gt;[ ] E. Manage the firmware lifecycle of ESXi hosts are part of a managed cluster using baselines.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;:::warning[警告]
本解答由AI生成，仅供参考，请仔细甄别。
:::&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;核心功能解析&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;A. Manage the firmware lifecycle of ESXi hosts... with a single image.&lt;/p&gt;
&lt;p&gt;原理：这是 vLCM 的标志性功能。在 单一镜像 (Single Image) 模式下，vLCM 不仅可以管理 ESXi 软件和驱动程序，还可以通过与硬件供应商（如 Dell, HPE, Lenovo）的 HSM (Hardware Support Manager) 集成，直接管理物理服务器的固件 (Firmware)。这实现了软件和硬件驱动的同步更新。&lt;/p&gt;
&lt;p&gt;B. Check that the ESXi hosts are compliant with the recommended baseline and update the hosts.&lt;/p&gt;
&lt;p&gt;原理：vLCM 继承并增强了之前的 vSphere Update Manager (VUM) 功能。它允许管理员创建基准 (Baselines)（包含补丁、扩展和升级包），扫描主机以检查合规性状态，并执行修复（Remediate）操作来更新主机。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;为什么其他选项不正确？&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;C. Upgrade VMware vCenter from version 7 to 8：&lt;/p&gt;
&lt;p&gt;错误原因：vCenter 的升级是通过 vCenter Server 安装程序 (Installer) 或其管理界面 (VAMI) 完成的，而不是由 vLCM 自身来升级自己。&lt;/p&gt;
&lt;p&gt;D. Check the hardware compatibility... using baselines：&lt;/p&gt;
&lt;p&gt;错误原因：硬件兼容性检查 (HCL/VCG) 只能在单一镜像 (Single Image) 模式下执行，无法在使用基准 (Baselines) 的模式下进行。&lt;/p&gt;
&lt;p&gt;E. Manage the firmware lifecycle... using baselines：&lt;/p&gt;
&lt;p&gt;错误原因：固件集成管理是 vLCM 单一镜像模式特有的功能。传统的基准模式 (Baselines) 只能管理软件和驱动，无法触达底层固件。
&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;h3&gt;Question 92&lt;/h3&gt;
&lt;p&gt;Which four elements can a vSphere Lifecycle Manager image contain? (Choose four.)&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[x] &lt;code&gt;A. ESXi base image&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] B. ESXI configuration&lt;/li&gt;
&lt;li&gt;[ ] C. Vendor agents&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;D. Vendor add-ons&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] E. BIOS updates&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;F. Firmware and drivers add-on&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;G. Independent components&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;:::warning[警告]
本解答由AI生成，仅供参考，请仔细甄别。
:::&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;vLCM 镜像的四个要素&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;A. ESXi base image (ESXi 基础镜像)：&lt;/p&gt;
&lt;p&gt;这是镜像的核心，由 VMware 发布的标准 ESXi 发行版。它包含了运行虚拟化管理程序所需的基本操作系统文件。&lt;/p&gt;
&lt;p&gt;D. Vendor add-ons (供应商加载项)：&lt;/p&gt;
&lt;p&gt;这是由 OEM 硬件供应商（如 Dell、HPE 或 Lenovo）提供的软件包。它通常包含特定于硬件的自定义内容、诊断工具和特定的驱动程序映射，用于将标准 ESXi 镜像调整为最适合该品牌服务器的状态。&lt;/p&gt;
&lt;p&gt;F. Firmware and drivers add-on (固件和驱动程序加载项)：&lt;/p&gt;
&lt;p&gt;这是 vLCM 的强大之处。它允许通过 硬件支持管理器 (HSM) 集成特定的固件版本和配套驱动程序。这确保了物理服务器的底层硬件固件与 ESXi 层使用的驱动程序版本完全匹配。&lt;/p&gt;
&lt;p&gt;G. Independent components (独立组件)：&lt;/p&gt;
&lt;p&gt;这些是第三方软件或不属于供应商加载项的独立包。常见的例子包括用于备份软件的代理（如 Veeam 传输服务）、特定的第三方监控工具或非 OEM 提供的特殊网卡驱动程序。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;为什么排除其他选项？&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;B. ESXi configuration：虽然 vLCM 可以配合“配置托管”（vSphere Configuration Profiles）使用，但主机配置（如网络、安全设置）不属于 vLCM 镜像定义文件 (.json) 本身的软件组成部分。&lt;/p&gt;
&lt;p&gt;C. Vendor agents：虽然供应商可能会提供代理软件，但在 vLCM 的术语中，它们被归类在“组件（Components）”或“加载项（Add-ons）”下，而不是作为一个独立的镜像分类要素。&lt;/p&gt;
&lt;p&gt;E. BIOS updates：BIOS 更新通常包含在“固件和驱动程序加载项”中，作为 HSM 管理的一部分，它不是镜像架构中的一个顶层独立分类。&lt;/p&gt;
&lt;p&gt;&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;h3&gt;Question 93&lt;/h3&gt;
&lt;p&gt;An administrator has a host profile named Standard-Config. The administrator wants to change the other host profiles to use only the storage configuration settings that are defined in the Standard-Config host profile.&lt;/p&gt;
&lt;p&gt;What should the administrator do to make this change?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[ ] A. Export host customizations and import them to the other host profiles.&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;B. Copy the storage settings from Standard-Config to all other host profiles.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] C. Duplicate the Standard-Config host profile and only modify the storage configuration settings.&lt;/li&gt;
&lt;li&gt;[ ] D. Export the Standard-Config host profile and attach it to the other hosts.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;:::warning[警告]
本解答由AI生成，仅供参考，请仔细甄别。
:::&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;核心机制解析&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;vSphere 的 主机配置文件 (Host Profiles) 提供了一个非常强大的功能，称为“复制设置 (Copy Settings)”。这允许管理员执行细粒度的配置克隆，而无需手动重新配置每一个配置文件。&lt;/p&gt;
&lt;p&gt;操作逻辑：在 vSphere Client 中，你可以选择源配置文件（即 Standard-Config），然后选择将其中特定的子集（如 Storage Configuration）复制到一个或多个目标配置文件中。&lt;/p&gt;
&lt;p&gt;优势：&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;精准性：它只覆盖目标配置文件中的存储部分，保持目标配置文件的网络、安全或其他设置不受干扰。&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;一致性：确保整个集群或数据中心内的存储策略（如存储声明规则、多路径配置等）完全统一。&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;为什么其他选项不合适？&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;A. Export host customizations：主机自定义（Host Customizations）包含的是主机特有的信息（如静态 IP 地址、主机名）。导入这些信息并不能改变主机配置文件（策略模板）本身的定义，且会导致严重的配置冲突。&lt;/p&gt;
&lt;p&gt;C. Duplicate the Standard-Config...：这会创建一个全新的配置文件。虽然你可以修改它，但它并没有解决如何更新“现有其他”主机配置文件的问题。你需要重新关联所有主机，过程繁琐且容易出错。&lt;/p&gt;
&lt;p&gt;D. Export the Standard-Config and attach it：将 Standard-Config 附加到其他主机虽然能统一配置，但它会完全覆盖目标主机原本特有的其他非存储配置（如特殊的网络配置）。题目要求的是“只使用存储配置设置（use only the storage configuration settings）”。
&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;h3&gt;Question 94&lt;/h3&gt;
&lt;p&gt;What are two use cases for VMware vSphere+? (Choose two.)&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[x] &lt;code&gt;A. Enhance on-premises workloads by managing them through the VMware Cloud Console&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] B. Allow live migration between on-premises and VMware Cloud&lt;/li&gt;
&lt;li&gt;[ ] C. Increase the performance of the native vCenter vMotion capability&lt;/li&gt;
&lt;li&gt;[ ] D. Allow the creation of affinity and anti-affinity rules to be used during failover events&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;E. Simplify vCenter lifecycle management through cloud-enabled automation&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;:::warning[警告]
本解答由AI生成，仅供参考，请仔细甄别。
:::&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;核心机制解析&lt;/strong&gt;
vSphere+ 是 VMware 推出的订阅制多云服务，它将传统的本地 vSphere 环境与 VMware Cloud 管理平面相连接，但不需要将工作负载迁移到公有云。&lt;/p&gt;
&lt;p&gt;A. 通过 VMware Cloud Console 管理本地工作负载&lt;/p&gt;
&lt;p&gt;原理：vSphere+ 通过安装在本地的 Cloud Gateway 将 vCenter 连接到 VMware Cloud 控制台。&lt;/p&gt;
&lt;p&gt;价值：管理员可以在一个统一的云端界面（SaaS 模式）中监控和管理分布在不同物理位置（不同数据中心、不同国家）的所有本地集群。这种“单一窗格”管理极大提升了全局可见性。&lt;/p&gt;
&lt;p&gt;E. 通过云端自动化简化 vCenter 生命周期管理&lt;/p&gt;
&lt;p&gt;原理：这是 vSphere+ 的“杀手锏”功能。传统的 vCenter 升级通常涉及手动下载 ISO、挂载并运行复杂的安装程序。&lt;/p&gt;
&lt;p&gt;价值：在 vSphere+ 中，vCenter 的更新被简化为**一键式（Cloud-enabled automation）**操作。VMware Cloud 会自动检测新版本，管理员只需在云端点击更新，系统会自动完成镜像下载、验证和原位升级，极大地减轻了运维负担。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;为什么其他选项不正确？&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;B. Allow live migration between on-premises and VMware Cloud：这是 VMware HCX 的核心功能，虽然 vSphere+ 属于云家族，但它本身的主要目的不是提供跨云的热迁移，而是管理本地环境。&lt;/p&gt;
&lt;p&gt;C. Increase the performance of vMotion：vMotion 的性能主要取决于底层的网络带宽（如 10GbE/25GbE）和 CPU 性能。vSphere+ 作为管理层，不直接改变数据平面 vMotion 的传输速度。&lt;/p&gt;
&lt;p&gt;D. Allow the creation of affinity rules...：这是 vSphere DRS 的基础功能，已经在标准版 vSphere 中存在多年，并非 vSphere+ 的特有使用场景。
&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;h3&gt;Question 95&lt;/h3&gt;
&lt;p&gt;A group of new virtual machines have been deployed using thin-provisioned disks due to the limited storage space available in an environment. The storage team has expressed concern about extensive use of this type of provisioning. An administrator is tasked with creating a custom alarm to notify the storage team when thin provisioning reaches a certain capacity threshold.&lt;/p&gt;
&lt;p&gt;Where must the administrator define this alarm?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[x] &lt;code&gt;A. Datastore&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] B. Data center&lt;/li&gt;
&lt;li&gt;[ ] C. Datastore cluster&lt;/li&gt;
&lt;li&gt;[ ] D. Virtual machine&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;:::warning[警告]
本解答由AI生成，仅供参考，请仔细甄别。
:::&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;核心原理解析&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;在 vSphere 中，警报的定义位置（对象层级）决定了它能监控的指标类型。&lt;/p&gt;
&lt;p&gt;指标归属：精简置备的利用率是存储层的属性。虽然虚拟机是存储的使用者，但磁盘文件的实际大小、物理存储空间的剩余量以及“超额分配”的比例，都是在**数据存储（Datastore）**级别计算的。&lt;/p&gt;
&lt;p&gt;警报机制：在 Datastore 级别定义警报，可以监控整个存储卷的“磁盘使用量（Disk Usage）”或“已分配空间”。当所有精简置备磁盘的总实际占用空间接近物理上限时，只有 Datastore 级别的警报能最准确地反馈风险。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;为什么其他选项不适用？&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;B. Data center：虽然可以在数据中心级别定义警报并让其向下继承，但这通常用于通用的全局规则。对于特定存储策略的监控，Datastore 是最直接的目标对象。&lt;/p&gt;
&lt;p&gt;C. Datastore cluster：如果环境使用了存储负载均衡（Storage DRS），可以配置存储集群警报，但题目背景通常指的是针对单个物理卷容量的监控。&lt;/p&gt;
&lt;p&gt;D. Virtual machine：在虚拟机级别定义警报只能监控单个 VM 的磁盘占用，无法全局感知物理存储的告急情况，且管理上极其繁琐。
&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;h3&gt;Question 96&lt;/h3&gt;
&lt;p&gt;A vSphere cluster hosts a three-tier application The cluster has 50% resources available. If a host in the cluster fails, the database server must be online before the application server, and the application server must be online before the Web server.&lt;/p&gt;
&lt;p&gt;Which feature can be used to meet these requirements?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[ ] A. Predictive DRS&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;B. vSphere HA Orchestrated Restart&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] C. vSphere HA Restart Priority&lt;/li&gt;
&lt;li&gt;[ ] D. Proactive HA&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;:::warning[警告]
本解答由AI生成，仅供参考，请仔细甄别。
:::&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;核心原理解析&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;虽然 vSphere HA 的基础功能是重启虚拟机，但要实现跨虚拟机的依赖关系，必须使用编排功能。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;为什么选择 vSphere HA Orchestrated Restart？&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;依赖关系管理：该功能允许管理员定义“虚拟机到虚拟机”的依赖关系规则。&lt;/p&gt;
&lt;p&gt;分层启动：你可以创建一个依赖链，明确指定“应用服务器”必须等待“数据库服务器”进入就绪状态（Heartbeat 或应用程序检测）后才能启动。&lt;/p&gt;
&lt;p&gt;自动化故障恢复：当主机发生故障时，vSphere HA 不会随机启动 VM，而是严格按照预设的逻辑顺序在剩余主机上拉起服务。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;为什么其他选项不适用？&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;C. vSphere HA Restart Priority（重启优先级）：&lt;/p&gt;
&lt;p&gt;限制：虽然你可以将虚拟机设置为“高、中、低”优先级，但这不能保证前一个虚拟机完全启动成功后再启动下一个。它只是优先分配资源给高优先级的 VM。如果数据库启动很慢，应用服务器可能会在数据库还没准备好时就开始启动，导致服务连接失败。&lt;/p&gt;
&lt;p&gt;A. Predictive DRS（预测性 DRS）：&lt;/p&gt;
&lt;p&gt;功能：结合 vRealize Operations 的历史数据预测负载峰值并提前迁移 VM。它与故障后的启动顺序无关。&lt;/p&gt;
&lt;p&gt;D. Proactive HA（主动 HA）：&lt;/p&gt;
&lt;p&gt;功能：根据硬件传感器的健康状态（如风扇故障、电源不稳定），在主机真正失效前将 VM 迁移走。这属于预防措施，而非故障后的重启编排。
&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;h3&gt;Question 97&lt;/h3&gt;
&lt;p&gt;An administrator is tasked with applying updates to a vSphere cluster running vSAN using vSphere Lifecycle Manager. Downtime to the ESXI hosts must be minimal while the work Is completed.&lt;/p&gt;
&lt;p&gt;The administrator has already completed the following steps and no errors have been returned:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Downloaded all applicable software and created a new Image&lt;/li&gt;
&lt;li&gt;Attached the new Image to the cluster and run a compliance check against the Image for the cluster&lt;/li&gt;
&lt;li&gt;Run a remediation pre-check for the cluster&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Which two series of steps should the administrator perform to start the remediation of the cluster using the new image? (Choose two.)&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[ ] A.
&lt;ol&gt;
&lt;li&gt;Use the Remediate option In vSphore Lifecycle Manager to remediate all of the ESXI hosts in the cluster In parallel.&lt;/li&gt;
&lt;li&gt;Allow vSphere Lifecycle Manager to automatically control maintenance mode on the ESXI hosts.&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;[ ] B.
&lt;ol&gt;
&lt;li&gt;Place each of the ESXI hosts into maintenance mode manually.&lt;/li&gt;
&lt;li&gt;Use the Stage option In vSphere Lifecycle Manager to stage the required software on all ESXi hosts one at a time.&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;[ ] C.
&lt;ol&gt;
&lt;li&gt;Leave all ESXI hosts In the cluster operational.&lt;/li&gt;
&lt;li&gt;Use the Stage All option In vSphere Lifecycle Manager to stage the required software onto all ESXI hosts one at a time.&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;[x] D.
&lt;ol&gt;
&lt;li&gt;&lt;code&gt;Leave all ESXI hosts In the cluster operational.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;Use the Stage All option In vSphere Lifecycle Manager to stage the required software onto all ESXI hosts In the cluster In parallel.&lt;/code&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;[x] E.
&lt;ol&gt;
&lt;li&gt;&lt;code&gt;Use the Remediate Option In vSphere Lifecycle Manager to remediate all of the ESXI hosts In the cluster In sequence.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;Allow vSphere Lifecycle Manager to automatically control maintenance mode on the ESXI hosts.&lt;/code&gt;
&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;:::warning[警告]
本解答由AI生成，仅供参考，请仔细甄别。
:::&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;核心原理解析&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;在 vSphere Lifecycle Manager (vLCM) 中，**“最小化停机时间”**通常通过两个阶段实现：**暂存（Staging）以减少修复时间，以及有序修复（Sequential Remediation）**以维持集群可用性。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;为什么选择 D (Stage All in Parallel)？&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;暂存的作用：Stage 操作会将新的镜像文件和驱动程序提前从 vCenter 传输到 ESXi 主机的本地存储中。&lt;/p&gt;
&lt;p&gt;并行效率：在主机正常运行（Operational）时执行并行暂存，不会影响虚拟机运行。这消除了在正式“修复”阶段等待大文件传输的时间，从而缩短了每台主机处于维护模式的总时长。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;为什么选择 E (Remediate in Sequence)？&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;vSAN 的特殊性：对于 vSAN 集群，绝对不能并行（Parallel）修复所有主机（即选项 A 是错误的）。如果所有主机同时进入维护模式，vSAN 存储将完全不可用。&lt;/p&gt;
&lt;p&gt;自动维护模式：vLCM 能够自动管理维护模式（Maintenance Mode）。它会按照顺序（Sequence）一次处理一台主机：将虚拟机迁移走、置入维护模式、更新、重启、退出维护模式，然后处理下一台。这确保了集群在整个过程中始终有足够的资源和存储副本。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;选项深度解析&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;A. 错误：在 vSAN 集群上进行并行修复会导致整个集群宕机，且不符合 vSAN 数据一致性要求。&lt;/p&gt;
&lt;p&gt;B. 错误：手动置入维护模式并逐一暂存效率极低，违背了“最小化工作量”和“最小化停机时间”的初衷。&lt;/p&gt;
&lt;p&gt;C. 错误：虽然暂存时主机保持运行是正确的，但“逐一（one at a time）”暂存没有必要，浪费了网络带宽和时间。References:
&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;h3&gt;Question 98&lt;/h3&gt;
&lt;p&gt;When configuring vCenter High Availability (HA), which two statements are true regarding the active,passive, and witness nodes? (Choose two.)&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[x] &lt;code&gt;A. Network latency must be less than 10 milliseconds.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] B. They must have a supported Wide Area Network (WAN).&lt;/li&gt;
&lt;li&gt;[ ] C. They must have a minimum of a 10 Gbps network adapter.&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;D. They must have a minimum of a 1 Gbps network adapter.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] E. Network latency must be more than 10 milliseconds.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;:::warning[警告]
本解答由AI生成，仅供参考，请仔细甄别。
:::&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;核心解析&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;A. Network latency must be less than 10 milliseconds&lt;/p&gt;
&lt;p&gt;原理：vCenter HA 要求 Active 节点与 Passive 节点之间通过 vCenter HA 网络进行实时数据复制（PostgreSQL 数据库同步）和状态心跳检测。&lt;/p&gt;
&lt;p&gt;延迟要求：为了保证数据库同步的性能并防止由于网络延迟导致的错误故障转移（Failover），节点间的往返时间 (RTT) 延迟必须 小于 10 毫秒。&lt;/p&gt;
&lt;p&gt;物理位置：由于此延迟限制，vCenter HA 节点通常部署在同一个数据中心内，或者通过极高速的光纤链路连接的近距离站点。&lt;/p&gt;
&lt;p&gt;D. They must have a minimum of a 1 Gbps network adapter&lt;/p&gt;
&lt;p&gt;带宽要求：VMware 官方文档规定，专用于 vCenter HA 流量的网络适配器带宽至少应为 1 Gbps。&lt;/p&gt;
&lt;p&gt;用途：该带宽主要用于处理 Active 节点与 Passive 节点之间的初始数据同步以及运行期间的持续状态复制。在大型环境中，如果 vCenter 数据变动频繁，带宽不足会直接影响 HA 的同步效率。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;为什么其他选项不正确？&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;B. They must have a supported WAN：&lt;/p&gt;
&lt;p&gt;错误原因：虽然理论上可以通过 WAN 连接，但必须满足极苛刻的延迟（&amp;lt;10ms）和带宽要求。由于大多数 WAN 无法稳定保证 &amp;lt;10ms 的延迟，因此 WAN 并不是 vCenter HA 的“必须”条件，反而通常是限制条件。&lt;/p&gt;
&lt;p&gt;C. They must have a minimum of a 10 Gbps network adapter：&lt;/p&gt;
&lt;p&gt;错误原因：虽然 10 Gbps 性能更好，但不是最低强制要求。1 Gbps 即可满足大多数生产环境的需求。&lt;/p&gt;
&lt;p&gt;E. Network latency must be more than 10 milliseconds：&lt;/p&gt;
&lt;p&gt;错误原因：这与实际要求完全相反。高延迟会导致心跳超时，引发不必要的节点切换。&lt;/p&gt;
&lt;p&gt;&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;h3&gt;Question 99&lt;/h3&gt;
&lt;p&gt;A company has two sites: Site A and Site B. The administrator would like to manage the VMware vCenter inventories in both sites from a single vSphere Client session.&lt;/p&gt;
&lt;p&gt;Which vCenter feature must be configured?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[ ] . VMware Certificate Authority&lt;/li&gt;
&lt;li&gt;[ ] B. VMware Site Recovery Manager&lt;/li&gt;
&lt;li&gt;[ ] C. vCenter Single Sign-On&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;D. Enhanced Linked Mode&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;:::warning[警告]
本解答由AI生成，仅供参考，请仔细甄别。
:::&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;核心原理解析&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Enhanced Linked Mode (ELM) 是专门为跨多个 vCenter Server 实例提供统一管理界面的技术。&lt;/p&gt;
&lt;p&gt;单一窗格管理 (Single Pane of Glass)：配置 ELM 后，登录到 Site A 的 vSphere Client，你不仅可以看到 Site A 的资源（主机、虚拟机、数据存储），还能同时看到并操作 Site B 的资源。&lt;/p&gt;
&lt;p&gt;资源共享：它允许跨链接的 vCenter 实例进行搜索、复制角色、权限以及标签。&lt;/p&gt;
&lt;p&gt;先决条件：要启用 ELM，两个站点的 vCenter Server 必须加入同一个 vCenter Single Sign-On (SSO) 域。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;为什么其他选项不正确？&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;A. VMware Certificate Authority (VMCA)：这是 vCenter 内部负责管理 SSL 证书的服务，与跨站点的 UI 集成管理无关。&lt;/p&gt;
&lt;p&gt;B. VMware Site Recovery Manager (SRM)：这是用于灾难恢复（DR）的自动化方案。虽然它通常在两个站点间运行，但它的作用是处理虚拟机切换和恢复计划，而不是提供基础的库存链接功能。&lt;/p&gt;
&lt;p&gt;C. vCenter Single Sign-On (SSO)：虽然 SSO 是实现 ELM 的基础组件（必须在同一个 SSO 域内），但 SSO 本身只负责身份验证。仅有 SSO 而不配置链接模式，你仍需分别登录两个 vCenter 实例。Enhanced Linked Mode 才是实现“单会话管理”的具体功能。&lt;/p&gt;
&lt;p&gt;&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;h3&gt;Question 100&lt;/h3&gt;
&lt;p&gt;An administrator notices a Fibre Channel adapter in an ESXi host has been experiencing inconsistent connectivity states.&lt;/p&gt;
&lt;p&gt;Which trigger can be used to quickly identify the issue and alert the administrator so that the issue can be resolved?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[ ] A. Host Connection Lost&lt;/li&gt;
&lt;li&gt;[ ] B. Lost Network Path Redundancy&lt;/li&gt;
&lt;li&gt;[ ] C. Lost Network Connectivity&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;D. Lost Storage Connectivity&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;:::warning[警告]
本解答由AI生成，仅供参考，请仔细甄别。
:::&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;以下是深度解析：&lt;/strong&gt;&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;为什么选择 D 而非 B？
即使遵循最佳实践配置了冗余路径，这两个触发器的行为逻辑有本质区别：&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;D. Lost Storage Connectivity (丢失存储连接)：&lt;/p&gt;
&lt;p&gt;监控对象：存储路径（Storage Paths）。&lt;/p&gt;
&lt;p&gt;逻辑：只要有一个 HBA 卡或一条路径变为“Dead”状态，该警报就会触发。它不关心你是否还有其他存活路径，它的职责是告诉你：“原本存在的某条存储通道现在断开了”。这正是“快速识别 HBA 卡连接不一致”所需的灵敏度。&lt;/p&gt;
&lt;p&gt;B. Lost Network Path Redundancy (丢失网络路径冗余)：&lt;/p&gt;
&lt;p&gt;监控对象：以太网（Ethernet） 适配器（vmnic）和端口组。&lt;/p&gt;
&lt;p&gt;逻辑：它监控的是上行链路（Uplink）的冗余。最重要的是，在 VMware 术语中，“Network”特指以太网流量。即使你的 FC 存储完全断开，只要你的 Management 或 VM Network 还是冗余的，这个警报绝不会触发。&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;核心术语区分：Storage vs. Network
在 vCenter 的警报系统中，分类非常严格：&lt;/li&gt;
&lt;/ol&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Storage 触发器：处理 HBA、LUN、光纤路径（FC/iSCSI/FCoE）。&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Network 触发器：处理标准/分布式交换机、物理网卡（NIC）、VLAN。&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;由于题目明确提到了 Fibre Channel adapter (HBA)，这属于存储硬件，因此必须查看 Storage 类别的触发器。&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;如果环境具有冗余性（Multipathing）
如果环境是冗余的，且一条路径丢失，虚拟机不会宕机（因为有其他路径）。&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;D. Lost Storage Connectivity 会立即报“警告”或“错误”，提示管理员某张 HBA 卡或某个 SFP 模块可能坏了。&lt;/p&gt;
&lt;p&gt;如果使用的是某些特定版本的 vSphere，还会有 &quot;Lost Storage Path Redundancy&quot; 触发器。但即便如此，它依然属于 Storage 范畴，而不是选项 B 描述的 Network 范畴。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;总结&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;对于 FC HBA 卡的不稳定问题，D. Lost Storage Connectivity 是最符合逻辑的答案。它能捕获路径状态从 Active 到 Dead 的切换，从而让管理员定位到那块“不一致”的适配器。&lt;/p&gt;
&lt;p&gt;&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;h3&gt;Question 101&lt;/h3&gt;
&lt;p&gt;An administrator is tasked with moving an application and guest operating system (OS) running on top of a physical server to a software-defined data center (SDDC) in a remote secure location.&lt;/p&gt;
&lt;p&gt;The following constraints apply:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;The remote secure location has no network connectivity to the outside world.&lt;/li&gt;
&lt;li&gt;The business owner is not concerned if all changes in the application make it to the SDDC in the secure location.&lt;/li&gt;
&lt;li&gt;The application&apos;s data is hosted in a database with a high number of transactions.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;What could the administrator do to create an image of the guest OS and application that can be moved to this remote data center?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[ ] A. Create a hot clone of the physical server using VMware vCenter Converter.&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;B. Create a cold clone of the physical server using VMware vCenter Converter.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] C. Restore the guest OS from a backup.&lt;/li&gt;
&lt;li&gt;[ ] D. Use storage replication to replicate the guest OS and application.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;:::warning[警告]
本解答由AI生成，仅供参考，请仔细甄别。
:::&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;核心原理解析&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;在这种受限环境下，选择 Cold Clone（冷克隆） 而非其他选项的原因如下：&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;物理到虚拟的转换 (P2V)：由于目标是物理服务器，需要使用 VMware vCenter Converter。&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;高事务数据库的一致性：题目提到应用数据存储在“高事务量”的数据库中。如果使用“热克隆（Hot Clone）”，在克隆过程中数据会不断变化，由于没有持续的网络同步，克隆出来的镜像极易出现数据库损坏或数据不一致的情况。&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;离线迁移需求：远程安全位置没有外部网络连接。冷克隆允许管理员使用引导介质（ISO/USB）启动物理服务器，在操作系统未运行的状态下抓取完整的静态镜像。由于操作系统处于静态，抓取的镜像最为稳定。&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;数据一致性：冷克隆通过关闭源服务器的服务来确保“时间点”的一致性，这对于高事务数据库至关重要，能保证应用在 SDDC 启动后无需复杂的数据库修复即可运行。&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;为什么其他选项不适用？&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;A. Hot Clone (热克隆)：热克隆依赖于网络连接来同步克隆过程中的增量变化。在“高事务”环境下，如果网络受限或不允许持续同步，克隆出的数据库文件往往处于崩溃一致性状态（Crash-consistent），可能无法正常启动。&lt;/p&gt;
&lt;p&gt;C. Restore from backup：虽然可以恢复备份，但前提是你在远程位置拥有兼容的备份基础设施。相比之下，Converter 提供的 P2V 过程更直接地处理硬件抽象层（HAL）的转换，确保物理机驱动在虚拟机环境下能正常工作。&lt;/p&gt;
&lt;p&gt;D. Storage replication (存储复制)：这要求源物理服务器和目标 SDDC 之间有高速、低延迟的光纤或以太网连接。题目明确指出“无外部网络连接”，因此复制无法实施。
&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;h3&gt;Question 102&lt;/h3&gt;
&lt;p&gt;An administrator wants to allow a DevOps engineer the ability to delete Tanzu Kubernetes Grid (TKG) cluster objects in a vSphere Namespace.&lt;/p&gt;
&lt;p&gt;Which role would provide the minimum required permissions to perform this operation?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[ ] A. Administrator&lt;/li&gt;
&lt;li&gt;[ ] B. Can View&lt;/li&gt;
&lt;li&gt;[ ] C. Owner&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;D. Can Edit&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/p&gt;
&lt;p&gt;:::warning[警告]
本解答由AI生成，仅供参考，请仔细甄别。
:::
&lt;strong&gt;角色权限解析&lt;/strong&gt;
vSphere 命名空间主要有三种内置角色，它们在 TKG 集群管理中的权限如下：&lt;/p&gt;
&lt;p&gt;Can Edit (D)：&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;权限级别：这是满足要求的最小特权。&lt;/li&gt;
&lt;li&gt;能力：允许用户创建、修改和删除命名空间内的资源，包括 Tanzu Kubernetes Grid (TKG) 集群、持久卷声明（PVCs）和服务。&lt;/li&gt;
&lt;li&gt;适用场景：专门为需要执行日常开发和部署任务（包括清理资源）的 DevOps 工程师设计。
Owner (C)：&lt;/li&gt;
&lt;li&gt;权限级别：最高级别。&lt;/li&gt;
&lt;li&gt;能力：除了包含 &quot;Can Edit&quot; 的所有权限外，还允许用户修改命名空间本身的设置、管理其他用户的权限。虽然它可以删除集群，但对于仅仅需要操作集群对象的工程师来说，权限过大。
Can View (B)：&lt;/li&gt;
&lt;li&gt;权限级别：只读。&lt;/li&gt;
&lt;li&gt;能力：仅允许查看命名空间内的资源及其状态，无法执行任何删除或创建操作。
Administrator (A)：&lt;/li&gt;
&lt;li&gt;通常指 vCenter 级别的系统管理员，其权限远超命名空间范围，不符合“最小特权原则”。
&amp;lt;/details&amp;gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;Question 103&lt;/h3&gt;
&lt;p&gt;An administrator has mapped three vSphere zones to three vSphere clusters.&lt;/p&gt;
&lt;p&gt;Which two statements are true for this vSphere with Tanzu zonal Supervisor enablement? (Choose two.)&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[x] &lt;code&gt;A. One Supervisor will be created in a specific zone.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] B. One Supervisor will be created across all zones.&lt;/li&gt;
&lt;li&gt;[ ] C. Three Supervisors will be created in Linked Mode.&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;D. Individual vSphere Namespaces will be placed into a specific zone.&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] E. Individual vSphere Namespaces will be spread across all zones.
&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;解答和参考链接&amp;lt;/summary&amp;gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Explanation&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;When mapping vSphere zones to vSphere clusters, one Supervisor will be created in each zone, and individual vSphere Namespaces will be placed into a specific zone based on their resource requirements and availability constraints.
&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;h3&gt;Question 104&lt;/h3&gt;
&lt;p&gt;An administrator is tasked with implementing a backup solution capable of backing up the Su-pervisor cluster, vSphere Pods, and persistent volumes.&lt;/p&gt;
&lt;p&gt;Which two solution must be used to meet this requirement? (Choose two.) ：&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;[ ] A. VMware vCenter&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;B. Standalone Velero and Restic&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;[ ] C. NSX-T Manager&lt;/li&gt;
&lt;li&gt;[ ] D. vSphere Host Client&lt;/li&gt;
&lt;li&gt;[x] &lt;code&gt;E. Velero Plugin for vSphere&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
</content:encoded></item><item><title>安装adguardhome</title><link>https://v0nl1.com/posts/adguardhome/</link><guid isPermaLink="true">https://v0nl1.com/posts/adguardhome/</guid><description>archlinux安装adguardhome的笔记</description><pubDate>Thu, 23 Oct 2025 00:00:00 GMT</pubDate><content:encoded>&lt;h3&gt;前言&lt;/h3&gt;
&lt;p&gt;今天上午突然想到之前软路由上装&lt;code&gt;AdguardHome&lt;/code&gt;，现在笔记本操作系统都换上Arch了，广告过滤还是有点意义的，开搞&lt;/p&gt;
&lt;p&gt;我采用直接在Linux上安装，不使用Docker等方式&lt;/p&gt;
&lt;p&gt;以下简称AdguardHome为ADG&lt;/p&gt;
&lt;h3&gt;安装过程&lt;/h3&gt;
&lt;p&gt;:::note&lt;/p&gt;
&lt;p&gt;在root用户下执行&lt;/p&gt;
&lt;p&gt;:::&lt;/p&gt;
&lt;h4&gt;命令行安装&lt;/h4&gt;
&lt;p&gt;:::note&lt;/p&gt;
&lt;p&gt;请确保你可以快速访问外网，负责安装过程会很慢&lt;/p&gt;
&lt;p&gt;:::&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;curl安装&lt;/li&gt;
&lt;/ul&gt;
&lt;pre&gt;&lt;code&gt;curl -s -S -L https://raw.githubusercontent.com/AdguardTeam/AdGuardHome/master/scripts/install.sh | sh -s -- -v
&lt;/code&gt;&lt;/pre&gt;
&lt;ul&gt;
&lt;li&gt;wget安装&lt;/li&gt;
&lt;/ul&gt;
&lt;pre&gt;&lt;code&gt;wget --no-verbose -O - https://raw.githubusercontent.com/AdguardTeam/AdGuardHome/master/scripts/install.sh | sh -s -- -v
&lt;/code&gt;&lt;/pre&gt;
&lt;ul&gt;
&lt;li&gt;fetch安装&lt;/li&gt;
&lt;/ul&gt;
&lt;pre&gt;&lt;code&gt;fetch -o - https://raw.githubusercontent.com/AdguardTeam/AdGuardHome/master/scripts/install.sh | sh -s -- -v
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;手动安装&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;去github项目release页面，下载压缩文件
&lt;ul&gt;
&lt;li&gt;https://github.com/AdguardTeam/AdGuardHome/releases/latest&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;命令行解压&lt;/li&gt;
&lt;/ul&gt;
&lt;pre&gt;&lt;code&gt;cd Downloads
tar -zxf AdGuardHome_linux_amd64.tar.gz
&lt;/code&gt;&lt;/pre&gt;
&lt;ul&gt;
&lt;li&gt;配置工作目录和配置文件目录&lt;/li&gt;
&lt;/ul&gt;
&lt;pre&gt;&lt;code&gt;# 设置ADG工作目录为/usr/local/bin
cp AdguardHome /usr/local/bin

# 创建ADG配置文件目录
mkdir -p /usr/local/etc/AdguardHome

# ADG安装
# [未测试]这里感觉通过安装时加上-w 参数，指定安装目录应该也可以
# ./AdguardHome -s install -W /usr/local/etc/AdguardHome
./AdguardHome -s install 

# 停止ADG服务
systemctl stop AdGuardHome.service

# 修改ADG的service配置
# -c config文件位置
# -w --work-dir
vim /etc/systemd/system/AdGuardHome.service

ExecStart=/usr/local/bin/AdGuardHome -s run -c /usr/local/etc/AdguardHome/AdGuardHome.yaml -w /usr/local/etc/AdguardHome 

# 重启服务
systemctl daemon-reload
systemctl start AdGuardHome.service
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;配置DNS和过滤规则&lt;/h3&gt;
&lt;h4&gt;初始化&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;访问： http://127.0.0.1:3000
&lt;ul&gt;
&lt;li&gt;配置用户名和密码（密码长度不低于8位）&lt;/li&gt;
&lt;li&gt;如果遇到其他进程占用53端口
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;sudo lsof -i:53 &lt;/code&gt;排查进程&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h4&gt;DNS&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;设置&lt;/code&gt;/&lt;code&gt;DNS设置&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;pre&gt;&lt;code&gt;https://dns.alidns.com/dns-query
https://doh.pub/dns-query
&lt;/code&gt;&lt;/pre&gt;
&lt;ul&gt;
&lt;li&gt;并行请求&lt;/li&gt;
&lt;/ul&gt;
&lt;pre&gt;&lt;code&gt;119.29.29.29
223.5.5.5
&lt;/code&gt;&lt;/pre&gt;
&lt;pre&gt;&lt;code&gt;114.114.114.114
119.29.29.29
223.5.5.5
223.6.6.6
2400:3200::1
2400:3200:baba::1
2402:4e00::
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;过滤器&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;过滤器&lt;/code&gt;/&lt;code&gt;DNS黑名单&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;添加黑名单&lt;/code&gt;/&lt;code&gt;从列表中选择&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;区域&lt;/code&gt;/&lt;code&gt;CHN: anti-AD&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;一般一条&lt;code&gt;anti-AD&lt;/code&gt;就够了，不需要那么多规则&lt;/p&gt;
&lt;h3&gt;遇到的问题&lt;/h3&gt;
&lt;h4&gt;53端口占用&lt;/h4&gt;
&lt;p&gt;我配置了&lt;code&gt;libviretd&lt;/code&gt;自启动，并两个&lt;code&gt;virbr&lt;/code&gt;网卡，&lt;code&gt;libvirtd&lt;/code&gt;会启动&lt;code&gt;dnsmasq&lt;/code&gt;对虚拟机进行&lt;code&gt;dhcp&lt;/code&gt;和&lt;code&gt;dns&lt;/code&gt;服务&lt;/p&gt;
&lt;p&gt;不要尝试修改&lt;code&gt;dnsmasq&lt;/code&gt;的配置文件，因为你编辑的时间会发现它是由&lt;code&gt;libvirtd&lt;/code&gt;生成，重启就是失效了&lt;/p&gt;
&lt;p&gt;解决思路：&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;将两个&lt;code&gt;virbr&lt;/code&gt;配置为不提供DNS&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;实际操作：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;sudo  EDITOR=vim virsh net-edit default

# 在&amp;lt;/dhcp&amp;gt;和&amp;lt;/network&amp;gt;块之间加上

&amp;lt;dns enable=&apos;no&apos;/&amp;gt;

# host-only 网络同样操作

# 删除并重建网络
sudo virsh net-destroy default
sudo virsh net-start default
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;无DNS查询记录&lt;/h4&gt;
&lt;p&gt;就是你浏览器一直刷新，但是ADG面板上没有DNS查询日志&lt;/p&gt;
&lt;p&gt;我这里使用的网络管理工具是NetworkManager，它默认使用上游路由器传过来的DNS&lt;/p&gt;
&lt;p&gt;你修改/etc/resolv.conf时会发现，这个文件由NetworkManager自动生成&lt;/p&gt;
&lt;p&gt;解决思路：&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;创建NetworkManager的dns.conf，禁用DNS&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;实际操作：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;sudo echo -e &apos;[main]\ndns=none&apos; /etc/NetworkManager/conf.d/dns.conf

sudo systemctl restart NetworkManager
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;参考资料&lt;/h3&gt;
&lt;blockquote&gt;
&lt;p&gt;[Github]官方安装方式&lt;/p&gt;
&lt;p&gt;https://github.com/AdguardTeam/AdGuardHome?tab=readme-ov-file#automated-install-linux-and-mac&lt;/p&gt;
&lt;/blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;ADG文档/入门&lt;/p&gt;
&lt;p&gt;https://adguard-dns.io/kb/zh-CN/adguard-home/getting-started/&lt;/p&gt;
&lt;/blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;腾讯云 DNSPod&lt;/p&gt;
&lt;p&gt;https://www.dnspod.cn/products/publicdns&lt;/p&gt;
&lt;/blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;阿里云公共DNS&lt;/p&gt;
&lt;p&gt;https://www.alidns.com/&lt;/p&gt;
&lt;/blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;DNS排查工具&lt;/p&gt;
&lt;p&gt;[AUR] dnsloopup 工具&lt;/p&gt;
&lt;p&gt;https://aur.archlinux.org/packages/dnslookup-bin&lt;/p&gt;
&lt;p&gt;[extra] bind 软件包&lt;/p&gt;
&lt;p&gt;https://archlinux.org/packages/extra/x86_64/bind/&lt;/p&gt;
&lt;/blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;[reddit] adguard与libvirt-dnsmasq冲突&lt;/p&gt;
&lt;p&gt;https://www.reddit.com/r/unRAID/comments/otabey/adguard_in_host_mode_conflicting_with/?tl=zh-hans&lt;/p&gt;
&lt;/blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;[serverfault] 关闭libvirtd中dnsmaqs组件的dns监听port&lt;/p&gt;
&lt;p&gt;https://serverfault.com/questions/937188/disable-or-change-port-of-dnsmasq-service-in-libvirt&lt;/p&gt;
&lt;/blockquote&gt;
</content:encoded></item><item><title>Ceph练习-文件系统</title><link>https://v0nl1.com/posts/ceph-filesystem/</link><guid isPermaLink="true">https://v0nl1.com/posts/ceph-filesystem/</guid><description>Ceph文件系统的练习笔记</description><pubDate>Sun, 19 Oct 2025 00:00:00 GMT</pubDate><content:encoded>&lt;h3&gt;基础概念&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Monitors&lt;/strong&gt;： &lt;a href=&quot;https://docs.ceph.com/en/reef/glossary/#term-Ceph-Monitor&quot;&gt;Ceph 监视器 &lt;/a&gt;（&lt;code&gt;ceph-mon&lt;/code&gt;） 维护集群状态的映射，包括&lt;a href=&quot;https://docs.ceph.com/en/reef/rados/operations/monitoring/#display-mon-map&quot;&gt;监视器映射 &lt;/a&gt;、管理器映射、OSD 映射、MDS 映射和 CRUSH 映射&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Managers&lt;/strong&gt;： &lt;a href=&quot;https://docs.ceph.com/en/reef/glossary/#term-Ceph-Manager&quot;&gt;Ceph Manager&lt;/a&gt; 守护程序 （&lt;code&gt;ceph-mgr&lt;/code&gt;） 负责跟踪运行时指标和 Ceph 集群的当前状态，包括存储利用率、当前性能指标和系统负载&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Ceph OSD&lt;/strong&gt;：对象存储守护进程（&lt;a href=&quot;https://docs.ceph.com/en/reef/glossary/#term-Ceph-OSD&quot;&gt;Ceph OSD&lt;/a&gt;， &lt;code&gt;ceph-osd&lt;/code&gt;）存储数据，处理数据复制、恢复、重新平衡，并通过检查其他 Ceph OSD 守护进程的检测信号向 Ceph 监视器和管理器提供一些监控信息。通常至少需要三个 Ceph OSD 才能实现冗余和高可用性。&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;MDSes&lt;/strong&gt;：&lt;a href=&quot;https://docs.ceph.com/en/reef/glossary/#term-Ceph-Metadata-Server&quot;&gt;Ceph 元数据服务器 &lt;/a&gt;（MDS、&lt;code&gt;ceph-mds&lt;/code&gt;）存储 &lt;a href=&quot;https://docs.ceph.com/en/reef/glossary/#term-Ceph-File-System&quot;&gt;Ceph 文件系统的&lt;/a&gt;元数据。Ceph 元数据服务器允许 CephFS 用户运行基本命令（如 &lt;code&gt;ls&lt;/code&gt;、&lt;code&gt;find&lt;/code&gt; 等），而不会给 Ceph 存储集群带来负担。&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;RGW&lt;/strong&gt;：&lt;a href=&quot;https://docs.ceph.com/en/reef/glossary/#term-Ceph-Object-Gateway&quot;&gt;Ceph 对象网关 &lt;/a&gt;（RGW，&lt;code&gt;ceph-radosgw&lt;/code&gt;）守护进程在应用程序和 Ceph 存储集群之间提供 RESTful 网关。S3 兼容的 API 是最常用的，但 Swift 也可用。&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;前期操作&lt;/h3&gt;
&lt;h4&gt;主机信息&lt;/h4&gt;
&lt;p&gt;三台Rocky9虚拟机，每台主机2c2g20g，另每台挂载20G空硬盘&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;主机名&lt;/th&gt;
&lt;th&gt;IP地址&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;ceph-7&lt;/td&gt;
&lt;td&gt;192.168.200.7&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;ceph-8&lt;/td&gt;
&lt;td&gt;192.168.200.8&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;ceph-9&lt;/td&gt;
&lt;td&gt;192.168.200.9&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h4&gt;用户名&lt;/h4&gt;
&lt;pre&gt;&lt;code&gt;hostnamectl set-hostname ceph-7
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;主机host文件&lt;/h4&gt;
&lt;pre&gt;&lt;code&gt;echo -e &apos;192.168.200.7\tceph-7\n192.168.200.8\tceph-8\n192.168.200.9\tceph-9&apos; &amp;gt;&amp;gt; /etc/hosts
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;固定IP&lt;/h4&gt;
&lt;pre&gt;&lt;code&gt;nmcli connection modify enp1s0 ipv4.method manual ipv4.addresses 192.168.200.7/24 ipv4.gateway 192.168.200.1 ipv4.dns &quot;223.9.9.9,119.29.29.29&quot; autoconnect yes

nmcli connection up enp1s0 
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;关闭Selinux&lt;/h4&gt;
&lt;pre&gt;&lt;code&gt;setenforce 0；sed -i &apos;s/^SELINUX=.*/SELINUX=disabled/&apos; /etc/selinux/config 
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;时间同步&lt;/h4&gt;
&lt;pre&gt;&lt;code&gt;sed -i &apos;s/^pool.*/pool cn.ntp.org.cn iburst/&apos; /etc/chrony.conf ; systemctl restart chronyd
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;检查时间同步&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;root@ceph-8:~# chronyc sources
MS Name/IP address         Stratum Poll Reach LastRx Last sample               
===============================================================================
^? 58.220.133.132                0   6     0     -     +0ns[   +0ns] +/-    0ns
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;关闭防火墙&lt;/h4&gt;
&lt;pre&gt;&lt;code&gt;systemctl disable --now firewalld.service 
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;开启root SSH登陆&lt;/h4&gt;
&lt;pre&gt;&lt;code&gt;sed -i &apos;s/^#PermitRootLogin.*/PermitRootLogin yes/&apos; /etc/ssh/sshd_config ; systemctl restart sshd
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;国内镜像源&lt;/h4&gt;
&lt;pre&gt;&lt;code&gt;sed -e &apos;s|^mirrorlist=|#mirrorlist=|g&apos; \
    -e &apos;s|^#baseurl=http://dl.rockylinux.org/$contentdir|baseurl=https://mirrors.ustc.edu.cn/rocky|g&apos; \
    -i.bak \
    /etc/yum.repos.d/rocky*
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;配置HTTP和HTTPS代理&lt;/h4&gt;
&lt;p&gt;主要目的方便后便下载镜像&lt;/p&gt;
&lt;p&gt;国内免费的镜像加速速度太感人了，都爬一边去&lt;/p&gt;
&lt;p&gt;直接设置Rock走科学工具的http代理&lt;/p&gt;
&lt;p&gt;容器下载速度由你的科学上网工具决定&lt;/p&gt;
&lt;p&gt;我的电脑是Linux，window直接跳过防火墙这个操作&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;firewalld放开virbr1的源地址访问public区域&lt;/li&gt;
&lt;/ul&gt;
&lt;pre&gt;&lt;code&gt;# 立即放行源地址为QEMU NAT网卡的网段
sudo firewall-cmd --zone=public --add-source=192.168.200.0/24
# 防火墙持久化
sudo firewall-cmd --zone=public --add-source=192.168.200.0/24 --permanent 
&lt;/code&gt;&lt;/pre&gt;
&lt;ul&gt;
&lt;li&gt;在虚拟机上设置HTTP和HTTPS代理&lt;/li&gt;
&lt;/ul&gt;
&lt;pre&gt;&lt;code&gt;echo -e &quot;export http_proxy=http://192.168.200.1:65500\nexport https_proxy=http://192.168.200.1:65500&quot; &amp;gt;&amp;gt; /etc/profile ； source /etc/profile
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;安装Ceph&lt;/h3&gt;
&lt;p&gt;:::important&lt;/p&gt;
&lt;p&gt;仅在主节点ceph-7上操作&lt;/p&gt;
&lt;p&gt;:::&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;# 安装ceph源
dnf install -y centos-release-ceph-squid
# 安装cephadm
dnf install -y cephadm

# jinja2依赖
dnf install python3-jinja2

# 安装
cephadmin install

# 安装管理面板
cephadm bootstrap --mon-ip 192.168.200.7


             URL: https://ceph-7:8443/
            User: admin
        Password: qj0ponlenl
# ceph8、ceph-9免登陆
ssh-copy-id -f -i /etc/ceph/ceph.pub root@ceph-8
ssh-copy-id -f -i /etc/ceph/ceph.pub root@ceph-9
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;Ceph管理面板&lt;/h3&gt;
&lt;h4&gt;添加主机&lt;/h4&gt;
&lt;p&gt;面板: &lt;code&gt;Cluster&lt;/code&gt;/&lt;code&gt;主机&lt;/code&gt;下添加，&lt;code&gt;主机名&lt;/code&gt;+&lt;code&gt;IP地址&lt;/code&gt;+&lt;code&gt;标签：_admin&lt;/code&gt;&lt;/p&gt;
&lt;h4&gt;添加OSD存储（Object Storage Daemon）&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;面板：&lt;code&gt;Cluster&lt;/code&gt;/&lt;code&gt;OSD&lt;/code&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;如果osd添加不成功，检查一下哪个VM的容器状态&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;命令行操作&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;我虚拟机搞的Rocky10，Ceph现在才支持到Rocky9&lt;/li&gt;
&lt;li&gt;ceph命令只能在cephadm shell中使用，也就隔层docker使用命令&lt;/li&gt;
&lt;li&gt;你可以直接安装ceph-common包使用ceph命令&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;pre&gt;&lt;code&gt;cephadm shell -- ceph orch daemon add osd ceph-8:/dev/vdb
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;创建文件系统&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;面板添加：&lt;code&gt;File&lt;/code&gt;/&lt;code&gt;文件系统&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;命令添加&lt;/li&gt;
&lt;/ul&gt;
&lt;pre&gt;&lt;code&gt;cephadm shell -- ceph fs volume create cephfs 
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;宿主机挂载cephfs&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;mount命令挂载&lt;/li&gt;
&lt;/ul&gt;
&lt;pre&gt;&lt;code&gt;# 创建挂载点
sudo mkdir /mnt/ceph

# 查看ceph-7上的ceph.client.admin.keyring 
root@ceph-7:~# cat /etc/ceph/ceph.client.admin.keyring 
[client.admin]
        key = AQAjjvNonkdlFRAAMJFkfHEmwP1/Ne2xA05ILQ==
        caps mds = &quot;allow *&quot;
        caps mgr = &quot;allow *&quot;
        caps mon = &quot;allow *&quot;
        caps osd = &quot;allow *&quot;

# 在宿主机上挂载ceph,通过secret认证方式
sudo mount -t ceph 192.168.200.7:/ /mnt/ceph \
-o name=admin,secret=AQAjjvNonkdlFRAAMJFkfHEmwP1/Ne2xA05ILQ==

# 检查挂载结果
[root@Arch-8845 lee]# df -h /mnt/ceph/
文件系统         大小  已用  可用 已用% 挂载点
192.168.200.7:/   19G     0   19G    0% /mnt/ceph

# 复制ceph-7上的ceph.client.admin.keyring
[root@Arch-8845 lee]#scp root@ceph-7:/etc/ceph/* /etc/ceph

# 设置开机挂载
[root@Arch-8845 lee]# vim /etc/fstab

192.168.200.7:/ /mnt/cephfs ceph  name=admin,secretfile=/etc/ceph/ceph.client.admin.keyring,_netdev 0 0
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;删除文件系统&lt;/h3&gt;
&lt;h4&gt;检查文件系统信息&lt;/h4&gt;
&lt;pre&gt;&lt;code&gt;root@ceph-7:~# cephadm shell -- ceph fs status
Inferring fsid 8ea7ba22-ac21-11f0-b2c2-525400e13a2b
Inferring config /var/lib/ceph/8ea7ba22-ac21-11f0-b2c2-525400e13a2b/mon.ceph-7/config
Using ceph image with id &apos;aade1b12b8e6&apos; and tag &apos;v19&apos; created on 2025-07-17 19:53:27 +0000 UTC
quay.io/ceph/ceph@sha256:af0c5903e901e329adabe219dfc8d0c3efc1f05102a753902f33ee16c26b6cee
cephfs - 0 clients
======
       POOL           TYPE     USED  AVAIL  
cephfs.cephfs.meta  metadata  1935k  18.9G  
cephfs.cephfs.data    data    99.4M  18.9G  
    STANDBY MDS       
cephfs.ceph-9.quvzuh  
MDS version: ceph version 19.2.3 (c92aebb279828e9c3c1f5d24613efca272649e62) squid (stable)
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;关闭文件系统&lt;/h4&gt;
&lt;pre&gt;&lt;code&gt;cephadm shell -- ceph fs set cephfs down true
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;删除文件系统&lt;/h4&gt;
&lt;pre&gt;&lt;code&gt;cephadm shell -- ceph fs rm cephfs --yes-i-really-mean-it
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;设置mon允许删除pool&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;命令行&lt;/li&gt;
&lt;/ul&gt;
&lt;pre&gt;&lt;code&gt;cephadm shell --  ceph config set mon mon_allow_pool_delete true
&lt;/code&gt;&lt;/pre&gt;
&lt;ul&gt;
&lt;li&gt;图形界面
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;Administration&lt;/code&gt;/&lt;code&gt;配置&lt;/code&gt;/&lt;code&gt;mon_allow_pool_delete&lt;/code&gt; - 编辑&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h4&gt;删除pool&lt;/h4&gt;
&lt;pre&gt;&lt;code&gt;# 首先删除metadata pool
# 注意： 需要重复输入 metadata pool 的名字一次
# 后跟 -yes-i-really-really-mean-it 参数

root@ceph-7:~# cephadm shell -- ceph osd pool delete cephfs.cephfs.meta cephfs.cephfs.meta --yes-i-really-really-mean-it
Inferring fsid 8ea7ba22-ac21-11f0-b2c2-525400e13a2b
Inferring config /var/lib/ceph/8ea7ba22-ac21-11f0-b2c2-525400e13a2b/mon.ceph-7/config
Using ceph image with id &apos;aade1b12b8e6&apos; and tag &apos;v19&apos; created on 2025-07-17 19:53:27 +0000 UTC
quay.io/ceph/ceph@sha256:af0c5903e901e329adabe219dfc8d0c3efc1f05102a753902f33ee16c26b6cee
pool &apos;cephfs.cephfs.meta&apos; removed


# 重复上边步骤删除data pool
root@ceph-7:~# cephadm shell -- ceph osd pool delete cephfs.cephfs.data cephfs.cephfs.data --yes-i-really-really-mean-it
Inferring fsid 8ea7ba22-ac21-11f0-b2c2-525400e13a2b
Inferring config /var/lib/ceph/8ea7ba22-ac21-11f0-b2c2-525400e13a2b/mon.ceph-7/config
Using ceph image with id &apos;aade1b12b8e6&apos; and tag &apos;v19&apos; created on 2025-07-17 19:53:27 +0000 UTC
quay.io/ceph/ceph@sha256:af0c5903e901e329adabe219dfc8d0c3efc1f05102a753902f33ee16c26b6cee
pool &apos;cephfs.cephfs.data&apos; removed
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;清除 Ceph 存储集群&lt;/h3&gt;
&lt;p&gt;先查找monitor的fsid，然后cephadm删除集群&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;cephadm ls
c
cephadm rm-cluster --force --zap-osds  --fsid FSID
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;回顾一下&lt;/h3&gt;
&lt;h4&gt;&lt;code&gt;ceph-7&lt;/code&gt;的&lt;code&gt;ceph&lt;/code&gt;状态&lt;/h4&gt;
&lt;pre&gt;&lt;code&gt;root@ceph-7:~# cephadm shell -- ceph -s
Inferring fsid 8ea7ba22-ac21-11f0-b2c2-525400e13a2b
Inferring config /var/lib/ceph/8ea7ba22-ac21-11f0-b2c2-525400e13a2b/mon.ceph-7/config
Using ceph image with id &apos;aade1b12b8e6&apos; and tag &apos;v19&apos; created on 2025-07-17 19:53:27 +0000 UTC
quay.io/ceph/ceph@sha256:af0c5903e901e329adabe219dfc8d0c3efc1f05102a753902f33ee16c26b6cee
  cluster:
    id:     8ea7ba22-ac21-11f0-b2c2-525400e13a2b
    health: HEALTH_OK
 
  services:
    mon: 3 daemons, quorum ceph-7,ceph-8,ceph-9 (age 4h)
    mgr: ceph-7.popbkv(active, since 4h), standbys: ceph-8.kfvcoz
    osd: 3 osds: 3 up (since 4h), 3 in (since 19h)
 
  data:
    pools:   1 pools, 1 pgs
    objects: 2 objects, 449 KiB
    usage:   150 MiB used, 60 GiB / 60 GiB avail
    pgs:     1 active+clean
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;&lt;code&gt;ceph-7&lt;/code&gt;起的容器&lt;/h4&gt;
&lt;pre&gt;&lt;code&gt;root@ceph-7:~# podman ps
CONTAINER ID  IMAGE                                                                                      COMMAND               CREATED      STATUS      PORTS       NAMES
2bd4fd6a483a  quay.io/ceph/ceph@sha256:7c69e59beaeea61ca714e71cb84ff6d5e533db7f1fd84143dd9ba6649a5fd2ec  -n client.ceph-ex...  3 hours ago  Up 3 hours              ceph-8ea7ba22-ac21-11f0-b2c2-525400e13a2b-ceph-exporter-ceph-7
42d120151789  quay.io/ceph/ceph:v19                                                                      -n mon.ceph-7 -f ...  3 hours ago  Up 3 hours              ceph-8ea7ba22-ac21-11f0-b2c2-525400e13a2b-mon-ceph-7
a5db98112a20  quay.io/ceph/grafana:10.4.0                                                                                      3 hours ago  Up 3 hours  3000/tcp    ceph-8ea7ba22-ac21-11f0-b2c2-525400e13a2b-grafana-ceph-7
0e72941a5b4e  quay.io/prometheus/alertmanager:v0.25.0                                                    --cluster.listen-...  3 hours ago  Up 3 hours  9093/tcp    ceph-8ea7ba22-ac21-11f0-b2c2-525400e13a2b-alertmanager-ceph-7
324cb5c52e12  quay.io/ceph/ceph:v19                                                                      -n mgr.ceph-7.pop...  3 hours ago  Up 3 hours              ceph-8ea7ba22-ac21-11f0-b2c2-525400e13a2b-mgr-ceph-7-popbkv
2576ba3a904c  quay.io/prometheus/node-exporter:v1.7.0                                                    --no-collector.ti...  3 hours ago  Up 3 hours  9100/tcp    ceph-8ea7ba22-ac21-11f0-b2c2-525400e13a2b-node-exporter-ceph-7
87a65a93a7e8  quay.io/ceph/ceph@sha256:7c69e59beaeea61ca714e71cb84ff6d5e533db7f1fd84143dd9ba6649a5fd2ec  -n client.crash.c...  3 hours ago  Up 3 hours              ceph-8ea7ba22-ac21-11f0-b2c2-525400e13a2b-crash-ceph-7
138a1a3f1661  quay.io/prometheus/prometheus:v2.51.0                                                      --config.file=/et...  3 hours ago  Up 3 hours  9090/tcp    ceph-8ea7ba22-ac21-11f0-b2c2-525400e13a2b-prometheus-ceph-7
9f1c39b13add  quay.io/ceph/ceph@sha256:7c69e59beaeea61ca714e71cb84ff6d5e533db7f1fd84143dd9ba6649a5fd2ec  -n osd.2 -f --set...  3 hours ago  Up 3 hours              ceph-8ea7ba22-ac21-11f0-b2c2-525400e13a2b-osd-2

&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;&lt;code&gt;ceph-8&lt;/code&gt;起的容器&lt;/h4&gt;
&lt;pre&gt;&lt;code&gt;root@ceph-8:~# podman ps
CONTAINER ID  IMAGE                                                                                      COMMAND               CREATED      STATUS      PORTS       NAMES
e7c63143d5e5  quay.io/ceph/ceph@sha256:7c69e59beaeea61ca714e71cb84ff6d5e533db7f1fd84143dd9ba6649a5fd2ec  -n client.ceph-ex...  3 hours ago  Up 3 hours              ceph-8ea7ba22-ac21-11f0-b2c2-525400e13a2b-ceph-exporter-ceph-8
827ce0470b9f  quay.io/ceph/ceph@sha256:7c69e59beaeea61ca714e71cb84ff6d5e533db7f1fd84143dd9ba6649a5fd2ec  -n client.crash.c...  3 hours ago  Up 3 hours              ceph-8ea7ba22-ac21-11f0-b2c2-525400e13a2b-crash-ceph-8
ea52e1f8c1fd  quay.io/ceph/ceph@sha256:7c69e59beaeea61ca714e71cb84ff6d5e533db7f1fd84143dd9ba6649a5fd2ec  -n mgr.ceph-8.kfv...  3 hours ago  Up 3 hours              ceph-8ea7ba22-ac21-11f0-b2c2-525400e13a2b-mgr-ceph-8-kfvcoz
9cb61bec9b9c  quay.io/ceph/ceph@sha256:7c69e59beaeea61ca714e71cb84ff6d5e533db7f1fd84143dd9ba6649a5fd2ec  -n mon.ceph-8 -f ...  3 hours ago  Up 3 hours              ceph-8ea7ba22-ac21-11f0-b2c2-525400e13a2b-mon-ceph-8
741980f745ec  quay.io/prometheus/node-exporter:v1.7.0                                                    --no-collector.ti...  3 hours ago  Up 3 hours  9100/tcp    ceph-8ea7ba22-ac21-11f0-b2c2-525400e13a2b-node-exporter-ceph-8
edee9219656d  quay.io/ceph/ceph@sha256:7c69e59beaeea61ca714e71cb84ff6d5e533db7f1fd84143dd9ba6649a5fd2ec  -n osd.0 -f --set...  3 hours ago  Up 3 hours              ceph-8ea7ba22-ac21-11f0-b2c2-525400e13a2b-osd-0

&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;&lt;code&gt;ceph-9&lt;/code&gt;起的容器&lt;/h4&gt;
&lt;pre&gt;&lt;code&gt;root@ceph-9:~# podman  ps
CONTAINER ID  IMAGE                                                                                      COMMAND               CREATED      STATUS      PORTS       NAMES
014b52e4470c  quay.io/ceph/ceph@sha256:7c69e59beaeea61ca714e71cb84ff6d5e533db7f1fd84143dd9ba6649a5fd2ec  -n mds.cephfs.cep...  3 hours ago  Up 3 hours              ceph-8ea7ba22-ac21-11f0-b2c2-525400e13a2b-mds-cephfs-ceph-9-quvzuh
e86e094c6a6f  quay.io/prometheus/node-exporter:v1.7.0                                                    --no-collector.ti...  3 hours ago  Up 3 hours  9100/tcp    ceph-8ea7ba22-ac21-11f0-b2c2-525400e13a2b-node-exporter-ceph-9
44a51e3f2d4e  quay.io/ceph/ceph@sha256:7c69e59beaeea61ca714e71cb84ff6d5e533db7f1fd84143dd9ba6649a5fd2ec  -n client.ceph-ex...  3 hours ago  Up 3 hours              ceph-8ea7ba22-ac21-11f0-b2c2-525400e13a2b-ceph-exporter-ceph-9
c0041f22227c  quay.io/ceph/ceph@sha256:7c69e59beaeea61ca714e71cb84ff6d5e533db7f1fd84143dd9ba6649a5fd2ec  -n client.crash.c...  3 hours ago  Up 3 hours              ceph-8ea7ba22-ac21-11f0-b2c2-525400e13a2b-crash-ceph-9
1f0b31944fa4  quay.io/ceph/ceph@sha256:7c69e59beaeea61ca714e71cb84ff6d5e533db7f1fd84143dd9ba6649a5fd2ec  -n mon.ceph-9 -f ...  3 hours ago  Up 3 hours              ceph-8ea7ba22-ac21-11f0-b2c2-525400e13a2b-mon-ceph-9
46ee87c8d3fe  quay.io/ceph/ceph@sha256:7c69e59beaeea61ca714e71cb84ff6d5e533db7f1fd84143dd9ba6649a5fd2ec  -n osd.1 -f --set...  3 hours ago  Up 3 hours              ceph-8ea7ba22-ac21-11f0-b2c2-525400e13a2b-osd-1
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;参考资料&lt;/h3&gt;
&lt;h4&gt;网络文档&lt;/h4&gt;
&lt;blockquote&gt;
&lt;p&gt;Ceph介绍&lt;/p&gt;
&lt;p&gt;https://docs.ceph.com/en/reef/start/&lt;/p&gt;
&lt;/blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;Ceph安装&lt;/p&gt;
&lt;p&gt;https://docs.ceph.com/en/reef/cephadm/install/#cephadm-deploying-new-cluster&lt;/p&gt;
&lt;/blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;stackoverflow&lt;/p&gt;
&lt;p&gt;https://stackoverflow.com/questions/45012905/removing-pool-mon-allow-pool-delete-config-option-to-true-before-you-can-destro&lt;/p&gt;
&lt;/blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;4.12. 使用命令行界面删除 Ceph 文件系统&lt;/p&gt;
&lt;p&gt;https://docs.redhat.com/zh-cn/documentation/red_hat_ceph_storage/4/html/file_system_guide/removing-a-ceph-file-system-using-the-command-line-interface_fs&lt;/p&gt;
&lt;/blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;3.23. 清除 Ceph 存储集群&lt;/p&gt;
&lt;p&gt;https://docs.redhat.com/zh-cn/documentation/red_hat_ceph_storage/5/html/installation_guide/purging-the-ceph-storage-cluster_install&lt;/p&gt;
&lt;/blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;Rocky Linux - USTC Mirror Help&lt;/p&gt;
&lt;p&gt;https://mirrors.ustc.edu.cn/help/rocky.html&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h4&gt;网络视频&lt;/h4&gt;
&lt;p&gt;&amp;lt;iframe  width=&quot;100%&quot; height=&quot;720&quot; src=&quot;//player.bilibili.com/player.html?bvid=BV1iAxezzE1k&amp;amp;autoplay=no scrolling=&quot;no&quot; border=&quot;0&quot; frameborder=&quot;no&quot; framespacing=&quot;0&quot; allowfullscreen=&quot;true&quot; autoplay=&quot;no&quot;&amp;gt;&amp;lt;/iframe&amp;gt;&lt;/p&gt;
</content:encoded></item><item><title>KVM-QEMU-Libvirt安装记录</title><link>https://v0nl1.com/posts/kvm-qemu/</link><guid isPermaLink="true">https://v0nl1.com/posts/kvm-qemu/</guid><description>个人安装kvm、qemu笔记，仅供参考</description><pubDate>Tue, 14 Oct 2025 00:00:00 GMT</pubDate><content:encoded>&lt;h3&gt;软件介绍&lt;/h3&gt;
&lt;p&gt;&lt;a href=&quot;https://wiki.archlinuxcn.org/wiki/KVM&quot;&gt;KVM&lt;/a&gt;(Kernel-based Virtual Machine)&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;是Linux内核中的一个虚拟化模块，基于CPU硬件虚拟化。&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;a href=&quot;https://wiki.archlinuxcn.org/wiki/QEMU&quot;&gt;QEMU&lt;/a&gt; (Quick Emulator)&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;提供了完整的虚拟化功能，包括硬件设备的模拟、虚拟机的启动和管理等&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;a href=&quot;https://wiki.archlinuxcn.org/wiki/Libvirt&quot;&gt;Libvirt&lt;/a&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;一个用于虚拟化管理的开源 API、守护进程和工具集。
&lt;ul&gt;
&lt;li&gt;提供命令行工具（如 &lt;code&gt;virsh&lt;/code&gt;）或者图形用户界面（如 &lt;code&gt;virt-manager&lt;/code&gt;）来管理虚拟化资源&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;前期工作&lt;/h3&gt;
&lt;p&gt;电脑主板中开启cpu虚拟化支持，不懂自己去🔍&lt;/p&gt;
&lt;h3&gt;安装软件包&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;# 更新软件源
sudo pacman -Syy

# 安装软件包
sudo pacman -S qemu-full qemu-emulators-full virt-manager dnsmasq vde2 bridge-utils libvirt
&lt;/code&gt;&lt;/pre&gt;
&lt;ul&gt;
&lt;li&gt;vde2： 一个虚拟化的网络交换机&lt;/li&gt;
&lt;li&gt;bridge-utils： 网络配置工具&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;配置操作&lt;/h3&gt;
&lt;h4&gt;libvirt用户组&lt;/h4&gt;
&lt;pre&gt;&lt;code&gt;# 将用户加入libvirt组，但有一些virsh net命令还是需要sudo执行
# 我为了省事配置了bash alias； alias virsh=&apos;sudo virsh&apos;
sudo usermod -aG libvirt $USER
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;配置libvirtd服务自启动&lt;/h4&gt;
&lt;pre&gt;&lt;code&gt;sudo systemctl enable --now  libvirtd.service
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;配置nat网络和仅主机网络&lt;/h4&gt;
&lt;p&gt;qemu网络配置文件路径：&lt;code&gt;/etc/libvirt/qemu/networks/&lt;/code&gt;&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;[lee@Arch-8845 ~]$ tree /etc/libvirt/qemu/networks/
/etc/libvirt/qemu/networks/
├── autostart
│   ├── default.xml -&amp;gt; /etc/libvirt/qemu/networks/default.xml
│   └── host-only.xml -&amp;gt; /etc/libvirt/qemu/networks/host-only.xml
├── default.xml
└── host-only.xml

2 directories, 4 files
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;地址规划：&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;192.168.100.0/24 为仅主机网络&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;192.168.200.0/24 为NAT网络&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;配置&lt;code&gt;default(NAT)&lt;/code&gt; 网络&lt;/strong&gt;&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;# 配置私网网段
sudo  EDITOR=vim virsh net-edit default
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;&lt;strong&gt;配置 &lt;code&gt;host-only&lt;/code&gt; 仅主机网络&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;思路：将default.xml文件复制一份，命名为host-only.xml，编辑host-only.xml，&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;修改forward块，mode=&quot;none&quot;；&lt;/li&gt;
&lt;li&gt;删除uuid块&lt;/li&gt;
&lt;li&gt;删除mac address块&lt;/li&gt;
&lt;/ul&gt;
&lt;pre&gt;&lt;code&gt;[lee@Arch-8845 ~]$ sudo virsh net-define /etc/libvirt/qemu/networks/host-only.xml
从 /etc/libvirt/qemu/networks/host-only.xml定义网络host-only

[lee@Arch-8845 ~]$sudo virsh net-start host-only
网络 host-only 已开始

[lee@Arch-8845 ~]$ sudo virsh net-autostart host-only
网络host-only标记为自动启动
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;结果如下&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;[lee@Arch-8845 ~]$ virsh net-dumpxml default
&amp;lt;network&amp;gt;
  &amp;lt;name&amp;gt;default&amp;lt;/name&amp;gt;
  &amp;lt;uuid&amp;gt;c74f4b4a-2993-4cfa-aeec-bb7024026587&amp;lt;/uuid&amp;gt;
  &amp;lt;forward mode=&apos;nat&apos;&amp;gt;
    &amp;lt;nat&amp;gt;
      &amp;lt;port start=&apos;1024&apos; end=&apos;65535&apos;/&amp;gt;
    &amp;lt;/nat&amp;gt;
  &amp;lt;/forward&amp;gt;
  &amp;lt;bridge name=&apos;virbr1&apos; stp=&apos;on&apos; delay=&apos;0&apos;/&amp;gt;
  &amp;lt;mac address=&apos;aa:bb:cc:dd:ee:ff&apos;/&amp;gt;
  &amp;lt;ip address=&apos;192.168.200.1&apos; netmask=&apos;255.255.255.0&apos;&amp;gt;
    &amp;lt;dhcp&amp;gt;
      &amp;lt;range start=&apos;192.168.200.2&apos; end=&apos;192.168.200.254&apos;/&amp;gt;
    &amp;lt;/dhcp&amp;gt;
  &amp;lt;/ip&amp;gt;
&amp;lt;/network&amp;gt;

[lee@Arch-8845 ~]$ virsh net-dumpxml host-only
&amp;lt;network&amp;gt;
  &amp;lt;name&amp;gt;host-only&amp;lt;/name&amp;gt;
  &amp;lt;uuid&amp;gt;b428106d-8deb-4b09-a201-8fc672309877&amp;lt;/uuid&amp;gt;
  &amp;lt;bridge name=&apos;virbr0&apos; stp=&apos;on&apos; delay=&apos;0&apos;/&amp;gt;
  &amp;lt;mac address=&apos;ff:ee:dd:cc:bb:aa&apos;/&amp;gt;
  &amp;lt;ip address=&apos;192.168.100.1&apos; netmask=&apos;255.255.255.0&apos;&amp;gt;
    &amp;lt;dhcp&amp;gt;
      &amp;lt;range start=&apos;192.168.100.2&apos; end=&apos;192.168.100.254&apos;/&amp;gt;
    &amp;lt;/dhcp&amp;gt;
  &amp;lt;/ip&amp;gt;
&amp;lt;/network&amp;gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;配置libvirt防火墙后端&lt;/h4&gt;
&lt;p&gt;现在新的firewalld默认使用nftables作为后端，libvirt默认配置的防火墙后端是iptables，这里需要修改一下&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;firewall_backend = &quot;nftables&quot;
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;配置主机防火墙&lt;/h4&gt;
&lt;p&gt;这块主要是允许NAT网络地址段允许KVM虚拟机访问宿主机的服务如DNS，科学等工具&lt;/p&gt;
&lt;p&gt;这里网段根据你自己的设置修改&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;sudo firewall-cmd --permanent --zone=public --add-source=192.168.200.0/24
sudo firewall-cmd --permanent --zone=public --add-rich-rule=&apos;rule family=&quot;ipv4&quot; source address=&quot;192.168.200.0/24&quot; accept&apos;
sudo firewall-cmd --reload
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;设置网络自启动&lt;/h4&gt;
&lt;pre&gt;&lt;code&gt;sudo virsh net-autostart default
sudo virsh net-autostart host-only
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;重启libvirtd服务&lt;/h4&gt;
&lt;pre&gt;&lt;code&gt;sudo systemctl restart libvirtd.service
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;后续的相关学习视频&lt;/h3&gt;
&lt;h4&gt;了解virsh命令&lt;/h4&gt;
&lt;p&gt;这个UP主可以关注一下，浪潮的大佬&lt;/p&gt;
&lt;p&gt;&amp;lt;iframe  width=&quot;100%&quot; height=&quot;720&quot; src=&quot;//player.bilibili.com/player.html?bvid=BV1K44y1M74U&amp;amp;autoplay=no scrolling=&quot;no&quot; border=&quot;0&quot; frameborder=&quot;no&quot; framespacing=&quot;0&quot; allowfullscreen=&quot;true&quot; autoplay=&quot;no&quot;&amp;gt;&amp;lt;/iframe&amp;gt;&lt;/p&gt;
&lt;h4&gt;KVM+VirGL 在 Windows 11 虚拟机中开启图形加速！🔥&lt;/h4&gt;
&lt;p&gt;&amp;lt;iframe  width=&quot;100%&quot; height=&quot;720&quot; src=&quot;//player.bilibili.com/player.html?bvid=BV15CgWzqEBd&amp;amp;autoplay=no scrolling=&quot;no&quot; border=&quot;0&quot; frameborder=&quot;no&quot; framespacing=&quot;0&quot; allowfullscreen=&quot;true&quot; autoplay=&quot;no&quot;&amp;gt;&amp;lt;/iframe&amp;gt;&lt;/p&gt;
</content:encoded></item><item><title>rhce-writeup</title><link>https://v0nl1.com/posts/rhce-writeup/</link><guid isPermaLink="true">https://v0nl1.com/posts/rhce-writeup/</guid><description>RHCSA,RHCE考试内容和通关的一些心得</description><pubDate>Sun, 28 Sep 2025 00:00:00 GMT</pubDate><content:encoded>&lt;h1&gt;考试基础信息&lt;/h1&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;/th&gt;
&lt;th&gt;RHCSA（系统管理员）&lt;/th&gt;
&lt;th&gt;RHCE（工程师）&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;全称&lt;/td&gt;
&lt;td&gt;Red Hat Certified System Administrator&lt;/td&gt;
&lt;td&gt;Red Hat Certified Engineer&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;难度定位&lt;/td&gt;
&lt;td&gt;入门级 / 基础认证&lt;/td&gt;
&lt;td&gt;中高级 / 进阶认证&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;前置要求&lt;/td&gt;
&lt;td&gt;无&lt;/td&gt;
&lt;td&gt;必须先取得 RHCSA 证书&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;考试重点&lt;/td&gt;
&lt;td&gt;Linux 基础运维与系统管理&lt;/td&gt;
&lt;td&gt;自动化运维（Ansible） + 企业级服务管理&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;报名方式&lt;/td&gt;
&lt;td&gt;红帽合作培训机构&lt;/td&gt;
&lt;td&gt;红帽合作培训机构&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;考试编号&lt;/td&gt;
&lt;td&gt;EX200&lt;/td&gt;
&lt;td&gt;EX294&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;考试时间&lt;/td&gt;
&lt;td&gt;3小时&lt;/td&gt;
&lt;td&gt;4小时&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;满分&lt;/td&gt;
&lt;td&gt;300分&lt;/td&gt;
&lt;td&gt;300分&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;及格分数&lt;/td&gt;
&lt;td&gt;210分&lt;/td&gt;
&lt;td&gt;210分&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;我的考试分数&lt;/td&gt;
&lt;td&gt;255分&lt;/td&gt;
&lt;td&gt;267分&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;证书有限期&lt;/td&gt;
&lt;td&gt;3年&lt;/td&gt;
&lt;td&gt;3年&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;证书领取方式&lt;/td&gt;
&lt;td&gt;电子证书，credly官网绑定Certifacation ID&lt;/td&gt;
&lt;td&gt;电子证书，credly官网绑定Certifacation ID&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;hr /&gt;
&lt;h1&gt;RHCSA&lt;/h1&gt;
&lt;h2&gt;考察内容：&lt;/h2&gt;
&lt;h3&gt;网络和主机名&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;nmcli&lt;/li&gt;
&lt;li&gt;hostnamectl&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;SSH&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;/etc/ssh/sshd_config&lt;/li&gt;
&lt;li&gt;root远程登录&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;软件源：&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;dnf 添加yum.repository&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;selinux&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;semanager
&lt;ul&gt;
&lt;li&gt;port&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;file security context&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;用户帐户&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;useradd
&lt;ul&gt;
&lt;li&gt;-G 附属组&lt;/li&gt;
&lt;li&gt;-u 指定uuid&lt;/li&gt;
&lt;li&gt;-s 指定shell&lt;/li&gt;
&lt;li&gt;-m 家目录&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;sudouers&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;wheel组&lt;/li&gt;
&lt;li&gt;/etc/sudoers&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;目录&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;mkdir 创建目录&lt;/li&gt;
&lt;li&gt;chmod 权限&lt;/li&gt;
&lt;li&gt;chown 属组&lt;/li&gt;
&lt;li&gt;特殊权限位
&lt;ul&gt;
&lt;li&gt;u=s 4&lt;/li&gt;
&lt;li&gt;g=s 2&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;定时任务&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;cronjob
&lt;ul&gt;
&lt;li&gt;-e&lt;/li&gt;
&lt;li&gt;-u 指定用户&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;NTP时间同步&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;chronyd&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;配置autofs&lt;/h3&gt;
&lt;h3&gt;查找文件&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;find
&lt;ul&gt;
&lt;li&gt;-type&lt;/li&gt;
&lt;li&gt;-user&lt;/li&gt;
&lt;li&gt;-perm&lt;/li&gt;
&lt;li&gt;-exec cp -a {}&lt;/li&gt;
&lt;li&gt;-eo 输出内容
&lt;ul&gt;
&lt;li&gt;user&lt;/li&gt;
&lt;li&gt;pid&lt;/li&gt;
&lt;li&gt;vsz&lt;/li&gt;
&lt;li&gt;rsz&lt;/li&gt;
&lt;li&gt;+%cpu&lt;/li&gt;
&lt;li&gt;-sort&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;过滤文件&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;grep&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;容器&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;podman
&lt;ul&gt;
&lt;li&gt;优点：不需要root权限执行，更安全；更方便将容器导出为systemd、kubernetes服务&lt;/li&gt;
&lt;li&gt;缺点，运行在用户级别，如果用户帐户无登录启动，容器就起不来&lt;/li&gt;
&lt;li&gt;build&lt;/li&gt;
&lt;li&gt;run&lt;/li&gt;
&lt;li&gt;generate 生成systemd服务&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;loginctl
&lt;ul&gt;
&lt;li&gt;linger&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;救援模式重置root密码&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;rw rd.break&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;逻辑卷LVM&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;扩展逻辑卷
&lt;ul&gt;
&lt;li&gt;lvextend&lt;/li&gt;
&lt;li&gt;resize2fs/xfs_growfs&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;创建逻辑卷
&lt;ul&gt;
&lt;li&gt;pvcreate&lt;/li&gt;
&lt;li&gt;vgcreate&lt;/li&gt;
&lt;li&gt;lvcreate&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;交换分区&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;cfdisk 划分磁盘&lt;/li&gt;
&lt;li&gt;mkswap 格式化&lt;/li&gt;
&lt;li&gt;swapon 挂载分区&lt;/li&gt;
&lt;li&gt;修改/etc/fstab&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;系统调优&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;tuned
&lt;ul&gt;
&lt;li&gt;active&lt;/li&gt;
&lt;li&gt;recommend&lt;/li&gt;
&lt;li&gt;profile&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;hr /&gt;
&lt;h1&gt;RHCE&lt;/h1&gt;
&lt;h2&gt;额外知识&lt;/h2&gt;
&lt;h3&gt;VIM编辑器&lt;/h3&gt;
&lt;p&gt;&lt;strong&gt;进阶操作&lt;/strong&gt;&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;键盘输入&lt;/th&gt;
&lt;th&gt;效果&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;~/.vimrc&lt;/td&gt;
&lt;td&gt;一些vim配置&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;cw&lt;/td&gt;
&lt;td&gt;change word 修改一个英文单词&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;数字+dd/yy&lt;/td&gt;
&lt;td&gt;剪切/复制[数字]行字母&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;p&lt;/td&gt;
&lt;td&gt;粘贴&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;/&lt;/td&gt;
&lt;td&gt;搜索&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;o&lt;/td&gt;
&lt;td&gt;下一行插入&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;set nu&lt;/td&gt;
&lt;td&gt;显示行数，方便排错&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;还有很多技巧，自己上B站找视频学习去&lt;/p&gt;
&lt;h2&gt;ansible考察内容：&lt;/h2&gt;
&lt;h3&gt;ansible.cfg&lt;/h3&gt;
&lt;p&gt;环境目录&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;roles&lt;/li&gt;
&lt;li&gt;collections&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;角色：&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;become&lt;/li&gt;
&lt;li&gt;remote_user&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;安全&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;host_key_checking&lt;/li&gt;
&lt;li&gt;vault_password_file&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;主机文件&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;inventory&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;软件源&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;yum_repository角色&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;安装软件包&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;dnf&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;使用rhel系统角色&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;sudo dnf install rhel-system-roles -y&lt;/li&gt;
&lt;li&gt;selinux&lt;/li&gt;
&lt;li&gt;timesync&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;galaxy安装角色&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;ansible-galaxy install&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;创建角色和使用角色&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;ansible-galaxy role init&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;创建分区/逻辑卷&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;lvol&lt;/li&gt;
&lt;li&gt;parted&lt;/li&gt;
&lt;li&gt;filesystem&lt;/li&gt;
&lt;li&gt;mount&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;生成主机文件&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;template&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;修改/生成文件内容&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;copy
&lt;ul&gt;
&lt;li&gt;content&lt;/li&gt;
&lt;li&gt;dest&lt;/li&gt;
&lt;li&gt;setype&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;生成硬件报告&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;lineinfile
&lt;ul&gt;
&lt;li&gt;path&lt;/li&gt;
&lt;li&gt;regexp&lt;/li&gt;
&lt;li&gt;line&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;ansible [hostname] -m setup 查看ansible vars&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;创建密码库/更新密钥&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;ansible-vault create&lt;/li&gt;
&lt;li&gt;ansible-vault rekey&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;创建用户&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;user&lt;/li&gt;
&lt;li&gt;group&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;配置定时任务&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;cron&lt;/li&gt;
&lt;/ul&gt;
&lt;hr /&gt;
&lt;h1&gt;结语&lt;/h1&gt;
&lt;p&gt;RHCSA就是纯基础，没啥说的&lt;/p&gt;
&lt;p&gt;RHCE多用ansible-doc看角色手册，另外就是ansible [host] -m setup 看ansible变量，别的没了&lt;/p&gt;
&lt;p&gt;题刷几遍理解就过了&lt;/p&gt;
</content:encoded></item><item><title>自用Github项目推荐(持续更新)</title><link>https://v0nl1.com/posts/githug-repo-recommand/</link><guid isPermaLink="true">https://v0nl1.com/posts/githug-repo-recommand/</guid><description>一些自用的Github项目推荐</description><pubDate>Thu, 18 Sep 2025 00:00:00 GMT</pubDate><content:encoded>&lt;h1&gt;Windows 工具&lt;/h1&gt;
&lt;h2&gt;Windows系统激活&lt;/h2&gt;
&lt;p&gt;::github{repo=&quot;massgravel/Microsoft-Activation-Scripts&quot;}&lt;/p&gt;
&lt;h2&gt;Powertoys&lt;/h2&gt;
&lt;p&gt;::github{repo=&quot;microsoft/PowerToys&quot;}&lt;/p&gt;
&lt;p&gt;微软工具集合，推荐安装&lt;/p&gt;
&lt;h2&gt;vscode&lt;/h2&gt;
&lt;p&gt;::github{repo=&quot;microsoft/vscode&quot;}&lt;/p&gt;
&lt;h2&gt;终端&lt;/h2&gt;
&lt;p&gt;::github{repo=&quot;microsoft/terminal&quot;}&lt;/p&gt;
&lt;h2&gt;包管理器&lt;/h2&gt;
&lt;p&gt;::github{repo=&quot;microsoft/winget-cli&quot;}&lt;/p&gt;
&lt;p&gt;通过winget安装后基本不用考虑环境变量问题&lt;/p&gt;
&lt;h2&gt;LTSC系统安装Store商店&lt;/h2&gt;
&lt;p&gt;::github{repo=&quot;R-YaTian/LTSC-Add-MicrosoftStore-2021_2024&quot;}&lt;/p&gt;
&lt;h2&gt;DirectX修复工具&lt;/h2&gt;
&lt;p&gt;虽然这个工具不是在github上，但是还是要推荐一下，Windows LTSC系统必备&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;工具作者：VBcom&lt;/p&gt;
&lt;p&gt;作者网站：https://www.zysoftware.top&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h3&gt;增强版&lt;/h3&gt;
&lt;p&gt;下载地址：https://zhangyue667.lanzouh.com/DirectXRepairEnhanced&lt;/p&gt;
&lt;p&gt;校验码:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;MD5：&lt;code&gt;e1e4806aa5585b379c32751702600e35&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;SHA256：&lt;code&gt;83f322c14b23b30e2d7afe8f0330bd3980b20068e7f453f5f13d23d74de7ed54&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;a href=&quot;https://www.zysoftware.top/post/10.html&quot;&gt;DirectX修复工具增强版&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h2&gt;Termora&lt;/h2&gt;
&lt;p&gt;::github{repo=&quot;TermoraDev/termora&quot;}&lt;/p&gt;
&lt;p&gt;跨平台SSH客户端，支持通过Github Gist同步&lt;/p&gt;
&lt;h1&gt;BT&lt;/h1&gt;
&lt;h2&gt;Motrix 下载器&lt;/h2&gt;
&lt;p&gt;::github{repo=&quot;agalwood/Motrix&quot;}&lt;/p&gt;
&lt;h2&gt;追踪列表&lt;/h2&gt;
&lt;p&gt;::github{repo=&quot;XIU2/TrackersListCollection&quot;}&lt;/p&gt;
&lt;h1&gt;Docker自部署项目&lt;/h1&gt;
&lt;h2&gt;AFFINE笔记&lt;/h2&gt;
&lt;p&gt;::github{repo=&quot;toeverything/AFFiNE&quot;}&lt;/p&gt;
&lt;p&gt;一个团队笔记软件，支持自部署，支持Web，我现在正在用的笔记软件&lt;/p&gt;
&lt;p&gt;自部署内存占用也不大&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;CONTAINER ID   NAME              CPU %     MEM USAGE / LIMIT     MEM %     NET I/O          BLOCK I/O        PIDS 
xxxxxxxxxxxx   affine_server     0.07%     358.5MiB / 9.706GiB   3.61%     78.5MB / 241MB   0B / 57.3kB      22 
xxxxxxxxxxxx   affine_redis      0.43%     12.26MiB / 9.706GiB   0.12%     180MB / 51MB     0B / 107MB       6
xxxxxxxxxxxx   affine_postgres   0.00%     45.27MiB / 9.706GiB   0.46%     11.3MB / 12MB    32.8kB / 287kB   17
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;Wallos记账&lt;/h2&gt;
&lt;p&gt;::github{repo=&quot;ellite/Wallos&quot;}&lt;/p&gt;
&lt;p&gt;可自部署，内存占用很少&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;CONTAINER ID   NAME      CPU %     MEM USAGE / LIMIT     MEM %     NET I/O          BLOCK I/O    PIDS 
xxxxxxxxxxxx   wallos    0.01%     21.05MiB / 9.706GiB   0.21%     251kB / 1.03MB   0B / 238kB   8 
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;it-tools&lt;/h2&gt;
&lt;p&gt;::github{repo=&quot;CorentinTh/it-tools&quot;}&lt;/p&gt;
&lt;p&gt;一些工具合集，内存占用很低，真的很低&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;CONTAINER ID   NAME       CPU %     MEM USAGE / LIMIT     MEM %     NET I/O           BLOCK I/O    PIDS 
xxxxxxxxxxxx   it-tools   0.00%     5.145MiB / 9.706GiB   0.05%     20.7kB / 50.9kB   0B / 4.1kB   6
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;lsky-pro 图床&lt;/h2&gt;
&lt;p&gt;::github{repo=&quot;lsky-org/lsky-pro&quot;}&lt;/p&gt;
&lt;h2&gt;openlist&lt;/h2&gt;
&lt;p&gt;::github{repo=&quot;OpenListTeam/OpenList&quot;}&lt;/p&gt;
&lt;p&gt;alist项目被卖后，一个社区开源版&lt;/p&gt;
&lt;h1&gt;VPS 常用脚本&lt;/h1&gt;
&lt;h2&gt;VPS DD工具&lt;/h2&gt;
&lt;p&gt;::github{repo=&quot;bin456789/reinstall&quot;}&lt;/p&gt;
&lt;h2&gt;VPS2ARCH&lt;/h2&gt;
&lt;p&gt;::github{repo=&quot;felixonmars/vps2arch&quot;}&lt;/p&gt;
&lt;p&gt;一个将vps系统DD成&lt;code&gt;archlinux&lt;/code&gt;的脚本&lt;/p&gt;
&lt;h2&gt;YABS跑分&lt;/h2&gt;
&lt;p&gt;::github{repo=&quot;masonr/yet-another-bench-script&quot;}&lt;/p&gt;
&lt;h2&gt;融合怪测试&lt;/h2&gt;
&lt;p&gt;::github{repo=&quot;spiritLHLS/ecs&quot;}&lt;/p&gt;
&lt;h2&gt;Nexttrace&lt;/h2&gt;
&lt;p&gt;::github{repo=&quot;nxtrace/NTrace-core&quot;}&lt;/p&gt;
&lt;p&gt;查看VPS去程/回程的CLI工具&lt;/p&gt;
&lt;h2&gt;流媒体测试&lt;/h2&gt;
&lt;p&gt;::github{repo=&quot;lmc999/RegionRestrictionCheck&quot;}&lt;/p&gt;
&lt;h1&gt;路由系统&lt;/h1&gt;
&lt;h2&gt;RouterOS破解&lt;/h2&gt;
&lt;p&gt;::github{repo=&quot;elseif/MikroTikPatch&quot;}&lt;/p&gt;
&lt;p&gt;RouterOS是一个路由器系统，软路由上用的多一点，使用winbox图形界面配置&lt;/p&gt;
&lt;p&gt;虽然我已经买了CHR的PU授权，对于没买授权的可以试一下这个破解项目，或者使用下边的项目&lt;/p&gt;
&lt;h2&gt;Vyos&lt;/h2&gt;
&lt;p&gt;::github{repo=&quot;vyos/vyos-nightly-build&quot;}&lt;/p&gt;
&lt;p&gt;一个基于debian的路由器系统，滚动更新版免费，LTS版本付费，纯命令行手动配置&lt;/p&gt;
</content:encoded></item></channel></rss>