PowerShell Logo Small

Get-NetIPv4Protocol



This is the built-in help made by Microsoft for the command 'Get-NetIPv4Protocol', 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 IPv4 protocol configurations.

SYNTAX


Get-NetIPv4Protocol [-AddressMaskReply <AddressMaskReply[]>] [-AsJob] [-CimSession <CimSession[]>] [-DefaultHopLimit <UInt32[]>] [-DhcpMediaSense <DhcpMediaSense[]>]
[-GroupForwardedFragments <GroupForwardedFragments[]>] [-IcmpRedirects <IcmpRedirects[]>] [-IGMPLevel <MldLevel[]>] [-IGMPVersion <MldVersion[]>] [-MediaSenseEventLog
<MediaSenseEventLog[]>] [-MulticastForwarding <MulticastForwarding[]>] [-NeighborCacheLimitEntries <UInt32[]>] [-RandomizeIdentifiers <RandomizeIdentifiers[]>]
[-ReassemblyLimitBytes <UInt32[]>] [-RouteCacheLimitEntries <UInt32[]>] [-SourceRoutingBehavior <SourceRoutingBehavior[]>] [-ThrottleLimit <Int32>] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


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



<

RELATED LINKS

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

REMARKS

<

Examples


Example 1: Get all IPv4 protocol configurations

PS C:\>Get-NetIPv4Protocol



This command gets the global settings for all the IPv4 protocol configurations for the computer. The default output for the cmdlet does not include all properties of the
NetIPv4Protocol object.




Example 2: Output all settings for IPv4 protocol configurations

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



This command gets the global settings for all IPv4 protocol configurations for the computer. 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.