Query ACL rules
Updated at:2025-10-16
Description
View ACL rule details.
- The system has created 2 default ACL rules (without IDs) for users, with one ingress and one egress rule each, both configured as full-in and full-out; default rules cannot be modified or deleted;
Request structure
Plain Text
1GET /v{version}/acl/rule?marker={marker}&maxKeys={maxKeys}&subnetId={subnetId} HTTP/1.1
2Host: bcc.bj.baidubce.com
3Authorization: authorization string
Request headers
There are no special headers required beyond the common headers.
Request parameters
| Parameter name | Types | Whether required | Parameter location | Description |
|---|---|---|---|---|
| version | String | Yes | URL parameter | For API version No., the current value is 1 |
| marker | String | No | Query | The starting position of the batch list query is a system-generated string |
| maxKeys | Integer | No | Query | The maximum number of items per page is 1,000, with a default value of 1,000. |
| subnetId | String | Yes | Query | Subnet ID |
Response headers
No special headers are required beyond the standard ones.
Response parameters
| Parameter name | Types | Description |
|---|---|---|
| marker | String | Mark the starting position of the query. |
| isTruncated | Boolean | true indicates there is more data later, false indicates it is the last page |
| nextMarker | String | Obtain the marker value required for retrieving the next page; this field will not appear when isTruncated is false |
| maxKeys | Integer | Maximum number of items included per page |
| aclRules | List<[AclRule](VPC/API Reference/Appendix.md#AclRule)> | Collection of ACL rule information |
Request example
Plain Text
1GET /v1/acl/rule?marker=ar-ik9p9zq6u5ry&maxKeys=1&subnetId=sbn-svz99ha4a40w HTTP/1.1
2Host: bcc.bj.baidubce.com
3Content-Type: application/json;charset=UTF-8
4Authorization: bce-auth-v1/f81d3b34e48048fbb2634dc7882d7e21/2017-03-11T04:17:29Z/3600/ host/74c506f68c65e26c633bfa104c863fffac5190fdec1ec24b7c03eb5d67d2e1de
Response example
Plain Text
1HTTP/1.1 200 OK
2x-bce-request-id: 1214cca7-4ad5-451d-9215-71cb844c0a50
3Date: Thu, 16 Mar 2017 06:29:48 GMT
4Content-Type: application/json;charset=UTF-8
5Server: BWS
6
7{
8 "nextMarker": "ar-Iy8p6arqenI7",
9 "marker": "ar-ik9p9zq6u5ry",
10 "maxKeys": 1,
11 "isTruncated": true,
12 "aclRules":[
13 {
14 "id":"ar-ik9p9zq6u5ry",
15 "subnetId":"sbn-svz99ha4a40w",
16 "description":"",
17 "protocol":"tcp",
18 "sourceIpAddress":"192.168.0.0",
19 "destinationIpAddress":"192.168.0.0/20",
20 "sourcePort":"1-65535",
21 "destinationPort":"443",
22 "position":2,
23 "direction":"ingress",
24 "ipVersion":4,
25 "action":"allow"
26 }
27 ]
28}
