PowerShell Logo Small

Reset-Net6to4Configuration



This is the built-in help made by Microsoft for the command 'Reset-Net6to4Configuration', in PowerShell version 3 - as retrieved from Windows version 'Microsoft Windows Server 2012 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

Resets the Group Policy Object (GPO) settings for a 6to4 configuration.

SYNTAX


Reset-Net6to4Configuration [-AsJob [<SwitchParameter>]] [-AutoSharing [<SwitchParameter>]] [-CimSession <CimSession[]>] [-GPOSession <String>]
[-IPInterface <CimInstance>] [-PassThru [<SwitchParameter>]] [-PolicyStore <String>] [-RelayName [<SwitchParameter>]] [-RelayState
[<SwitchParameter>]] [-ResolutionIntervalSeconds [<SwitchParameter>]] [-State [<SwitchParameter>]] [-ThrottleLimit <Int32>] [-Confirm
[<SwitchParameter>]] [-WhatIf [<SwitchParameter>]] [<CommonParameters>]
Reset-Net6to4Configuration [-AsJob [<SwitchParameter>]] [-AutoSharing [<SwitchParameter>]] [-CimSession <CimSession[]>] [-PassThru
[<SwitchParameter>]] [-RelayName [<SwitchParameter>]] [-RelayState [<SwitchParameter>]] [-ResolutionIntervalSeconds [<SwitchParameter>]]
[-State [<SwitchParameter>]] [-ThrottleLimit <Int32>] -InputObject <CimInstance[]> [-Confirm [<SwitchParameter>]] [-WhatIf
[<SwitchParameter>]] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Reset-Net6to4Configuration resets the Group Policy Object (GPO) settings for a 6to4 configuration to the not configured state. Group
Policy settings have three possible states: not configured, enabled, and disabled.


6to4 is an address assignment and router-to-router automatic tunneling technology that is described in RFC 3056: Connection of IPv6 Domains
via IPv4 Clouds. 6to4 provides a globally-routable IPv6 address to a host with a public IPv4 address. This IPv6 address can be used to connect
to other 6to4 hosts or the IPv6 Internet.



<

RELATED LINKS

Get-NetIPInterface
Get-Net6to4Configuration
Set-Net6to4Configuration

REMARKS

<

Examples


Example 1: Reset the 6to4 configuration of an interface

PS C:\> $config = ( Get-NetIPInterface -InterfaceIndex 14 | Get-Net6to4Configuration )


PS C:\> Reset-Net6to4Configuration –InputObject $config



This set of commands uses the Get-NetIPInterface cmdlet to get the configuration information for the interface at index 14 and then passes the
interface configuration to the Get-Net6to4Configuration cmdlet to get the 6to4 configuration. The result is stored in a variable named
$config. The contents of the variable are then passed to this cmdlet.