查询本端目的IP端口转换
最近更新时间: 2024-10-17 17:10:00
1. 接口描述
本接口(DescribeLocalDestinationIPPortTranslationNatRule)用于查询专线网关本端目的IP端口转换规则。 接口请求域名:vpc.api.qcloud.com
本接口用于查询指定专线网关的本端目的 IP 端口转换规则
2. 输入参数
以下请求参数列表仅列出了接口请求参数,正式调用时需要加上公共请求参数,见公共请求参数页面。其中,此接口的Action字段为DescribeLocalDestinationIPPortTranslationNatRule。
参数名称 | 必选 | 类型 | 描述 |
---|---|---|---|
vpcId | 是 | String | 系统分配的私有网络ID,例如:vpc-dfg5445。 |
directConnectGatewayId | 是 | String | 系统分配的专线网关ID,例如:dcg-4d545d。 |
originalIP | 否 | String | 原始IP。 |
originalPort | 否 | String | 原始Port。 |
translationIP | 否 | String | 转换后IP。 |
translationPort | 否 | String | 转换后Port。 |
proto | 否 | String | 协议。 |
description | 否 | String | 备注,支持模糊搜索。 |
offset | 否 | Int | 初始行的偏移量,默认为0。 |
limit | 否 | Int | 每页行数,默认为20。 |
3. 输出参数
参数名称 | 类型 | 描述 |
---|---|---|
code | Int | 公共错误码。0表示成功,其他值表示失败。详见错误码页面的公共错误码。 |
message | String | 模块错误信息描述,与接口相关。 |
data.n | Array | 本端IP转换规则信息组。 |
data.n.originalIP | String | 原始IP。 |
data.n.originalPort | String | 原始Port。 |
data.n.translationIP | String | 转换后IP。 |
data.n.translationPort | String | 转换后Port。 |
data.n.proto | String | 协议。 |
data.n.description | String | 备注。 |
4. 错误码表
以下错误码表仅列出了该接口的业务逻辑错误码,更多公共错误码详见公共错误码。
错误码 | 描述 |
---|---|
InvalidVpc.NotFound | 无效的VPC,VPC资源不存在。请再次核实您输入的资源信息是否正确。可调用 DescribeVpcEx 接口查询。 |
InvalidDirectConnectGateway.NotFound | 无效的专线网关,专线网关资源不存在。请再次核实您输入的资源信息是否正确。可调用 DescribeDirectConnectGateway 接口查询。 |
InvalidLocalDestinationIPPortTranslation.NotFound | 要修改的本端目的IP端口转换不存在,请再次核实您输入的资源信息是否正确。可调用 DescribeLocalDestinationIPPortTranslationNatRule 接口查询。 |
5. 示例
输入
https://vpc.api.qcloud.com/v2/index.php?Action=DescribeLocalDestinationIPPortTranslationNatRule &<公共请求参数> &vpcId=vpc-dfgg190 &directConnectGatewayId=dcg-ddf14d
输出
{
"code":"0",
"message":"",
"data": [
{
"originalIP": "10.0.0.1",
"originalPort": "80-90",
"translationIP": "138.0.0.1",
"translationPort": "800-820",
"proto": "tcp",
"description": "备注1"
}
]
}