Get-SCVPNConnection
获取 VPN 连接。
语法
Get-SCVPNConnection
[-VMMServer <ServerConnection>]
-VMNetworkGateway <VMNetworkGateway>
[-Name <String>]
[-OnBehalfOfUser <String>]
[-OnBehalfOfUserRole <UserRole>]
[<CommonParameters>]
Get-SCVPNConnection
[-VMMServer <ServerConnection>]
-ID <Guid>
[-Name <String>]
[-OnBehalfOfUser <String>]
[-OnBehalfOfUserRole <UserRole>]
[<CommonParameters>]
说明
Get-SCVPNConnection cmdlet 获取虚拟专用网络(VPN)连接。
示例
示例 1:获取 VPN 连接
PS C:\> $VmNetworkGateway = Get-SCVMNetworkGateway -Name "VMGateway01"
$VmNetworkGateway = Get-SCVMNetworkGateway -Name "VMGateway1"
PS C:\> $VPNConnection = Get-SCVPNConnection -VMNetworkGateway $VmNetworkGateway -Name "VPN01"
第一个命令获取名为 VMGateway01 的网络网关,然后将其存储在$VmNetworkGateway变量中。
第二个命令在网关上获取 $VmNetworkGateway 中的 VPN 连接,然后将其存储在$VPNConnection变量中。
参数
-ID
将数字标识符指定为特定对象的全局唯一标识符或 GUID。
类型: | Guid |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-Name
指定 VMM 对象的名称。
类型: | String |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-OnBehalfOfUser
指定用户名。 此 cmdlet 代表此参数指定的用户运行。
类型: | String |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-OnBehalfOfUserRole
指定用户角色。 若要获取用户角色,请使用 Get-SCUserRole cmdlet。 此 cmdlet 代表此参数指定的用户角色运行。
类型: | UserRole |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-VMMServer
指定 VMM 服务器对象。
类型: | ServerConnection |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | True |
接受通配符: | False |
-VMNetworkGateway
指定虚拟机网络网关对象。
若要获取 VMNetworkGateway 对象,请使用 Get-SCVMNetworkGateway cmdlet。
类型: | VMNetworkGateway |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |