SslVpnServerProps
Properties for defining a SslVpnServer
.
See https://www.alibabacloud.com/help/ros/developer-reference/aliyun-vpc-sslvpnserver
Initializer
import { SslVpnServerProps } from '@alicloud/ros-cdk-vpc'
const sslVpnServerProps: SslVpnServerProps = { ... }
Properties
Name | Type | Description |
---|---|---|
clientIpPool |
string | @alicloud/ros-cdk-core.IResolvable |
Property clientIpPool: It is the address segment that assigns the access address to the client virtual NIC. |
localSubnet |
string | @alicloud/ros-cdk-core.IResolvable |
Property localSubnet: Is the address segment that the client wants to access through an SSL-VPN connection. |
vpnGatewayId |
string | @alicloud/ros-cdk-core.IResolvable |
Property vpnGatewayId: ID of the VPN gateway. |
cipher |
string | @alicloud/ros-cdk-core.IResolvable |
Property cipher: The encryption algorithm used by SSL-VPN. |
compress |
boolean | @alicloud/ros-cdk-core.IResolvable |
Property compress: Whether it is compressed. |
enableMultiFactorAuth |
boolean | @alicloud/ros-cdk-core.IResolvable |
Property enableMultiFactorAuth: Whether to enable multi-factor authentication. |
iDaaSApplicationId |
string | @alicloud/ros-cdk-core.IResolvable |
Property iDaaSApplicationId: The ID of the IDaaS application. |
iDaaSInstanceId |
string | @alicloud/ros-cdk-core.IResolvable |
Property iDaaSInstanceId: The ID of the IDaaS instance. |
iDaaSRegionId |
string | @alicloud/ros-cdk-core.IResolvable |
Property iDaaSRegionId: The region ID of the IDaaS instance. |
name |
string | @alicloud/ros-cdk-core.IResolvable |
Property name: The name of the SSL-VPN server. |
port |
number | @alicloud/ros-cdk-core.IResolvable |
Property port: The port used by the SSL-VPN server. |
proto |
string | @alicloud/ros-cdk-core.IResolvable |
Property proto: The protocol used by the SSL-VPN server. |
clientIpPool
Required
public readonly clientIpPool: string | IResolvable;
- Type: string | @alicloud/ros-cdk-core.IResolvable
Property clientIpPool: It is the address segment that assigns the access address to the client virtual NIC.
It does not refer to the existing intranet segment of the client. When the client accesses the local end through an SSL-VPN connection, the VPN gateway allocates an IP address to the client from the specified client network segment. The network segment cannot conflict with the LocalSubnet address segment.
localSubnet
Required
public readonly localSubnet: string | IResolvable;
- Type: string | @alicloud/ros-cdk-core.IResolvable
Property localSubnet: Is the address segment that the client wants to access through an SSL-VPN connection.
The local network segment can be the network segment of the VPC, the network segment of the switch, the network segment of the IDC interconnected by the leased line and the VPC, and the network segment of the cloud service such as RDS\/OSS.
vpnGatewayId
Required
public readonly vpnGatewayId: string | IResolvable;
- Type: string | @alicloud/ros-cdk-core.IResolvable
Property vpnGatewayId: ID of the VPN gateway.
cipher
Optional
public readonly cipher: string | IResolvable;
- Type: string | @alicloud/ros-cdk-core.IResolvable
Property cipher: The encryption algorithm used by SSL-VPN.
Value: AES-128-CBC (default) | AES-192-CBC | AES-256-CBC | none
compress
Optional
public readonly compress: boolean | IResolvable;
- Type: boolean | @alicloud/ros-cdk-core.IResolvable
Property compress: Whether it is compressed.
enableMultiFactorAuth
Optional
public readonly enableMultiFactorAuth: boolean | IResolvable;
- Type: boolean | @alicloud/ros-cdk-core.IResolvable
Property enableMultiFactorAuth: Whether to enable multi-factor authentication.
The default value is false.
iDaaSApplicationId
Optional
public readonly iDaaSApplicationId: string | IResolvable;
- Type: string | @alicloud/ros-cdk-core.IResolvable
Property iDaaSApplicationId: The ID of the IDaaS application.
iDaaSInstanceId
Optional
public readonly iDaaSInstanceId: string | IResolvable;
- Type: string | @alicloud/ros-cdk-core.IResolvable
Property iDaaSInstanceId: The ID of the IDaaS instance.
iDaaSRegionId
Optional
public readonly iDaaSRegionId: string | IResolvable;
- Type: string | @alicloud/ros-cdk-core.IResolvable
Property iDaaSRegionId: The region ID of the IDaaS instance.
name
Optional
public readonly name: string | IResolvable;
- Type: string | @alicloud/ros-cdk-core.IResolvable
Property name: The name of the SSL-VPN server.
The length is 2-128 characters and must start with a letter or Chinese. It can contain numbers, periods (.), underscores (_), and dashes (-). But it can't start with http:\/\/ or https:\/\/.
port
Optional
public readonly port: number | IResolvable;
- Type: number | @alicloud/ros-cdk-core.IResolvable
Property port: The port used by the SSL-VPN server.
The default value is 1194. Cannot use the following ports: 22, 2222, 22222, 9000, 9001, 9002, 7505, 80, 443, 53, 68, 123, 4510, 4560, 500, 4500
proto
Optional
public readonly proto: string | IResolvable;
- Type: string | @alicloud/ros-cdk-core.IResolvable
Property proto: The protocol used by the SSL-VPN server.
Allowed values: UDP (default) | TCP.