2.2.1.2.68 DHCP_MIB_INFO_V6

The DHCP_MIB_INFO_V6 structure contains the DHCPv6 server counter values for the DHCPv6 server. This structure is used in the R_DhcpGetMibInfoV6 (section 3.2.4.69) method to find DHCPv6 server statistics.

 typedef struct _DHCP_MIB_INFO_V6 {
   DWORD Solicits;
   DWORD Advertises;
   DWORD Requests;
   DWORD Renews;
   DWORD Rebinds;
   DWORD Replies;
   DWORD Confirms;
   DWORD Declines;
   DWORD Releases;
   DWORD Informs;
   DATE_TIME ServerStartTime;
   DWORD Scopes;
   [size_is(Scopes)] LPSCOPE_MIB_INFO_V6 ScopeInfo;
 } DHCP_MIB_INFO_V6,
  *LPDHCP_MIB_INFO_V6;

Solicits: This is of type DWORD and contains the number of DHCPSOLICIT message received by the DHCPv6 server from DHCPv6 clients since the DHCP server was last started. This is used for statistical analysis by the DHCPv6 server.

Advertises: This is of type DWORD and contains the number of DHCPADVERTISE message sent by DHCPv6 server to DHCPv6 clients since the DHCP server was last started. This is used for statistical analysis by the DHCPv6 server.

Requests: This is of type DWORD and contains the number of DHCPREQUEST messages received by the DHCPv6 server from DHCPv6 clients since the DHCP server was last started. This is used for statistical analysis by the DHCPv6 server.

Renews: This is of type DWORD and contains the number of DHCPRENEW message received by the DHCPv6 server from DHCPv6 clients since the DHCP server was last started. This is used for statistical analysis by the DHCPv6 server.

Rebinds: This is of type DWORD and contains the number of DHCPREBIND messages received by the DHCPv6 server from DHCPv6 clients since the DHCP server was last started. This is used for statistical analysis by the DHCPv6 server.

Replies: This is of type DWORD and contains the number of DHCPREPLY messages sent by the DHCPv6 server to DHCP clients since the DHCP server was last started. This is used for statistical analysis by the DHCPv6 server.

Confirms: This is of type DWORD and contains the number of DHCPCONFIRM messages received by the DHCPv6 server from DHCPv6 clients since the DHCP server was last started. This is used for statistical analysis by the DHCPv6 server.

Declines: This is of type DWORD and contains the number of DHCPDECLINES messages received by the DHCPv6 server from DHCPv6 clients since the DHCP server was last started. This is used for statistical analysis by the DHCPv6 server.

Releases: This is of type DWORD and contains the number of DHCPRELEASE messages received by the DHCPv6 server from DHCPv6 clients since the DHCP server was last started. This is used for statistical analysis by the DHCPv6 server.

Informs: This is of type DWORD and contains the number of DHCPINFORM messages received by the DHCPv6 server from DHCPv6 clients since the DHCP server was last started. This is used for statistical analysis by the DHCPv6 server.

ServerStartTime: This is of type DATE_TIME (section 2.2.1.2.11), a structure containing the start time of the DHCPv6 server.

Scopes: This is of type DWORD, containing the number of IPv6 scopes configured on the current DHCPv6 server. This is used for statistical analysis by the DHCPv6 server. This field defines the number of DHCPv6 scopes in the subsequent field the ScopeInfo member.

ScopeInfo: This is a pointer to an array of SCOPE_MIB_INFO_V6 (section 2.2.1.2.67) structures that points to an array of length Scopes, containing the information about the IPv6 scopes configured on the DHCPv6 server.