- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是基于另一篇文章。 clone vm change network identity
我在构建虚拟机时需要设置 IPv6 地址。我找到了属性,但它不允许我设置值。
$FirstNic.Adapter.IpV6Spec = New-Object VMware.Vim.CustomizationIPSettingsIpV6AddressSpec
$FirstNic.Adapter.IpV6Spec.Ip = New-Object VMware.Vim.CustomizationFixedIpV6
$FirstNic.Adapter.IpV6Spec.Ip.IpAddress = "::1"
The property 'IpAddress' cannot be found on this object. Verify that the property exists and can be set. At line:33 char:4 + $FirstNic.Adapter.IpV6Spec.Ip.IpAddress = "::1" + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
这是成员:类型名称:VMware.Vim.CustomizationFixedIpV6
Name MemberType Definition
---- ---------- ----------
Equals Method bool Equals(System.Object obj)
GetHashCode Method int GetHashCode()
GetType Method type GetType()
ToString Method string ToString()
DynamicProperty Property VMware.Vim.DynamicProperty[] DynamicProperty {get;set;}
DynamicType Property string DynamicType {get;set;}
IpAddress Property string IpAddress {get;set;}
SubnetMask Property int SubnetMask {get;set;}
最佳答案
快速测试表明,直接在 VMware.Vim.CustomizationFixedIpV6
上设置该属性似乎有效。之后将其分配给 VMware.Vim.CustomizationIPSettingsIpV6AddressSpec
对象似乎也有效。
> $ip = New-Object vmware.vim.customizationfixedipv6
> $ip.IpAddress = "::1"
> $ipv6spec = new-object vmware.vim.customizationipsettingsipv6addressspec
> $ipv6spec.ip = $ip
> $ipv6spec.ip.ipaddress
::1
> $ipv6spec.ip.ipaddress = "::2"
Property 'ipaddress' cannot be found on this object; make sure it exists and is settable
At line:1 char:1
+ $ipv6spec.ip.ipaddress = "::2"
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : InvalidOperation: (:) [], RuntimeException
+ FullyQualifiedErrorId : PropertyAssignmentException
但是,VMware.Vim.CustomizationIPSettingsIpV6AddressSpec
的 Ip
属性似乎没有 VMware.Vim.CustomizationFixedIpV6
作为其类型。它有 VMware.Vim.CustomizationIpV6Generator
。
所以我想知道这是否是类型规范/继承/等等。问题。
关于powershell - VMware VIM IPv6,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27986035/
目前部署在 Kubernetes 中的服务,通过 Calico BGP 将 Service 与集群外网络打通,并在外部的 nginx 中配置 Service 地址对外进行服务暴露。经过一段时间的观察
如发现here , 有一种新的 kube 服务是 IPVS 并且有很多负载均衡算法。 唯一的问题是我没有找到指定这些算法的位置。 我的理解: rr:循环法->循环调用后端pod lc:最少连接-> 将
我想尝试这种新的代理模式以及它为我们的一些应用程序提供的各种调度程序。到目前为止,我一直无法找到更改默认模式的方法 iptables至 ipvs在 GKE 节点上。 每个人都说通过--proxy-mo
我想在现有集群中为 IPVS 启用 Kube-proxy 模式。目前,它在 IPtables 上运行。如何在不影响现有工作负载的情况下将其更改为 IPVS? 我已经安装了所有必需的模块来启用它。另外,
我正在开发的应用程序作为 Kubernetes 集群中的部署运行。为此部署创建的 Pod 分布在集群中的各个节点上。我们的应用程序一次只能处理一个 TCP 连接,并且会拒绝进一步的连接。目前,我们使用
我是一名优秀的程序员,十分优秀!