Skip to content

SslVpnServerProps

Properties for defining a SslVpnServer.

See https://www.alibabacloud.com/help/ros/developer-reference/aliyun-vpc-sslvpnserver

Initializer

using AlibabaCloud.SDK.ROS.CDK.Vpc;
new SslVpnServerProps {
    object ClientIpPool,
    object LocalSubnet,
    object VpnGatewayId,
    object Cipher = null,
    object Compress = null,
    object EnableMultiFactorAuth = null,
    object IDaaSApplicationId = null,
    object IDaaSInstanceId = null,
    object IDaaSRegionId = null,
    object Name = null,
    object Port = null,
    object Proto = null
};

Properties

Name Type Description
ClientIpPool object Property clientIpPool: It is the address segment that assigns the access address to the client virtual NIC.
LocalSubnet object Property localSubnet: Is the address segment that the client wants to access through an SSL-VPN connection.
VpnGatewayId object Property vpnGatewayId: ID of the VPN gateway.
Cipher object Property cipher: The encryption algorithm used by SSL-VPN.
Compress object Property compress: Whether it is compressed.
EnableMultiFactorAuth object Property enableMultiFactorAuth: Whether to enable multi-factor authentication.
IDaaSApplicationId object Property iDaaSApplicationId: The ID of the IDaaS application.
IDaaSInstanceId object Property iDaaSInstanceId: The ID of the IDaaS instance.
IDaaSRegionId object Property iDaaSRegionId: The region ID of the IDaaS instance.
Name object Property name: The name of the SSL-VPN server.
Port object Property port: The port used by the SSL-VPN server.
Proto object Property proto: The protocol used by the SSL-VPN server.

ClientIpPoolRequired

public object ClientIpPool { get; set; }
  • Type: object

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.


LocalSubnetRequired

public object LocalSubnet { get; set; }
  • Type: object

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.


VpnGatewayIdRequired

public object VpnGatewayId { get; set; }
  • Type: object

Property vpnGatewayId: ID of the VPN gateway.


CipherOptional

public object Cipher { get; set; }
  • Type: object

Property cipher: The encryption algorithm used by SSL-VPN.

Value: AES-128-CBC (default) | AES-192-CBC | AES-256-CBC | none


CompressOptional

public object Compress { get; set; }
  • Type: object

Property compress: Whether it is compressed.


EnableMultiFactorAuthOptional

public object EnableMultiFactorAuth { get; set; }
  • Type: object

Property enableMultiFactorAuth: Whether to enable multi-factor authentication.

The default value is false.


IDaaSApplicationIdOptional

public object IDaaSApplicationId { get; set; }
  • Type: object

Property iDaaSApplicationId: The ID of the IDaaS application.


IDaaSInstanceIdOptional

public object IDaaSInstanceId { get; set; }
  • Type: object

Property iDaaSInstanceId: The ID of the IDaaS instance.


IDaaSRegionIdOptional

public object IDaaSRegionId { get; set; }
  • Type: object

Property iDaaSRegionId: The region ID of the IDaaS instance.


NameOptional

public object Name { get; set; }
  • Type: object

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://.


PortOptional

public object Port { get; set; }
  • Type: object

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


ProtoOptional

public object Proto { get; set; }
  • Type: object

Property proto: The protocol used by the SSL-VPN server.

Allowed values: UDP (default) | TCP.