<div class="content" name="IPX_ROUTE" uuid="05547443-377f-4578-9d2a-c9a3d88ebc3d"><p>The <b>IPX_ROUTE</b> structure MAY<a id="Appendix_A_Target_101"></a><a aria-label="Product behavior note 101" href="3bb906f0-b077-47ab-ad11-d8d807afde26#Appendix_A_101" data-linktype="relative-path">&lt;101&gt;</a> be used to specify the
details for an IPX route in the RRAS server.</p><dl>
<dd>
<div><pre> typedef struct _IPX_ROUTE {
   ULONG InterfaceIndex;
   ULONG Protocol;
   UCHAR Network[4];
   USHORT TickCount;
   USHORT HopCount;
   UCHAR NextHopMacAddress[6];
   ULONG Flags;
 } IPX_ROUTE,
  *PIPX_ROUTE;
</pre></div>
</dd></dl><p><b>InterfaceIndex: </b>The local index value for the
network interface. This index value MAY change when a network adapter is
disabled and then enabled, or under other circumstances, and need not be
persistent.</p><p><b>Protocol: </b>The protocol that added the route.
The value MUST be one of the following values.</p><dl>
<dd>
<table><thead>
  <tr>
   <th>
   <p>Value</p>
   </th>
   <th>
   <p>Meaning</p>
   </th>
  </tr>
 </thead><tbody><tr>
  <td>IPX_PROTOCOL_LOCAL 0x00000000</td>
  <td>Local route</td>
 </tr><tr>
  <td>IPX_PROTOCOL_STATIC 0x00000001</td>
  <td>Static route</td>
 </tr><tr>
  <td>IPX_PROTOCOL_RIP 0x00000002</td>
  <td>Added by RIP</td>
 </tr><tr>
  <td>IPX_PROTOCOL_NLSP 0x00000004</td>
  <td>Added by NLSP</td>
 </tr></tbody></table>
</dd></dl><p><b>Network: </b>This MUST be the 4-byte IPX network
number in hexadecimal (8 hexadecimal digits).</p><p><b>TickCount: </b>The number of ticks it takes to
reach the destination network where one tick is approximately 1/18 of a second.
This estimate is based on ongoing RIP requests and replies and is determined by
the transmission speed of network segments. LAN links are typically one tick,
and WAN links, such as a T1 link, are usually six or seven ticks. The tick
count is an estimated, not precise, measurement of the delay.</p><p><b>HopCount: </b>This MUST be the number of routers
to be traversed to get to the network number.</p><p><b>NextHopMacAddress: </b>This MUST be the 6-byte MAC
address of the <a href="fc2dfae9-0d04-4e1d-97c9-c51c2dc06c3b#gt_c626520e-7d79-4b5e-a5c9-1e2b0eaf1995" data-linktype="relative-path">next hop</a>
in hexadecimal (12 hexadecimal digits).</p><p><b>Flags: </b>Indicates the type of route being
added. It MUST be one of the following values.</p><dl>
<dd>
<table><thead>
  <tr>
   <th>
   <p>Value</p>
   </th>
   <th>
   <p>Meaning</p>
   </th>
  </tr>
 </thead><tbody><tr>
  <td>GLOBAL_WAN_ROUTE 0x00000001</td>
  <td>Global route.</td>
 </tr><tr>
  <td>DO_NOT_ADVERTISE_ROUTE 0x00000002</td>
  <td>This route is not advertised.</td>
 </tr></tbody></table>
</dd></dl><p> </p></div>