Add-VpnS2SInterface
Creates a site-to-site (S2S) interface with the specified parameters.
Add-VpnS2SInterface
[-Name] <String>
[-Protocol <String>]
[-Destination] <String[]>
[-AdminStatus <Boolean>]
[-PromoteAlternate <Boolean>]
[-AuthenticationMethod <String>]
[-PostConnectionIPv4Subnet <String[]>]
[-PostConnectionIPv6Subnet <String[]>]
[-InitiateConfigPayload <Boolean>]
[-RadiusAttributeClass <String>]
[-EnableQoS <EnableQoS>]
[-TxBandwidthKbps <UInt64>]
[-RxBandwidthKbps <UInt64>]
[-IPv4TriggerFilter <String[]>]
[-IPv6TriggerFilter <String[]>]
[-Persistent]
[-IPv4TriggerFilterAction <Action>]
[-IPv6TriggerFilterAction <Action>]
[-SADataSizeForRenegotiationKilobytes <UInt32>]
[-IPv4Subnet <String[]>]
[-IPv6Subnet <String[]>]
[-ResponderAuthenticationMethod <String>]
[-PassThru]
[[-RoutingDomain] <String>]
[-Certificate <X509Certificate2>]
[-SharedSecret <String>]
[-NetworkOutageTimeSeconds <UInt32>]
[-NumberOfTries <UInt32>]
[-RetryIntervalSeconds <UInt32>]
[-SALifeTimeSeconds <UInt32>]
[-EapMethod <String>]
[-InternalIPv4 <Boolean>]
[-InternalIPv6 <Boolean>]
[-IdleDisconnectSeconds <UInt32>]
[-UserName <String>]
[-Password <String>]
[-SourceIpAddress <String>]
[-EncryptionType <String>]
[-CimSession <CimSession[]>]
[-ThrottleLimit <Int32>]
[-AsJob]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
Add-VpnS2SInterface
[-Name] <String>
[-Protocol <String>]
[-Destination] <String[]>
[-AdminStatus <Boolean>]
[-PromoteAlternate <Boolean>]
[-AuthenticationMethod <String>]
[-PostConnectionIPv4Subnet <String[]>]
[-PostConnectionIPv6Subnet <String[]>]
[-InitiateConfigPayload <Boolean>]
[-RadiusAttributeClass <String>]
[-EnableQoS <EnableQoS>]
[-TxBandwidthKbps <UInt64>]
[-RxBandwidthKbps <UInt64>]
[-IPv4TriggerFilter <String[]>]
[-IPv6TriggerFilter <String[]>]
[-Persistent]
[-IPv4TriggerFilterAction <Action>]
[-IPv6TriggerFilterAction <Action>]
[-SADataSizeForRenegotiationKilobytes <UInt32>]
[-IPv4Subnet <String[]>]
[-IPv6Subnet <String[]>]
[-ResponderAuthenticationMethod <String>]
[-PassThru]
[[-RoutingDomain] <String>]
[-Certificate <X509Certificate2>]
[-SharedSecret <String>]
[-NetworkOutageTimeSeconds <UInt32>]
[-NumberOfTries <UInt32>]
[-RetryIntervalSeconds <UInt32>]
[-SALifeTimeSeconds <UInt32>]
[-EapMethod <String>]
[-InternalIPv4 <Boolean>]
[-InternalIPv6 <Boolean>]
[-IdleDisconnectSeconds <UInt32>]
[-UserName <String>]
[-Password <String>]
[-CustomPolicy]
[-EncryptionMethod <EncryptionMethod>]
[-IntegrityCheckMethod <IntegrityCheckMethod>]
[-CipherTransformConstants <CipherTransformConstants>]
[-AuthenticationTransformConstants <AuthenticationTransformConstants>]
[-PfsGroup <PfsGroup>]
[-DHGroup <DHGroup>]
[-SourceIpAddress <String>]
[-CimSession <CimSession[]>]
[-ThrottleLimit <Int32>]
[-AsJob]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
The Add-VpnS2SInterface cmdlet creates a site-to-site (S2S) interface with the specified parameters. Use the CustomPolicy parameter to customize IPsec settings. If the Protocol parameter is set to Automatic, then the only authentication method allowed is user name. If the AuthenticationMethod parameter is set to pre-shared key (PSK), then only one interface can be enabled per destination and the initiator and responder policies are governed by what is specified per interface. If the AuthenticationMethod parameter is set to user name or computer certificates (MachineCert), then only initiator policies are governed by what is specified per interface and responder policies are governed by what is specified on the server.
For incoming connections:
-- If the AuthenticationMethod parameter is set to PSK, the interface for which the destination IP matches the incoming IP is activated.
-- If the AuthenticationMethod parameter is set to user name, then the name of the interface that matches the user name is activated.
-- If the AuthenticationMethod parameter is set to certificates, then the name of the interface that matches the certificate subject name is activated.
PS C:\> Add-VpnS2SInterface -Nameedge1 -Destination 131.107.0.20 -Protocol IKEv2 -AuthenticationMethod PSKOnly -SharedSecret abc -IPv4Subnet 10.2.0.0/24:100 -IPv6Subnet 2001:db8:2::/48:100
This example creates a S2S VPN interface named edge1 to the destination server 131.107.0.20. The protocol is IKEv2 and the authentication method is PSK. The string abc is used as PSK. Traffic to 10.2.0.0/24 and 2001:db8:2::/48 is sent over this interface if there is no other interface on the server that has same routes with a metric less than 100 . In case the interface is in disconnected state the connection is triggered if there is no other interface on the server that has same routes with a metric less than 100.
PS C:\>Add-VpnS2SInterface -IPv4Subnet @("131.0.1.0/24:254", "121.0.0.0/16:124") -UserName "abc@contoso.com" -Destination "30.0.0.1" -IPv6Subnet @("3ffe::/32:24", "2ffe::/32:24") -AuthenticationMethod "EAP" -Name "TestVpnS2SInterface" -RetryInterval 120 -EncryptionType "RequireEncryption" -InternalIPv4 1 -InternalIPv6 1 -NumberofTries 20 -AdminStatus $true -IdleDisconnectSeconds 300 -PromoteAlternate $true -Password "1111_aaaa" -PassThru
Name Destination AdminStatus ConnectionState IPv4Subnet
---- ----------- ----------- --------------- ----------
TestVpnS2SInterface {30.0.0.1} True Disconnected {131.0.1.0/24:254, 121.0.0.0/16:124}
This example creates an interface that uses EAP authentication method and multiple subnets are routed on this interface including 131.0.1.0/24 and 121.0.0.0/16.
PS C:\>Add-VpnS2SInterface -CustomPolicy -UserName "abc@contoso.com" -EncryptionMethod "AES128" -Destination "30.0.0.1" -Password "1111_aaaa" -DhGroup "Group2" -PfsGroup "PFS2" -CipherTransformConstants "AES128" -Name "TestVpnS2SInterface" -IntegrityCheckMethod "SHA256" -AuthenticationTransformConstants "SHA256128" -Protocol "IKEv2"
This example creates a S2S VPN interface using custom encryption settings.
PS C:\>$cert1 = Get-ChildItem -Path cert:LocalMachine\My | Where-Object -FilterScript { $_.Subject -Like "*CN=edge1.contoso.com*" }
PS C:\>Add-VpnS2SInterface -Name e1 -Destination 1.1.1.1 -AuthenticationMethod MachineCertificates -Certificate $cert1 -ResponderAuthenticationMethod MachineCertificates -Protocol IKEv2
This example creates a S2S interface with authentication method of computer certificate and specifies the certificate for which the subject name is edge1.contoso.com.
Specifies the administrator status of the cmdlet.
Type: | Boolean |
Position: | Named |
Default value: | True |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
ps_cimcommon_asjob
Type: | SwitchParameter |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Specifies the authentication method to be used by the S2S connection.
If PSK is specified, then there can only be one active S2S VPN interface per destination IP address.
Type: | String |
Accepted values: | EAP, MachineCertificates, PSKOnly, |
Position: | Named |
Default value: | EAP |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Specifies a transform constant. The acceptable values for this parameter are:
- SHA256128
- MD596
- SHA196
- GCMAES128
- GCMAES192
- GCMAES256
Type: | AuthenticationTransformConstants |
Aliases: | FirstTransformType, AuthenticationTransformConstant |
Accepted values: | MD596, SHA196, SHA256128, GCMAES128, GCMAES192, GCMAES256, None |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Specifies the certificate to be used in default store. Applicable only if AuthenticationMethod parameter is set to MachineCert.
Type: | X509Certificate2 |
Aliases: | Cert |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session object, such as the output of a New-CimSessionhttp://go.microsoft.com/fwlink/p/?LinkId=227967 or Get-CimSessionhttp://go.microsoft.com/fwlink/p/?LinkId=227966 cmdlet. The default is the current session on the local computer.
Type: | CimSession[] |
Aliases: | Session |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Specifies a cipher transform constant. The acceptable values for this parameter are:
- DES
- DES3
- AES128
- AES192
- AES256
- GCMAES128
- GCMAES192
- GCMAES256
Type: | CipherTransformConstants |
Aliases: | OtherCipherAlgorithm, FirstCipherAlgorithm, CipherTransformConstant |
Accepted values: | DES, DES3, AES128, AES192, AES256, GCMAES128, GCMAES192, GCMAES256, None |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Prompts you for confirmation before running the cmdlet.
Type: | SwitchParameter |
Aliases: | cf |
Position: | Named |
Default value: | False |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Specifies the custom IKE IPsec policies.
Type: | SwitchParameter |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Specifies the destination end point of the S2S connection. Note: If the Certificate parameter is specified as PSK, then an IP address should be specified for this parameter as a fully qualified domain name (FQDN) will not work.
Type: | String[] |
Aliases: | RemoteTunnelEndpoint, RemoteTunnelHostname, RemoteAddress |
Position: | 2 |
Default value: | None |
Required: | True |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Specifies the Diffie-Hellman (DH) group for the IPsec policy.
Type: | DHGroup |
Accepted values: | None, Group1, Group2, Group14, ECP256, ECP384, Group24 |
Position: | Named |
Default value: | 2 |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Specifies the EAP method if IkeLocalAuthenticationMethod is EAP.
Type: | String |
Accepted values: | EAP-TLS, EAP-PEAP, EAP-MSCHAPv2, |
Position: | Named |
Default value: | MSCHAPv2 |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Indicates whether to enable Quality of Service (QoS) on an interface.
Type: | EnableQoS |
Accepted values: | Disabled, Enabled |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Specifies the encryption method for the IKE policy.
Type: | EncryptionMethod |
Aliases: | Encryption |
Accepted values: | DES, DES3, AES128, AES192, AES256 |
Position: | Named |
Default value: | 4 |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Specifies the type of encryption.
Type: | String |
Accepted values: | NoEncryption, RequireEncryption, OptionalEncryption, MaximumEncryption |
Position: | Named |
Default value: | RequireEncryption |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Specifies the time interval, in seconds, after which an idle connection is disconnected. Unless you disable idle timeout, an idle connection is disconnected after this time interval is reached.
Type: | UInt32 |
Aliases: | IdleDurationSeconds, IdleDisconnectSec |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Indicates whether to initiate Config payload negotiation.
Type: | Boolean |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Specifies the integrity method for the IPsec policy.
Type: | IntegrityCheckMethod |
Aliases: | OtherHashAlgorithm, FirstIntegrityAlgorithm |
Accepted values: | MD5, SHA1, SHA256, SHA384 |
Position: | Named |
Default value: | 2 |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Specifies that the IPv4 address should be negotiated.
Type: | Boolean |
Position: | Named |
Default value: | True |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Specifies that the IPv6 address should be negotiated.
Type: | Boolean |
Position: | Named |
Default value: | True |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Specifies the IPv4 subnet that is routed on this connection with metrics. You must specify the IPv4 subnet in the format of IPv4Address/SubnetPrefixLength:RouteMetric. For example: 192.168.1.0/24:1
Type: | String[] |
Aliases: | IPv4TriggerSubnet |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Specifies an array of IPv4 filters that trigger demand dial connections.
Type: | String[] |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Indicates whether a filter should trigger an S2S connection.
Type: | Action |
Accepted values: | Allow, Deny |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Specifies the IPv6 subnet that is routed on this connection with metrics.
Type: | String[] |
Aliases: | IPv6TriggerSubnet |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Specifies an array of IPv6 filters that trigger demand dial connections.
Type: | String[] |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Indicates whether a filter should trigger an S2S connection.
Type: | Action |
Accepted values: | Allow, Deny |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Specifies the name of the connection.
Type: | String |
Aliases: | ElementName |
Position: | 1 |
Default value: | None |
Required: | True |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Specifies the maximum amount of time, in seconds, before a connection is disconnected due to a network outage.
Type: | UInt32 |
Aliases: | NetworkOutageTimeSec |
Accepted values: | 3, 6, 9, 12, 15, 30, 60, 120, 240, 360, 720, 900 |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Specifies the number of connection attempts.
If this parameter is specified as zero (0), then the connection is not retried if the first attempt fails.
Type: | UInt32 |
Position: | Named |
Default value: | 3 |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Returns an object representing the item with which you are working. By default, this cmdlet does not generate any output.
Type: | SwitchParameter |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Specifies the password for the user name to be used for dialing the connection. Applicable only if AuthenticationMethod parameter is set to EAP.
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Indicates that a connection is not disconnected due to inactivity.
Type: | SwitchParameter |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Specifies the PFS group in the IPsec policy.
Type: | PfsGroup |
Aliases: | PfsGroupId |
Accepted values: | None, PFS1, PFS2, PFS2048, ECP256, ECP384, PFSMM, PFS24 |
Position: | Named |
Default value: | 3 |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Specifies the IPv4 subnet routes that are added to a site-to-site interface after the connection is established. The values specified are not used to initiate the site-to-site VPN connection.
Type: | String[] |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Specifies the IPv6 subnet routes that are added to a site-to-site interface after the connection is established. The values specified are not used to initiate the site-to-site VPN connection.
Type: | String[] |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Specifies an IP address that if successfully connected becomes the primary IP address, and the current primary IP address is moved to the alternate list.
Type: | Boolean |
Position: | Named |
Default value: | False |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Specifies the underlying protocol used for tunneling.
Type: | String |
Aliases: | KeyModule |
Accepted values: | L2TP, IKEv2, Automatic |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Specifies a RADIUS attribute.
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Specifies the authentication method to be used by the S2S initiator to validate the S2S responder.
Type: | String |
Accepted values: | MachineCertificates, PSKOnly, |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Specifies the time interval, in seconds, to wait between retries.
Type: | UInt32 |
Aliases: | RetryIntervalSec |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Specifies an ID, as a string, for a routing domain. The ID of a routing domain is a user-defined alphanumeric string.
Type: | String |
Aliases: | RoutingDomainName |
Position: | 3 |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Specifies the receive bandwidth limit, in kilobits per second (Kbps).
Type: | UInt64 |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Specifies the amount of data, in kilobytes (KB), that can be transferred using a security association (SA). When the limit is reached, the SA must be renegotiated.
Type: | UInt32 |
Aliases: | SaRenegotiationDataSizeKB, LifeTimeKiloBytes |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Specifies the lifetime, in seconds, of a security association (SA). The SA is no longer valid after this time interval.
Type: | UInt32 |
Aliases: | SaLifeTimeSec, LifeTimeSeconds |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Specifies the text of the shared secret to be used in the connection. This parameter is only applicable only if the AuthenticationMethod parameter is set to PSK or the ResponderAuthenticationMethod parameter is set to PSK.
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Specifies the source IPv4 or IPv6 addresses to use when dialing the connection.
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Specifies the maximum number of concurrent operations that can be established to run the cmdlet.
If this parameter is omitted or a value of 0
is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer.
The throttle limit applies only to the current cmdlet, not to the session or to the computer.
Type: | Int32 |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Specifies a transmit bandwidth limit, in Kbps, for the interface.
Type: | UInt64 |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Specifies the user name to be used for the connection. Applicable only if AuthenticationMethod parameter is set to EAP.
Type: | String |
Aliases: | User |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Shows what would happen if the cmdlet runs. The cmdlet is not run.
Type: | SwitchParameter |
Aliases: | wi |
Position: | Named |
Default value: | False |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
None
The Microsoft.Management.Infrastructure.CimInstance
object is a wrapper class that displays Windows Management Instrumentation (WMI) objects.
The path after the pound sign (#
) provides the namespace and class name for the underlying WMI object.