Download OpenAPI specification:
浏览器账密模式 /Action/call 逆向 API,当前分组:分流与路由。
页面内真实调用仍然走 /Action/call;/Action/call/_operations/* 只是 OpenAPI 展示用路径。
为避免 Redoc 单页一次性加载全部逆向接口导致浏览器 heap 过高,部署版按分类拆分。
使用用户名和密码 MD5 登录。登录成功后,后续 /Action/call 依赖同一会话 Cookie。浏览器 API 可走 HTTP 或 HTTPS,实际是否允许 HTTP 取决于设备管理访问配置。
| username required | string 登录用户名 |
| passwd required | string 密码 MD5 值 |
| pass required | string 密码 MD5 值,前端登录同时发送该字段 |
| remember_password | boolean Default: true |
{- "username": "admin",
- "passwd": "md5(password)",
- "pass": "md5(password)",
- "remember_password": true
}{- "code": 0,
- "message": "string",
- "Result": 0,
- "ErrMsg": "string",
- "results": { },
- "Data": { }
}所有页面内 API 调用都通过该路径提交 {func_name, action, param}。下方 /Action/call/_operations/* 路径是逐项文档展示路径,实际调用仍固定使用本路径。
| func_name required | string 爱快前端模块函数名 |
| action required | string 爱快前端动作名 |
required | object 传给该 func/action 的参数对象。不同接口的 TYPE 和字段不同。 |
{- "func_name": "wan",
- "action": "show",
- "param": {
- "TYPE": "data,total",
- "limit": "0,500"
}
}{- "code": 0,
- "message": "string",
- "Result": 0,
- "ErrMsg": "string",
- "results": { },
- "Data": { }
}这是浏览器账密模式的 /Action/call 映射文档。
/Action/callGET /api/v4.0/routing/updownroute/network-stream-updown.jsonstream_updownshow此 OpenAPI path 是为了让每个接口在文档中单独展示;调用设备时仍应 POST /Action/call,请求体使用本接口示例中的 JSON。
| func_name required | string Value: "stream_updown" 爱快前端模块函数名 |
| action required | string Value: "show" 爱快前端动作名 |
required | object Default: {"TYPE":"total,data","limit":"0,500"} 传给该 func/action 的参数对象。不同接口的 TYPE 和字段不同。 |
{- "func_name": "stream_updown",
- "action": "show",
- "param": {
- "TYPE": "total,data",
- "limit": "0,500"
}
}{- "code": 0,
- "message": "string",
- "Result": 0,
- "ErrMsg": "string",
- "results": { },
- "Data": { }
}这是浏览器账密模式的 /Action/call 映射文档。
/Action/callPOST /api/v4.0/routing/updownroute/network-stream-updown.jsonstream_updownadd此 OpenAPI path 是为了让每个接口在文档中单独展示;调用设备时仍应 POST /Action/call,请求体使用本接口示例中的 JSON。
该接口属于写操作或状态变更操作。批量测试默认不执行写操作。
| func_name required | string Value: "stream_updown" 爱快前端模块函数名 |
| action required | string Value: "add" 爱快前端动作名 |
required | object Default: {"enabled":"no","tagname":"codex_test","upiface":"wan1","downiface":"wan2","protocol":"tcp","src_addr":{"custom":["192.168.9.169"],"object":[{"type":0,"gp_name":"iKuai-Group","gid":"GPIP1"}]}} 传给该 func/action 的参数对象。不同接口的 TYPE 和字段不同。 |
{- "func_name": "stream_updown",
- "action": "add",
- "param": {
- "enabled": "no",
- "tagname": "codex_test",
- "upiface": "wan1",
- "downiface": "wan2",
- "protocol": "tcp",
- "src_addr": {
- "custom": [
- "192.168.9.169"
], - "object": [
- {
- "type": 0,
- "gp_name": "iKuai-Group",
- "gid": "GPIP1"
}
]
}
}
}{- "code": 0,
- "message": "string",
- "Result": 0,
- "ErrMsg": "string",
- "results": { },
- "Data": { }
}这是浏览器账密模式的 /Action/call 映射文档。
/Action/callDELETE /api/v4.0/routing/updown/{id}route/network-stream-updown.jsonstream_updowndel此 OpenAPI path 是为了让每个接口在文档中单独展示;调用设备时仍应 POST /Action/call,请求体使用本接口示例中的 JSON。
该接口属于写操作或状态变更操作。批量测试默认不执行写操作。
| func_name required | string Value: "stream_updown" 爱快前端模块函数名 |
| action required | string Value: "del" 爱快前端动作名 |
required | object Default: {"id":"99999999"} 传给该 func/action 的参数对象。不同接口的 TYPE 和字段不同。 |
{- "func_name": "stream_updown",
- "action": "del",
- "param": {
- "id": "99999999"
}
}{- "code": 0,
- "message": "string",
- "Result": 0,
- "ErrMsg": "string",
- "results": { },
- "Data": { }
}这是浏览器账密模式的 /Action/call 映射文档。
/Action/callGET /api/v4.0/routing/updown/{id}route/network-stream-updown.jsonstream_updownshow此 OpenAPI path 是为了让每个接口在文档中单独展示;调用设备时仍应 POST /Action/call,请求体使用本接口示例中的 JSON。
| func_name required | string Value: "stream_updown" 爱快前端模块函数名 |
| action required | string Value: "show" 爱快前端动作名 |
required | object Default: {"TYPE":"total,data","limit":"0,500","id":"99999999"} 传给该 func/action 的参数对象。不同接口的 TYPE 和字段不同。 |
{- "func_name": "stream_updown",
- "action": "show",
- "param": {
- "TYPE": "total,data",
- "limit": "0,500",
- "id": "99999999"
}
}{- "code": 0,
- "message": "string",
- "Result": 0,
- "ErrMsg": "string",
- "results": { },
- "Data": { }
}这是浏览器账密模式的 /Action/call 映射文档。
/Action/callPATCH /api/v4.0/routing/updown/{id}route/network-stream-updown.jsonstream_updownedit此 OpenAPI path 是为了让每个接口在文档中单独展示;调用设备时仍应 POST /Action/call,请求体使用本接口示例中的 JSON。
该接口属于写操作或状态变更操作。批量测试默认不执行写操作。
| func_name required | string Value: "stream_updown" 爱快前端模块函数名 |
| action required | string Value: "edit" 爱快前端动作名 |
required | object Default: {"enabled":"no","id":"99999999"} 传给该 func/action 的参数对象。不同接口的 TYPE 和字段不同。 |
{- "func_name": "stream_updown",
- "action": "edit",
- "param": {
- "enabled": "no",
- "id": "99999999"
}
}{- "code": 0,
- "message": "string",
- "Result": 0,
- "ErrMsg": "string",
- "results": { },
- "Data": { }
}这是浏览器账密模式的 /Action/call 映射文档。
/Action/callPUT /api/v4.0/routing/updown/{id}route/network-stream-updown.jsonstream_updownedit此 OpenAPI path 是为了让每个接口在文档中单独展示;调用设备时仍应 POST /Action/call,请求体使用本接口示例中的 JSON。
该接口属于写操作或状态变更操作。批量测试默认不执行写操作。
| func_name required | string Value: "stream_updown" 爱快前端模块函数名 |
| action required | string Value: "edit" 爱快前端动作名 |
required | object Default: {"enabled":"no","tagname":"codex_test","comment":"codex_test","upiface":"wan1","downiface":"wan2","protocol":"tcp","src_addr":{"custom":["192.168.9.169"],"object":[{"type":0,"gp_name":"iKuai-Group","gid":"GPIP1"}]},"src_port":{"custom":["80","443"],"object":[{"type":3,"gp_name":"iKuai-PortGroup","gid":"PORTGP1"}]},"dst_port":{"custom":["8080"],"object":[{"type":3,"gp_name":"iKuai-DstPort","gid":"PORTGP2"}]},"id":"99999999"} 传给该 func/action 的参数对象。不同接口的 TYPE 和字段不同。 |
{- "func_name": "stream_updown",
- "action": "edit",
- "param": {
- "enabled": "no",
- "tagname": "codex_test",
- "comment": "codex_test",
- "upiface": "wan1",
- "downiface": "wan2",
- "protocol": "tcp",
- "src_addr": {
- "custom": [
- "192.168.9.169"
], - "object": [
- {
- "type": 0,
- "gp_name": "iKuai-Group",
- "gid": "GPIP1"
}
]
}, - "src_port": {
- "custom": [
- "80",
- "443"
], - "object": [
- {
- "type": 3,
- "gp_name": "iKuai-PortGroup",
- "gid": "PORTGP1"
}
]
}, - "dst_port": {
- "custom": [
- "8080"
], - "object": [
- {
- "type": 3,
- "gp_name": "iKuai-DstPort",
- "gid": "PORTGP2"
}
]
}, - "id": "99999999"
}
}{- "code": 0,
- "message": "string",
- "Result": 0,
- "ErrMsg": "string",
- "results": { },
- "Data": { }
}这是浏览器账密模式的 /Action/call 映射文档。
/Action/callGET /api/v4.0/routing/app-protocolsroute/network-stream-l7.jsonstream_layer7show此 OpenAPI path 是为了让每个接口在文档中单独展示;调用设备时仍应 POST /Action/call,请求体使用本接口示例中的 JSON。
| func_name required | string Value: "stream_layer7" 爱快前端模块函数名 |
| action required | string Value: "show" 爱快前端动作名 |
required | object Default: {"TYPE":"total,data","limit":"0,500"} 传给该 func/action 的参数对象。不同接口的 TYPE 和字段不同。 |
{- "func_name": "stream_layer7",
- "action": "show",
- "param": {
- "TYPE": "total,data",
- "limit": "0,500"
}
}{- "code": 0,
- "message": "string",
- "Result": 0,
- "ErrMsg": "string",
- "results": { },
- "Data": { }
}这是浏览器账密模式的 /Action/call 映射文档。
/Action/callPOST /api/v4.0/routing/app-protocolsroute/network-stream-l7.jsonstream_layer7add此 OpenAPI path 是为了让每个接口在文档中单独展示;调用设备时仍应 POST /Action/call,请求体使用本接口示例中的 JSON。
该接口属于写操作或状态变更操作。批量测试默认不执行写操作。
| func_name required | string Value: "stream_layer7" 爱快前端模块函数名 |
| action required | string Value: "add" 爱快前端动作名 |
required | object Default: {"enabled":"no","tagname":"codex_test","comment":"codex_test","interface":"wan2","mode":0,"prio":1,"iface_band":0,"src_addr":{"custom":["192.168.9.169","08:9b:4b:00:10:1e"],"object":[{"type":0,"gp_name":"11","gid":"GPIP1"}]},"app_proto":{"custom":["其它HTTP","文件传输","DNS","Baidu"]},"time":{"custom":[{"type":"weekly","weekdays":"1234567","start_time":"00:00","end_time":"20:00","comment":"codex_test"}],"object":[{"type":4,"gp_name":"11","gid":"TIMEGP1"}]}} 传给该 func/action 的参数对象。不同接口的 TYPE 和字段不同。 |
{- "func_name": "stream_layer7",
- "action": "add",
- "param": {
- "enabled": "no",
- "tagname": "codex_test",
- "comment": "codex_test",
- "interface": "wan2",
- "mode": 0,
- "prio": 1,
- "iface_band": 0,
- "src_addr": {
- "custom": [
- "192.168.9.169",
- "08:9b:4b:00:10:1e"
], - "object": [
- {
- "type": 0,
- "gp_name": "11",
- "gid": "GPIP1"
}
]
}, - "app_proto": {
- "custom": [
- "其它HTTP",
- "文件传输",
- "DNS",
- "Baidu"
]
}, - "time": {
- "custom": [
- {
- "type": "weekly",
- "weekdays": "1234567",
- "start_time": "00:00",
- "end_time": "20:00",
- "comment": "codex_test"
}
], - "object": [
- {
- "type": 4,
- "gp_name": "11",
- "gid": "TIMEGP1"
}
]
}
}
}{- "code": 0,
- "message": "string",
- "Result": 0,
- "ErrMsg": "string",
- "results": { },
- "Data": { }
}这是浏览器账密模式的 /Action/call 映射文档。
/Action/callDELETE /api/v4.0/routing/app-protocols/{id}route/network-stream-l7.jsonstream_layer7del此 OpenAPI path 是为了让每个接口在文档中单独展示;调用设备时仍应 POST /Action/call,请求体使用本接口示例中的 JSON。
该接口属于写操作或状态变更操作。批量测试默认不执行写操作。
| func_name required | string Value: "stream_layer7" 爱快前端模块函数名 |
| action required | string Value: "del" 爱快前端动作名 |
required | object Default: {"id":"99999999"} 传给该 func/action 的参数对象。不同接口的 TYPE 和字段不同。 |
{- "func_name": "stream_layer7",
- "action": "del",
- "param": {
- "id": "99999999"
}
}{- "code": 0,
- "message": "string",
- "Result": 0,
- "ErrMsg": "string",
- "results": { },
- "Data": { }
}这是浏览器账密模式的 /Action/call 映射文档。
/Action/callGET /api/v4.0/routing/app-protocols/{id}route/network-stream-l7.jsonstream_layer7show此 OpenAPI path 是为了让每个接口在文档中单独展示;调用设备时仍应 POST /Action/call,请求体使用本接口示例中的 JSON。
| func_name required | string Value: "stream_layer7" 爱快前端模块函数名 |
| action required | string Value: "show" 爱快前端动作名 |
required | object Default: {"TYPE":"total,data","limit":"0,500","id":"99999999"} 传给该 func/action 的参数对象。不同接口的 TYPE 和字段不同。 |
{- "func_name": "stream_layer7",
- "action": "show",
- "param": {
- "TYPE": "total,data",
- "limit": "0,500",
- "id": "99999999"
}
}{- "code": 0,
- "message": "string",
- "Result": 0,
- "ErrMsg": "string",
- "results": { },
- "Data": { }
}这是浏览器账密模式的 /Action/call 映射文档。
/Action/callPATCH /api/v4.0/routing/app-protocols/{id}route/network-stream-l7.jsonstream_layer7edit此 OpenAPI path 是为了让每个接口在文档中单独展示;调用设备时仍应 POST /Action/call,请求体使用本接口示例中的 JSON。
该接口属于写操作或状态变更操作。批量测试默认不执行写操作。
| func_name required | string Value: "stream_layer7" 爱快前端模块函数名 |
| action required | string Value: "edit" 爱快前端动作名 |
required | object Default: {"enabled":"no","id":"99999999"} 传给该 func/action 的参数对象。不同接口的 TYPE 和字段不同。 |
{- "func_name": "stream_layer7",
- "action": "edit",
- "param": {
- "enabled": "no",
- "id": "99999999"
}
}{- "code": 0,
- "message": "string",
- "Result": 0,
- "ErrMsg": "string",
- "results": { },
- "Data": { }
}这是浏览器账密模式的 /Action/call 映射文档。
/Action/callPUT /api/v4.0/routing/app-protocols/{id}route/network-stream-l7.jsonstream_layer7edit此 OpenAPI path 是为了让每个接口在文档中单独展示;调用设备时仍应 POST /Action/call,请求体使用本接口示例中的 JSON。
该接口属于写操作或状态变更操作。批量测试默认不执行写操作。
| func_name required | string Value: "stream_layer7" 爱快前端模块函数名 |
| action required | string Value: "edit" 爱快前端动作名 |
required | object Default: {"enabled":"no","tagname":"codex_test","comment":"codex_test","interface":"wan2","mode":0,"prio":1,"iface_band":0,"src_addr":{"custom":["192.168.9.169","08:9b:4b:00:10:1e"],"object":[{"type":0,"gp_name":"iKuai-Group","gid":"GPIP1"}]},"app_proto":{"custom":["其它HTTP","文件传输","DNS","Baidu"]},"time":{"custom":[{"type":"weekly","weekdays":"1234567","start_time":"00:00","end_time":"20:00","comment":"codex_test"}],"object":[{"type":4,"gp_name":"iKuai-TimeGroup","gid":"TIMEGP1"}]},"id":"99999999"} 传给该 func/action 的参数对象。不同接口的 TYPE 和字段不同。 |
{- "func_name": "stream_layer7",
- "action": "edit",
- "param": {
- "enabled": "no",
- "tagname": "codex_test",
- "comment": "codex_test",
- "interface": "wan2",
- "mode": 0,
- "prio": 1,
- "iface_band": 0,
- "src_addr": {
- "custom": [
- "192.168.9.169",
- "08:9b:4b:00:10:1e"
], - "object": [
- {
- "type": 0,
- "gp_name": "iKuai-Group",
- "gid": "GPIP1"
}
]
}, - "app_proto": {
- "custom": [
- "其它HTTP",
- "文件传输",
- "DNS",
- "Baidu"
]
}, - "time": {
- "custom": [
- {
- "type": "weekly",
- "weekdays": "1234567",
- "start_time": "00:00",
- "end_time": "20:00",
- "comment": "codex_test"
}
], - "object": [
- {
- "type": 4,
- "gp_name": "iKuai-TimeGroup",
- "gid": "TIMEGP1"
}
]
}, - "id": "99999999"
}
}{- "code": 0,
- "message": "string",
- "Result": 0,
- "ErrMsg": "string",
- "results": { },
- "Data": { }
}这是浏览器账密模式的 /Action/call 映射文档。
/Action/callGET /api/v4.0/routing/domain-rulesroute/network-stream-domain.jsonstream_domainshow此 OpenAPI path 是为了让每个接口在文档中单独展示;调用设备时仍应 POST /Action/call,请求体使用本接口示例中的 JSON。
| func_name required | string Value: "stream_domain" 爱快前端模块函数名 |
| action required | string Value: "show" 爱快前端动作名 |
required | object Default: {"TYPE":"data,total","limit":"0,500"} 传给该 func/action 的参数对象。不同接口的 TYPE 和字段不同。 |
{- "func_name": "stream_domain",
- "action": "show",
- "param": {
- "TYPE": "data,total",
- "limit": "0,500"
}
}{- "code": 0,
- "message": "string",
- "Result": 0,
- "ErrMsg": "string",
- "results": { },
- "Data": { }
}这是浏览器账密模式的 /Action/call 映射文档。
/Action/callPOST /api/v4.0/routing/domain-rulesroute/network-stream-domain.jsonstream_domainadd此 OpenAPI path 是为了让每个接口在文档中单独展示;调用设备时仍应 POST /Action/call,请求体使用本接口示例中的 JSON。
该接口属于写操作或状态变更操作。批量测试默认不执行写操作。
| func_name required | string Value: "stream_domain" 爱快前端模块函数名 |
| action required | string Value: "add" 爱快前端动作名 |
required | object Default: {"enabled":"no","tagname":"codex_test","comment":"codex_test","domain":"example.invalid","interface":"wan2","prio":31,"src_addr":{"custom":["192.168.9.169","08:9b:4b:00:10:1e"],"object":[{"type":0,"gp_name":"11","gid":"GPIP1"},{"type":2,"gp_name":"22","gid":"MACIP1"}]},"time":{"custom":[{"type":"weekly","weekdays":"1234567","start_time":"00:00","end_time":"20:00","comment":"codex_test"}],"object":[{"type":4,"gp_name":"11","gid":"TIMEGP1"}]}} 传给该 func/action 的参数对象。不同接口的 TYPE 和字段不同。 |
{- "func_name": "stream_domain",
- "action": "add",
- "param": {
- "enabled": "no",
- "tagname": "codex_test",
- "comment": "codex_test",
- "domain": "example.invalid",
- "interface": "wan2",
- "prio": 31,
- "src_addr": {
- "custom": [
- "192.168.9.169",
- "08:9b:4b:00:10:1e"
], - "object": [
- {
- "type": 0,
- "gp_name": "11",
- "gid": "GPIP1"
}, - {
- "type": 2,
- "gp_name": "22",
- "gid": "MACIP1"
}
]
}, - "time": {
- "custom": [
- {
- "type": "weekly",
- "weekdays": "1234567",
- "start_time": "00:00",
- "end_time": "20:00",
- "comment": "codex_test"
}
], - "object": [
- {
- "type": 4,
- "gp_name": "11",
- "gid": "TIMEGP1"
}
]
}
}
}{- "code": 0,
- "message": "string",
- "Result": 0,
- "ErrMsg": "string",
- "results": { },
- "Data": { }
}这是浏览器账密模式的 /Action/call 映射文档。
/Action/callDELETE /api/v4.0/routing/domain-rules/{id}route/network-stream-domain.jsonstream_domaindel此 OpenAPI path 是为了让每个接口在文档中单独展示;调用设备时仍应 POST /Action/call,请求体使用本接口示例中的 JSON。
该接口属于写操作或状态变更操作。批量测试默认不执行写操作。
| func_name required | string Value: "stream_domain" 爱快前端模块函数名 |
| action required | string Value: "del" 爱快前端动作名 |
required | object Default: {"id":"99999999"} 传给该 func/action 的参数对象。不同接口的 TYPE 和字段不同。 |
{- "func_name": "stream_domain",
- "action": "del",
- "param": {
- "id": "99999999"
}
}{- "code": 0,
- "message": "string",
- "Result": 0,
- "ErrMsg": "string",
- "results": { },
- "Data": { }
}这是浏览器账密模式的 /Action/call 映射文档。
/Action/callGET /api/v4.0/routing/domain-rules/{id}route/network-stream-domain.jsonstream_domainshow此 OpenAPI path 是为了让每个接口在文档中单独展示;调用设备时仍应 POST /Action/call,请求体使用本接口示例中的 JSON。
| func_name required | string Value: "stream_domain" 爱快前端模块函数名 |
| action required | string Value: "show" 爱快前端动作名 |
required | object Default: {"TYPE":"data,total","limit":"0,500","id":"99999999"} 传给该 func/action 的参数对象。不同接口的 TYPE 和字段不同。 |
{- "func_name": "stream_domain",
- "action": "show",
- "param": {
- "TYPE": "data,total",
- "limit": "0,500",
- "id": "99999999"
}
}{- "code": 0,
- "message": "string",
- "Result": 0,
- "ErrMsg": "string",
- "results": { },
- "Data": { }
}这是浏览器账密模式的 /Action/call 映射文档。
/Action/callPATCH /api/v4.0/routing/domain-rules/{id}route/network-stream-domain.jsonstream_domainedit此 OpenAPI path 是为了让每个接口在文档中单独展示;调用设备时仍应 POST /Action/call,请求体使用本接口示例中的 JSON。
该接口属于写操作或状态变更操作。批量测试默认不执行写操作。
| func_name required | string Value: "stream_domain" 爱快前端模块函数名 |
| action required | string Value: "edit" 爱快前端动作名 |
required | object Default: {"enabled":"no","id":"99999999"} 传给该 func/action 的参数对象。不同接口的 TYPE 和字段不同。 |
{- "func_name": "stream_domain",
- "action": "edit",
- "param": {
- "enabled": "no",
- "id": "99999999"
}
}{- "code": 0,
- "message": "string",
- "Result": 0,
- "ErrMsg": "string",
- "results": { },
- "Data": { }
}这是浏览器账密模式的 /Action/call 映射文档。
/Action/callPUT /api/v4.0/routing/domain-rules/{id}route/network-stream-domain.jsonstream_domainedit此 OpenAPI path 是为了让每个接口在文档中单独展示;调用设备时仍应 POST /Action/call,请求体使用本接口示例中的 JSON。
该接口属于写操作或状态变更操作。批量测试默认不执行写操作。
| func_name required | string Value: "stream_domain" 爱快前端模块函数名 |
| action required | string Value: "edit" 爱快前端动作名 |
required | object Default: {"enabled":"no","tagname":"codex_test","comment":"codex_test","domain":"example.invalid","interface":"wan2","prio":31,"src_addr":{"custom":["192.168.9.169","08:9b:4b:00:10:1e"],"object":[{"type":0,"gp_name":"iKuai-Group","gid":"GPIP1"},{"type":2,"gp_name":"iKuai-Mac","gid":"MACIP1"}]},"time":{"custom":[{"type":"weekly","weekdays":"1234567","start_time":"00:00","end_time":"20:00","comment":"codex_test"}],"object":[{"type":4,"gp_name":"iKuai-TimeGroup","gid":"TIMEGP1"}]},"id":"99999999"} 传给该 func/action 的参数对象。不同接口的 TYPE 和字段不同。 |
{- "func_name": "stream_domain",
- "action": "edit",
- "param": {
- "enabled": "no",
- "tagname": "codex_test",
- "comment": "codex_test",
- "domain": "example.invalid",
- "interface": "wan2",
- "prio": 31,
- "src_addr": {
- "custom": [
- "192.168.9.169",
- "08:9b:4b:00:10:1e"
], - "object": [
- {
- "type": 0,
- "gp_name": "iKuai-Group",
- "gid": "GPIP1"
}, - {
- "type": 2,
- "gp_name": "iKuai-Mac",
- "gid": "MACIP1"
}
]
}, - "time": {
- "custom": [
- {
- "type": "weekly",
- "weekdays": "1234567",
- "start_time": "00:00",
- "end_time": "20:00",
- "comment": "codex_test"
}
], - "object": [
- {
- "type": 4,
- "gp_name": "iKuai-TimeGroup",
- "gid": "TIMEGP1"
}
]
}, - "id": "99999999"
}
}{- "code": 0,
- "message": "string",
- "Result": 0,
- "ErrMsg": "string",
- "results": { },
- "Data": { }
}这是浏览器账密模式的 /Action/call 映射文档。
/Action/callGET /api/v4.0/routing/load-balance-rulesroute/network-stream-load.jsonlb_pccshow此 OpenAPI path 是为了让每个接口在文档中单独展示;调用设备时仍应 POST /Action/call,请求体使用本接口示例中的 JSON。
| func_name required | string Value: "lb_pcc" 爱快前端模块函数名 |
| action required | string Value: "show" 爱快前端动作名 |
required | object Default: {"TYPE":"data,total","limit":"0,500"} 传给该 func/action 的参数对象。不同接口的 TYPE 和字段不同。 |
{- "func_name": "lb_pcc",
- "action": "show",
- "param": {
- "TYPE": "data,total",
- "limit": "0,500"
}
}{- "code": 0,
- "message": "string",
- "Result": 0,
- "ErrMsg": "string",
- "results": { },
- "Data": { }
}这是浏览器账密模式的 /Action/call 映射文档。
/Action/callPOST /api/v4.0/routing/load-balance-rulesroute/network-stream-load.jsonlb_pccadd此 OpenAPI path 是为了让每个接口在文档中单独展示;调用设备时仍应 POST /Action/call,请求体使用本接口示例中的 JSON。
该接口属于写操作或状态变更操作。批量测试默认不执行写操作。
| func_name required | string Value: "lb_pcc" 爱快前端模块函数名 |
| action required | string Value: "add" 爱快前端动作名 |
required | object Default: {"mode":0,"comment":"codex_test","isp_name":"all","interface":"wan2","weight":"1","enabled":"no","tagname":"codex_test"} 传给该 func/action 的参数对象。不同接口的 TYPE 和字段不同。 |
{- "func_name": "lb_pcc",
- "action": "add",
- "param": {
- "mode": 0,
- "comment": "codex_test",
- "isp_name": "all",
- "interface": "wan2",
- "weight": "1",
- "enabled": "no",
- "tagname": "codex_test"
}
}{- "code": 0,
- "message": "string",
- "Result": 0,
- "ErrMsg": "string",
- "results": { },
- "Data": { }
}这是浏览器账密模式的 /Action/call 映射文档。
/Action/callDELETE /api/v4.0/routing/load-balance-rules/{id}route/network-stream-load.jsonlb_pccdel此 OpenAPI path 是为了让每个接口在文档中单独展示;调用设备时仍应 POST /Action/call,请求体使用本接口示例中的 JSON。
该接口属于写操作或状态变更操作。批量测试默认不执行写操作。
| func_name required | string Value: "lb_pcc" 爱快前端模块函数名 |
| action required | string Value: "del" 爱快前端动作名 |
required | object Default: {"id":"99999999"} 传给该 func/action 的参数对象。不同接口的 TYPE 和字段不同。 |
{- "func_name": "lb_pcc",
- "action": "del",
- "param": {
- "id": "99999999"
}
}{- "code": 0,
- "message": "string",
- "Result": 0,
- "ErrMsg": "string",
- "results": { },
- "Data": { }
}这是浏览器账密模式的 /Action/call 映射文档。
/Action/callGET /api/v4.0/routing/load-balance-rules/{id}route/network-stream-load.jsonlb_pccshow此 OpenAPI path 是为了让每个接口在文档中单独展示;调用设备时仍应 POST /Action/call,请求体使用本接口示例中的 JSON。
| func_name required | string Value: "lb_pcc" 爱快前端模块函数名 |
| action required | string Value: "show" 爱快前端动作名 |
required | object Default: {"TYPE":"data,total","limit":"0,500","id":"99999999"} 传给该 func/action 的参数对象。不同接口的 TYPE 和字段不同。 |
{- "func_name": "lb_pcc",
- "action": "show",
- "param": {
- "TYPE": "data,total",
- "limit": "0,500",
- "id": "99999999"
}
}{- "code": 0,
- "message": "string",
- "Result": 0,
- "ErrMsg": "string",
- "results": { },
- "Data": { }
}这是浏览器账密模式的 /Action/call 映射文档。
/Action/callPATCH /api/v4.0/routing/load-balance-rules/{id}route/network-stream-load.jsonlb_pccedit此 OpenAPI path 是为了让每个接口在文档中单独展示;调用设备时仍应 POST /Action/call,请求体使用本接口示例中的 JSON。
该接口属于写操作或状态变更操作。批量测试默认不执行写操作。
| func_name required | string Value: "lb_pcc" 爱快前端模块函数名 |
| action required | string Value: "edit" 爱快前端动作名 |
required | object Default: {"enabled":"no","id":"99999999"} 传给该 func/action 的参数对象。不同接口的 TYPE 和字段不同。 |
{- "func_name": "lb_pcc",
- "action": "edit",
- "param": {
- "enabled": "no",
- "id": "99999999"
}
}{- "code": 0,
- "message": "string",
- "Result": 0,
- "ErrMsg": "string",
- "results": { },
- "Data": { }
}这是浏览器账密模式的 /Action/call 映射文档。
/Action/callPUT /api/v4.0/routing/load-balance-rules/{id}route/network-stream-load.jsonlb_pccedit此 OpenAPI path 是为了让每个接口在文档中单独展示;调用设备时仍应 POST /Action/call,请求体使用本接口示例中的 JSON。
该接口属于写操作或状态变更操作。批量测试默认不执行写操作。
| func_name required | string Value: "lb_pcc" 爱快前端模块函数名 |
| action required | string Value: "edit" 爱快前端动作名 |
required | object Default: {"tagname":"codex_test","interface":"wan2","mode":0,"enabled":"no","weight":"1","isp_name":"all","id":"99999999"} 传给该 func/action 的参数对象。不同接口的 TYPE 和字段不同。 |
{- "func_name": "lb_pcc",
- "action": "edit",
- "param": {
- "tagname": "codex_test",
- "interface": "wan2",
- "mode": 0,
- "enabled": "no",
- "weight": "1",
- "isp_name": "all",
- "id": "99999999"
}
}{- "code": 0,
- "message": "string",
- "Result": 0,
- "ErrMsg": "string",
- "results": { },
- "Data": { }
}这是浏览器账密模式的 /Action/call 映射文档。
/Action/callGET /api/v4.0/routing/five-tuple-rulesroute/network-stream-ipport.jsonstream_ipportshow此 OpenAPI path 是为了让每个接口在文档中单独展示;调用设备时仍应 POST /Action/call,请求体使用本接口示例中的 JSON。
| func_name required | string Value: "stream_ipport" 爱快前端模块函数名 |
| action required | string Value: "show" 爱快前端动作名 |
required | object Default: {"TYPE":"data,total","limit":"0,500"} 传给该 func/action 的参数对象。不同接口的 TYPE 和字段不同。 |
{- "func_name": "stream_ipport",
- "action": "show",
- "param": {
- "TYPE": "data,total",
- "limit": "0,500"
}
}{- "code": 0,
- "message": "string",
- "Result": 0,
- "ErrMsg": "string",
- "results": { },
- "Data": { }
}这是浏览器账密模式的 /Action/call 映射文档。
/Action/callPOST /api/v4.0/routing/five-tuple-rulesroute/network-stream-ipport.jsonstream_ipportadd此 OpenAPI path 是为了让每个接口在文档中单独展示;调用设备时仍应 POST /Action/call,请求体使用本接口示例中的 JSON。
该接口属于写操作或状态变更操作。批量测试默认不执行写操作。
| func_name required | string Value: "stream_ipport" 爱快前端模块函数名 |
| action required | string Value: "add" 爱快前端动作名 |
required | object Default: {"enabled":"no","tagname":"codex_test","type":0,"interface":"wan2","protocol":"tcp","prio":31,"mode":0,"src_addr":{"custom":["192.168.9.169","08:9b:4b:00:10:6e"],"object":[{"type":0,"gp_name":"11","gid":"GPIP1"}]},"time":{"custom":[{"type":"weekly","weekdays":"1234567","start_time":"00:00","end_time":"20:00","comment":"codex_test"}],"object":[{"type":4,"gp_name":"11","gid":"TIMEGP1"}]}} 传给该 func/action 的参数对象。不同接口的 TYPE 和字段不同。 |
{- "func_name": "stream_ipport",
- "action": "add",
- "param": {
- "enabled": "no",
- "tagname": "codex_test",
- "type": 0,
- "interface": "wan2",
- "protocol": "tcp",
- "prio": 31,
- "mode": 0,
- "src_addr": {
- "custom": [
- "192.168.9.169",
- "08:9b:4b:00:10:6e"
], - "object": [
- {
- "type": 0,
- "gp_name": "11",
- "gid": "GPIP1"
}
]
}, - "time": {
- "custom": [
- {
- "type": "weekly",
- "weekdays": "1234567",
- "start_time": "00:00",
- "end_time": "20:00",
- "comment": "codex_test"
}
], - "object": [
- {
- "type": 4,
- "gp_name": "11",
- "gid": "TIMEGP1"
}
]
}
}
}{- "code": 0,
- "message": "string",
- "Result": 0,
- "ErrMsg": "string",
- "results": { },
- "Data": { }
}这是浏览器账密模式的 /Action/call 映射文档。
/Action/callDELETE /api/v4.0/routing/five-tuple-rules/{id}route/network-stream-ipport.jsonstream_ipportdel此 OpenAPI path 是为了让每个接口在文档中单独展示;调用设备时仍应 POST /Action/call,请求体使用本接口示例中的 JSON。
该接口属于写操作或状态变更操作。批量测试默认不执行写操作。
| func_name required | string Value: "stream_ipport" 爱快前端模块函数名 |
| action required | string Value: "del" 爱快前端动作名 |
required | object Default: {"id":"99999999"} 传给该 func/action 的参数对象。不同接口的 TYPE 和字段不同。 |
{- "func_name": "stream_ipport",
- "action": "del",
- "param": {
- "id": "99999999"
}
}{- "code": 0,
- "message": "string",
- "Result": 0,
- "ErrMsg": "string",
- "results": { },
- "Data": { }
}这是浏览器账密模式的 /Action/call 映射文档。
/Action/callGET /api/v4.0/routing/five-tuple-rules/{id}route/network-stream-ipport.jsonstream_ipportshow此 OpenAPI path 是为了让每个接口在文档中单独展示;调用设备时仍应 POST /Action/call,请求体使用本接口示例中的 JSON。
| func_name required | string Value: "stream_ipport" 爱快前端模块函数名 |
| action required | string Value: "show" 爱快前端动作名 |
required | object Default: {"TYPE":"data,total","limit":"0,500","id":"99999999"} 传给该 func/action 的参数对象。不同接口的 TYPE 和字段不同。 |
{- "func_name": "stream_ipport",
- "action": "show",
- "param": {
- "TYPE": "data,total",
- "limit": "0,500",
- "id": "99999999"
}
}{- "code": 0,
- "message": "string",
- "Result": 0,
- "ErrMsg": "string",
- "results": { },
- "Data": { }
}这是浏览器账密模式的 /Action/call 映射文档。
/Action/callPATCH /api/v4.0/routing/five-tuple-rules/{id}route/network-stream-ipport.jsonstream_ipportedit此 OpenAPI path 是为了让每个接口在文档中单独展示;调用设备时仍应 POST /Action/call,请求体使用本接口示例中的 JSON。
该接口属于写操作或状态变更操作。批量测试默认不执行写操作。
| func_name required | string Value: "stream_ipport" 爱快前端模块函数名 |
| action required | string Value: "edit" 爱快前端动作名 |
required | object Default: {"enabled":"no","id":"99999999"} 传给该 func/action 的参数对象。不同接口的 TYPE 和字段不同。 |
{- "func_name": "stream_ipport",
- "action": "edit",
- "param": {
- "enabled": "no",
- "id": "99999999"
}
}{- "code": 0,
- "message": "string",
- "Result": 0,
- "ErrMsg": "string",
- "results": { },
- "Data": { }
}这是浏览器账密模式的 /Action/call 映射文档。
/Action/callPUT /api/v4.0/routing/five-tuple-rules/{id}route/network-stream-ipport.jsonstream_ipportedit此 OpenAPI path 是为了让每个接口在文档中单独展示;调用设备时仍应 POST /Action/call,请求体使用本接口示例中的 JSON。
该接口属于写操作或状态变更操作。批量测试默认不执行写操作。
| func_name required | string Value: "stream_ipport" 爱快前端模块函数名 |
| action required | string Value: "edit" 爱快前端动作名 |
required | object Default: {"enabled":"no","tagname":"codex_test","comment":"codex_test","type":0,"nexthop":"","interface":"wan2","protocol":"tcp","prio":31,"mode":0,"iface_band":0,"src_addr_inv":0,"dst_addr_inv":0,"src_addr":{"custom":["192.168.9.169","08:9b:4b:00:10:6e"],"object":[{"type":0,"gp_name":"11","gid":"GPIP1"}]},"dst_addr":{},"src_port":{},"dst_port":{},"dst_type":0,"area_code":"","time":{"custom":[{"type":"weekly","weekdays":"1234567","start_time":"00:00","end_time":"20:00","comment":"codex_test"}],"object":[{"type":4,"gp_name":"11","gid":"TIMEGP1"}]},"id":"99999999"} 传给该 func/action 的参数对象。不同接口的 TYPE 和字段不同。 |
{- "func_name": "stream_ipport",
- "action": "edit",
- "param": {
- "enabled": "no",
- "tagname": "codex_test",
- "comment": "codex_test",
- "type": 0,
- "nexthop": "",
- "interface": "wan2",
- "protocol": "tcp",
- "prio": 31,
- "mode": 0,
- "iface_band": 0,
- "src_addr_inv": 0,
- "dst_addr_inv": 0,
- "src_addr": {
- "custom": [
- "192.168.9.169",
- "08:9b:4b:00:10:6e"
], - "object": [
- {
- "type": 0,
- "gp_name": "11",
- "gid": "GPIP1"
}
]
}, - "dst_addr": { },
- "src_port": { },
- "dst_port": { },
- "dst_type": 0,
- "area_code": "",
- "time": {
- "custom": [
- {
- "type": "weekly",
- "weekdays": "1234567",
- "start_time": "00:00",
- "end_time": "20:00",
- "comment": "codex_test"
}
], - "object": [
- {
- "type": 4,
- "gp_name": "11",
- "gid": "TIMEGP1"
}
]
}, - "id": "99999999"
}
}{- "code": 0,
- "message": "string",
- "Result": 0,
- "ErrMsg": "string",
- "results": { },
- "Data": { }
}这是浏览器账密模式的 /Action/call 映射文档。
/Action/callGET /api/v4.0/routing/static-routesroute/network-static-routes.jsonstatic_rtshow此 OpenAPI path 是为了让每个接口在文档中单独展示;调用设备时仍应 POST /Action/call,请求体使用本接口示例中的 JSON。
| func_name required | string Value: "static_rt" 爱快前端模块函数名 |
| action required | string Value: "show" 爱快前端动作名 |
required | object Default: {"TYPE":"total,data","limit":"0,500"} 传给该 func/action 的参数对象。不同接口的 TYPE 和字段不同。 |
{- "func_name": "static_rt",
- "action": "show",
- "param": {
- "TYPE": "total,data",
- "limit": "0,500"
}
}{- "code": 0,
- "message": "string",
- "Result": 0,
- "ErrMsg": "string",
- "results": { },
- "Data": { }
}这是浏览器账密模式的 /Action/call 映射文档。
/Action/callPOST /api/v4.0/routing/static-routesroute/network-static-routes.jsonstatic_rtadd此 OpenAPI path 是为了让每个接口在文档中单独展示;调用设备时仍应 POST /Action/call,请求体使用本接口示例中的 JSON。
该接口属于写操作或状态变更操作。批量测试默认不执行写操作。
| func_name required | string Value: "static_rt" 爱快前端模块函数名 |
| action required | string Value: "add" 爱快前端动作名 |
required | object Default: {"enabled":"no","tagname":"codex_test","comment":"codex_test","interface":"lan1","dst_addr":"192.168.2.0","netmask":"255.255.255.0","gateway":"192.0.2.254","prio":1,"ip_type":"4"} 传给该 func/action 的参数对象。不同接口的 TYPE 和字段不同。 |
{- "func_name": "static_rt",
- "action": "add",
- "param": {
- "enabled": "no",
- "tagname": "codex_test",
- "comment": "codex_test",
- "interface": "lan1",
- "dst_addr": "192.168.2.0",
- "netmask": "255.255.255.0",
- "gateway": "192.0.2.254",
- "prio": 1,
- "ip_type": "4"
}
}{- "code": 0,
- "message": "string",
- "Result": 0,
- "ErrMsg": "string",
- "results": { },
- "Data": { }
}这是浏览器账密模式的 /Action/call 映射文档。
/Action/callDELETE /api/v4.0/routing/static-routes/{id}route/network-static-routes.jsonstatic_rtdel此 OpenAPI path 是为了让每个接口在文档中单独展示;调用设备时仍应 POST /Action/call,请求体使用本接口示例中的 JSON。
该接口属于写操作或状态变更操作。批量测试默认不执行写操作。
| func_name required | string Value: "static_rt" 爱快前端模块函数名 |
| action required | string Value: "del" 爱快前端动作名 |
required | object Default: {"id":"99999999"} 传给该 func/action 的参数对象。不同接口的 TYPE 和字段不同。 |
{- "func_name": "static_rt",
- "action": "del",
- "param": {
- "id": "99999999"
}
}{- "code": 0,
- "message": "string",
- "Result": 0,
- "ErrMsg": "string",
- "results": { },
- "Data": { }
}这是浏览器账密模式的 /Action/call 映射文档。
/Action/callGET /api/v4.0/routing/static-routes/{id}route/network-static-routes.jsonstatic_rtshow此 OpenAPI path 是为了让每个接口在文档中单独展示;调用设备时仍应 POST /Action/call,请求体使用本接口示例中的 JSON。
| func_name required | string Value: "static_rt" 爱快前端模块函数名 |
| action required | string Value: "show" 爱快前端动作名 |
required | object Default: {"TYPE":"total,data","limit":"0,500","id":"99999999"} 传给该 func/action 的参数对象。不同接口的 TYPE 和字段不同。 |
{- "func_name": "static_rt",
- "action": "show",
- "param": {
- "TYPE": "total,data",
- "limit": "0,500",
- "id": "99999999"
}
}{- "code": 0,
- "message": "string",
- "Result": 0,
- "ErrMsg": "string",
- "results": { },
- "Data": { }
}这是浏览器账密模式的 /Action/call 映射文档。
/Action/callPATCH /api/v4.0/routing/static-routes/{id}route/network-static-routes.jsonstatic_rtedit此 OpenAPI path 是为了让每个接口在文档中单独展示;调用设备时仍应 POST /Action/call,请求体使用本接口示例中的 JSON。
该接口属于写操作或状态变更操作。批量测试默认不执行写操作。
| func_name required | string Value: "static_rt" 爱快前端模块函数名 |
| action required | string Value: "edit" 爱快前端动作名 |
required | object Default: {"enabled":"no","id":"99999999"} 传给该 func/action 的参数对象。不同接口的 TYPE 和字段不同。 |
{- "func_name": "static_rt",
- "action": "edit",
- "param": {
- "enabled": "no",
- "id": "99999999"
}
}{- "code": 0,
- "message": "string",
- "Result": 0,
- "ErrMsg": "string",
- "results": { },
- "Data": { }
}这是浏览器账密模式的 /Action/call 映射文档。
/Action/callPUT /api/v4.0/routing/static-routes/{id}route/network-static-routes.jsonstatic_rtedit此 OpenAPI path 是为了让每个接口在文档中单独展示;调用设备时仍应 POST /Action/call,请求体使用本接口示例中的 JSON。
该接口属于写操作或状态变更操作。批量测试默认不执行写操作。
| func_name required | string Value: "static_rt" 爱快前端模块函数名 |
| action required | string Value: "edit" 爱快前端动作名 |
required | object Default: {"tagname":"codex_test","enabled":"no","interface":"wan1","dst_addr":"192.168.2.0","netmask":"255.255.255.0","ip_type":"4","prio":1,"comment":"codex_test","gateway":"192.0.2.254","id":"99999999"} 传给该 func/action 的参数对象。不同接口的 TYPE 和字段不同。 |
{- "func_name": "static_rt",
- "action": "edit",
- "param": {
- "tagname": "codex_test",
- "enabled": "no",
- "interface": "wan1",
- "dst_addr": "192.168.2.0",
- "netmask": "255.255.255.0",
- "ip_type": "4",
- "prio": 1,
- "comment": "codex_test",
- "gateway": "192.0.2.254",
- "id": "99999999"
}
}{- "code": 0,
- "message": "string",
- "Result": 0,
- "ErrMsg": "string",
- "results": { },
- "Data": { }
}