mirror of
https://github.com/trailofbits/algo.git
synced 2025-04-18 15:17:07 +02:00
Add default IPv6 routes to the windows powershell script (#1501)
This commit is contained in:
parent
14ee323eca
commit
0e6554943f
1 changed files with 6 additions and 0 deletions
|
@ -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…
Add table
Reference in a new issue