Interface (microsoft-windows-tcpip-interfaces-interface)
Interface
には、TCP/IP インターフェイスの設定が含まれます。
TCP/IP 設定は、グローバル設定とインターフェイス設定という 2 つのプライマリ グループに分けることができます。 グローバル設定はプロトコル全体に適用され、すべてのネットワーク インターフェイスで適用されます。 インターフェイス設定は、特定のネットワーク インターフェイスに固有の設定です。
Note
Interface の設定は、Ipv4Settings、Ipv6Settings、Identifier、UnicastIpAddresses、Routes の順に追加する必要があります。 Windows SIM に無人セットアップ ファイルを保存した後、次の XML 例に示すように、出力が正しい順序で表示されていることを XML ファイルで確認します。
子要素
設定 | 説明 |
---|---|
識別子 | Interface 内の他の設定に適用するインターフェイスを指定します。 |
Ipv4Settings | IP バージョン 4 インターフェイスの設定を指定します。 |
Ipv6Settings | IP バージョン 6 インターフェイスの設定を指定します。 |
Routes | IPv4 と IPv6 のルートを指定します。 |
UnicastIpAddresses | IPv4 と IPv6 設定のユニキャスト IP アドレスを指定します。 |
有効な構成パス
specialize
windowsPE
[親階層]
Microsoft-Windows-TCPIP | Interfaces | Interface
適用対象
このコンポーネントがサポートしている Windows のエディションとアーキテクチャの一覧については、「Microsoft-Windows-TCPIP」を参照してください。
XML の例
次の XML 出力は、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>