gpt4 book ai didi

azure - az vmss update 用于更新 DNS

转载 作者:行者123 更新时间:2023-12-03 02:57:34 24 4
gpt4 key购买 nike

我在 Azure 上有一个 VMSS,我需要更改它的 DNS 服务器。我已经找到了用于此目的的 Azure CLI 命令,但我无法弄清楚它的最终形式。这就是我所拥有的:

az vmss update -n myVmss --set virtualMachineProfile.networkProfile.networkInterfaceConfigurations[0].dnsSettings

我做错了什么?

最佳答案

az vmss update -n myVmss --set virtualMachineProfile.networkProfile.networkInterfaceConfigurations[0].dnsSettings='{"dnsServers":["10.0.0.5", "10.0.0.6"]}'

如果您使用--set,您需要提供整个对象。您可能需要转义双引号。

...dnsSettings="{\"dnsServers\":[\"10.0.0.5\",\"10.0.0.6\"]}"

如果 DNS 设置对象不为空,您还可以执行以下操作:

az vmss update -n myVmss --add virtualMachineProfile.networkProfile.networkInterfaceConfigurations[0].dnsSettings.dnsServers“10.0.0.5”

关于azure - az vmss update 用于更新 DNS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51679738/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com