次の方法で共有


2.2.1.2.185 IP_NAT_INTERFACE_STATISTICS

The IP_NAT_INTERFACE_STATISTICS structure holds statistics for an interface and is part of IP_NAT_MIB_QUERY (section 2.2.1.2.182) structure.

 typedef struct _IP_NAT_INTERFACE_STATISTICS {
   OUT ULONG TotalMappings;
   OUT ULONG InboundMappings;
   OUT ULONG64 BytesForward;
   OUT ULONG64 BytesReverse;
   OUT ULONG64 PacketsForward;
   OUT ULONG64 PacketsReverse;
   OUT ULONG64 RejectsForward;
   OUT ULONG64 RejectsReverse;
 } IP_NAT_INTERFACE_STATISTICS,
  *PIP_NAT_INTERFACE_STATISTICS;

TotalMappings: The count of the total number of mappings present in the NAT table.

InboundMappings: The count of the total number of inbound mappings present in the NAT table.

BytesForward: The count of the total bytes forwarded.

BytesReverse: The count of the total bytes reversed.

PacketsForward: The count of the packets forwarded.

PacketsReverse: The count of the packets reversed.

RejectsForward: The count of the forward packets rejected.

RejectsReverse: The count of the reverse packets rejected.