PowerShell Logo Small

Get-NetIPv6Protocol



This is the built-in help made by Microsoft for the command 'Get-NetIPv6Protocol', in PowerShell version 5 - as retrieved from Windows version 'Microsoft Windows Server 2012 R2 Standard' PowerShell help files on 2016-06-23.

For PowerShell version 3 and up, where you have Update-Help, this command was run just before creating the web pages from the help files.

SYNOPSIS

Gets IPv6 protocol configurations.

SYNTAX


Get-NetIPv6Protocol [-AddressMaskReply <AddressMaskReply[]>] [-AsJob] [-CimSession <CimSession[]>] [-DefaultHopLimit <UInt32[]>] [-DhcpMediaSense <DhcpMediaSense[]>]
[-GroupForwardedFragments <GroupForwardedFragments[]>] [-IcmpRedirects <IcmpRedirects[]>] [-MaxDadAttempts <UInt32[]>] [-MaxPreferredLifetime <TimeSpan[]>] [-MaxRandomTime
<TimeSpan[]>] [-MaxValidLifetime <TimeSpan[]>] [-MediaSenseEventLog <MediaSenseEventLog[]>] [-MldLevel <MldLevel[]>] [-MldVersion <MldVersion[]>] [-MulticastForwarding
<MulticastForwarding[]>] [-NeighborCacheLimitEntries <UInt32[]>] [-RandomizeIdentifiers <RandomizeIdentifiers[]>] [-ReassemblyLimitBytes <UInt32[]>] [-RegenerateTime
<TimeSpan[]>] [-RouteCacheLimitEntries <UInt32[]>] [-SourceRoutingBehavior <SourceRoutingBehavior[]>] [-ThrottleLimit <Int32>] [-UseTemporaryAddresses
<UseTemporaryAddresses[]>] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Get-NetIPv6Protocol cmdlet gets the global IPv6 protocol configurations for the computer. The cmdlet returns IPv6 Protocol settings, such as the Internet Control Message
Protocol (ICMP) setting, the default hop limit, the neighbor cache limit, and the multicast configuration. If you do not specify any parameters, the cmdlet gets all the IPv6
Protocol configuration settings.



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/?LinkId=288384
Set-NetIPv6Protocol
Get-NetIPv4Protocol

REMARKS

<

Examples


Example 1: Get all IPv6 protocol configurations

PS C:\>Get-NetIPv6Protocol



This command gets all IPv6 protocol configurations for the IP interface. The default output for the cmdlet does not include all properties of the NetIPv6Protocol object.




Example 2: Output all properties of IPv6 protocol configurations

PS C:\>Get-NetIPv6Protocol | Format-List –Property *



This command gets all IPv6 protocol configurations for the IP interface. The command uses the Format-List cmdlet to display all the properties in the output in the form of a
table. For more information, type Get-Help Format-Table.The command default output omits some properties.