RouterDiscoveryEnabled (Standard 8 Module Reference)

7/8/2014

Review the applicable Embedded Core modules and any examples for the RouterDiscoveryEnabled setting in Windows Embedded 8 Standard (Standard 8).

This setting specifies whether router discover is enabled for an interface.

Set to true to enable router discover; otherwise, set to false.

Modules

The following table shows the modules that you can apply this setting to. In Image Configuration Editor (ICE), you can follow the corresponding path to set this setting for a module.

Module

Path

Setting Description

TCPIP

Products/Embedded Core/TCPIP/Interfaces/Interface/Ipv4Settings/RouterDiscoveryEnabled

Specifies whether to enable Internet Control Message Protocol (ICMP) router discovery for the IPv4 protocol.

TCPIP

Products/Embedded Core/TCPIP/Interfaces/Interface/Ipv6Settings/RouterDiscoveryEnabled

Specifies whether to enable the Neighbor Discovery router discovery protocol defined in RFC 2461for the IPv6 protocol.

XML Example

The following XML example shows how to enable Neighbor Discovery and disable ICMP discovery.

<Interface wcm:action="add">
    <Ipv4Settings>
        <Metric>20</Metric>
         <RouterDiscoveryEnabled>false</RouterDiscoveryEnabled>
     </Ipv4Settings>
    <Ipv6Settings>
        <Metric>30</Metric>
         <RouterDiscoveryEnabled>true</RouterDiscoveryEnabled>
     </Ipv6Settings>
    <Identifier>123</Identifier>
</Interface>

For an example of how to configure TCP/IP interface settings, see TCPIP Settings XML Example.

See Also

Concepts

Embedded Core Settings