Add default IPv6 routes to the windows powershell script (#1501)

pull/1512/head
Jack Ivanov 5 years ago committed by GitHub
parent 14ee323eca
commit 0e6554943f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -174,6 +174,12 @@ function Add-AlgoVPN {
}
Add-VpnConnection @addVpnParams
$addVpnRouteParams = @{
ConnectionName = $VpnName
}
Add-VpnConnectionRoute @addVpnRouteParams -DestinationPrefix ::/1
Add-VpnConnectionRoute @addVpnRouteParams -DestinationPrefix 8000::/1
$setVpnParams = @{
ConnectionName = $VpnName
AuthenticationTransformConstants = "GCMAES256"

Loading…
Cancel
Save