设置IP访问限频
更新时间:2019-07-23
限制IP单节点的每秒访问次数,这里的设置针对所有的路径。本接口用于设置IP访问限频。
Method | Path | 说明 |
---|---|---|
PUT | /v2/domain/{domain}/config?accessLimit | 限制IP单节点的每秒访问次数 |
domain: CDN加速域名
请求体(Request Body)
参数 | 可选 | 类型 | 说明 |
---|---|---|---|
accessLimit | 必选 | AccessLimit | IP访问限频控制 |
AccessLimit:
参数 | 可选 | 类型 | 说明 |
---|---|---|---|
enabled | 必选 | bool | true表示开启IP单节点访问限频,false表示取消限频 |
limit | 可选 | int | 1秒内单个IP节点请求次数上限,enabled为true时此项默认为1000,enabled为false此项无意义 |
响应码 (Http Status Code)
HTTP Status Code | 说明 |
---|---|
200 | 成功 |
400 | 更新失败,参数错误等 |
请求示例
PUT /v2/domain/myself.baidu.com/config?accessLimit HTTP/1.1
Host: cdn.baidubce.com
Content-Length: 45
Content-Type: application/json
{
"accessLimit":{
"enabled":true,
"limit":200
}
}
响应示例
HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
Transfer-Encoding: chunked
{
"status":"OPERATING"
}