DhcpEnabledDhcpEnabled
DhcpEnabled
指定是否啟用 IPv6 通訊協定的動態主機設定通訊協定 (DHCP)。DhcpEnabled
specifies whether the Dynamic Host Configuration Protocol (DHCP) is enabled for the IPv6 protocol.
值Values
truetrue |
此介面上的 IPv6 通訊協定,可讓 DHCP。Enables DHCP for the IPv6 protocol on this interface. |
falsefalse |
此介面上的 IPv6 通訊協定,會停用 DHCP。Disables DHCP for the IPv6 protocol on this interface. 這是預設值。This is the default value. |
有效的設定階段Valid Configuration Passes
特製化specialize
windowsPEwindowsPE
父階層Parent Hierarchy
Microsoft-Windows-TCPIP | Interfaces | Interface | Ipv6Settings | DhcpEnabledMicrosoft-Windows-TCPIP | Interfaces | Interface | Ipv6Settings | DhcpEnabled
套用至Applies To
如需 Windows 版本與此元件支援的架構清單,請參閱Microsoft-Windows-TCPIP。For the list of the Windows editions and architectures that this component supports, see Microsoft-Windows-TCPIP.
XML 範例XML Example
下列的 XML 輸出會顯示如何設定為 TCPIP。The following XML output shows how to configure TCPIP.
<component name="Microsoft-Windows-TCPIP" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Interfaces>
<!-- Add static IP address (192.168.0.1/24, ffff:1::3/48) & route (12.34.0.0/16) to interface with identifier "Ethernet 1" --> <Interface wcm:action="add">
<Ipv4Settings>
<DhcpEnabled>true</DhcpEnabled>
<Metric>20</Metric>
<RouterDiscoveryEnabled>false</RouterDiscoveryEnabled>
</Ipv4Settings>
<Ipv6Settings>
<DhcpEnabled>false</DhcpEnabled>
<Metric>30</Metric>
<RouterDiscoveryEnabled>true</RouterDiscoveryEnabled>
</Ipv6Settings>
<Identifier>Ethernet 1</Identifier>
<UnicastIpAddresses>
<IpAddress wcm:action="add" wcm:keyValue="1">192.168.0.1/24</IpAddress>
<IpAddress wcm:action="add" wcm:keyValue="2">ffff:1::3/48</IpAddress>
</UnicastIpAddresses>
<Routes>
<Route wcm:action="add">
<Identifier>1</Identifier>
<Metric>10</Metric>
<NextHopAddress>12.34.0.0</NextHopAddress>
<Prefix>16</Prefix>
</Route>
<Route wcm:action="add">
<Identifier>10</Identifier>
<Metric>29</Metric>
<NextHopAddress>12.34.56.0</NextHopAddress>
<Prefix>24</Prefix>
</Route>
</Routes>
</Interface>
<Interface wcm:action="add">
<Ipv4Settings>
<DhcpEnabled>true</DhcpEnabled>
<Metric>20</Metric>
<RouterDiscoveryEnabled>false</RouterDiscoveryEnabled>
</Ipv4Settings>
<Ipv6Settings>
<DhcpEnabled>false</DhcpEnabled>
<Metric>10</Metric>
<RouterDiscoveryEnabled>true</RouterDiscoveryEnabled>
</Ipv6Settings>
<Identifier>Local Area Connection</Identifier>
<UnicastIpAddresses>
<IpAddress wcm:action="add" wcm:keyValue="1">123.45.67.8</IpAddress>
</UnicastIpAddresses>
<Routes>
<Route wcm:action="add">
<Identifier>1</Identifier>
<Metric>10</Metric>
<NextHopAddress>12.34.0.0</NextHopAddress>
<Prefix>16</Prefix>
</Route>
</Routes>
</Interface>
</Interfaces>
</component>