SetIpForwardEntry2 - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// netioapi.h

NETIOAPI_API SetIpForwardEntry2(
  _In_ const MIB_IPFORWARD_ROW2 *Route
);
View the official Windows hardware development documentation

NtDoc

No description available.

Windows hardware development documentation (setipforwardentry2)

SetIpForwardEntry2 function

The SetIpForwardEntry2 function sets the properties of an IP route entry on a local computer.

Parameters

Return value

SetIpForwardEntry2 returns STATUS_SUCCESS if the function succeeds.

If the function fails, SetIpForwardEntry2 returns one of the following error codes:

Return code Description
STATUS_INVALID_PARAMETER An invalid parameter was passed to the function. This error is returned if a NULL pointer is passed in the Route parameter, the DestinationPrefix member of the MIB_IPFORWARD_ROW2 structure that the Route parameter points to was not specified, the NextHop member of the MIB_IPFORWARD_ROW2 structure was not specified, or both InterfaceLuid and InterfaceIndex members of the MIB_IPFORWARD_ROW2 structure were unspecified.
STATUS_NOT_FOUND The specified interface could not be found. This error is returned if the function cannot find the network interface that is specified by the InterfaceLuid or InterfaceIndex member of the MIB_IPFORWARD_ROW2 structure that the Route parameter points to.
Other Use the FormatMessage function to obtain the message string for the returned error.

Remarks

The SetIpForwardEntry2 function is used to set the properties for an existing IP route entry on a local computer.

Your driver must initialize the following members of the MIB_IPFORWARD_ROW2 structure that the Row parameter points to.

The route metric offset that is specified in the Metric member of the MIB_IPFORWARD_ROW2 structure that Route parameter points to represents only part of the complete route metric. The complete metric is a combination of this route metric offset added to the interface metric that is specified in the Metric member of the MIB_IPINTERFACE_ROW structure of the associated interface. A driver can retrieve the interface metric by calling the GetIpInterfaceEntry function.

SetIpForwardEntry2 ignores the Age and Origin members of the MIB_IPFORWARD_ROW2 structure that the Row parameter points to. These members are set by the network stack and cannot be changed by using the SetIpForwardEntry2 function.

The SetIpForwardEntry2 function fails if the DestinationPrefix and NextHop members of the MIB_IPFORWARD_ROW2 structure that the Route parameter points to do not match an IP route entry on the specified interface.

Requirements

Target platform Universal
Version Available in Windows Vista and later versions of the Windows operating systems.
Header Netioapi.h (include Netioapi.h)
Library Netio.lib
IRQL < DISPATCH_LEVEL

See also

CreateIpForwardEntry2

DeleteIpForwardEntry2

GetBestRoute2

GetIpForwardEntry2

GetIpForwardTable2

GetIpInterfaceEntry

InitializeIpForwardEntry

MIB_IPFORWARD_ROW2

MIB_IPFORWARD_TABLE2

MIB_IPINTERFACE_ROW

NotifyRouteChange2