consumer-restriction
note
不同的 type
属性值分别代表以下含义:
consumer_name
:把 Consumer 的username
列入白名单或黑名单来限制 Consumer 对 Route 或 Service 的访问。service_id
:把 Service 的id
列入白名单或黑名单来限制 Consumer 对 Service 的访问,需要结合授权插件一起使用。route_id
:把 Route 的id
列入白名单或黑名单来限制 Consumer 对 Route 的访问。
首先,创建两个 Consumer,分别为 jack1
和 jack2
:
然后,在指定路由上启用并配置 consumer-restriction
插件,并通过将 consumer_name
加入 whitelist
来限制不同 Consumer 的访问:
curl http://127.0.0.1:9180/apisix/admin/routes/1 -H 'X-API-KEY: edd1c9f034335f136f87ad84b625c8f1' -X PUT -d '
{
"uri": "/index.html",
"upstream": {
"type": "roundrobin",
"nodes": {
"127.0.0.1:1980": 1
}
},
"plugins": {
"basic-auth": {},
"consumer-restriction": {
"whitelist": [
"jack1"
]
}
}
}'
测试插件
jack1
发出访问请求,返回 200
HTTP 状态码,代表访问成功:
curl -u jack2019:123456 http://127.0.0.1:9080/index.html -i
HTTP/1.1 200 OK
jack2
发出访问请求,返回 403
HTTP 状态码,代表访问被限制,插件生效:
curl -u jack2020:123456 http://127.0.0.1:9080/index.html -i
HTTP/1.1 403 Forbidden
...
{"message":"The consumer_name is forbidden."}
然后,在指定路由上启用并配置 consumer-restriction
插件,并且仅允许 jack1
使用 POST
方法进行访问:
curl http://127.0.0.1:9180/apisix/admin/routes/1 -H 'X-API-KEY: edd1c9f034335f136f87ad84b625c8f1' -X PUT -d '
{
"uri": "/index.html",
"upstream": {
"type": "roundrobin",
"nodes": {
"127.0.0.1:1980": 1
}
},
"plugins": {
"consumer-restriction": {
"allowed_by_methods":[{
"user": "jack1",
}]
}
}
}'
测试插件
jack1
发出访问请求,返回 403
HTTP 状态码,代表访问被限制:
HTTP/1.1 403 Forbidden
...
{"message":"The consumer_name is forbidden."}
现在更新插件配置,增加 jack1
的 GET
访问能力:
curl http://127.0.0.1:9180/apisix/admin/routes/1 -H 'X-API-KEY: edd1c9f034335f136f87ad84b625c8f1' -X PUT -d '
{
"uri": "/index.html",
"upstream": {
"type": "roundrobin",
"nodes": {
"127.0.0.1:1980": 1
}
},
"plugins": {
"basic-auth": {},
"consumer-restriction": {
"allowed_by_methods":[{
"user": "jack1",
"methods": ["POST","GET"]
}]
}
}
}'
jack1
再次发出访问请求,返回 200
HTTP 状态码,代表访问成功:
curl -u jack2019:123456 http://127.0.0.1:9080/index.html
HTTP/1.1 200 OK
使用 service_id
的方式需要与授权插件一起配合使用,这里以 key-auth 授权插件为例。
curl http://127.0.0.1:9180/apisix/admin/services/1 -H 'X-API-KEY: edd1c9f034335f136f87ad84b625c8f1' -X PUT -d '
{
"upstream": {
"nodes": {
"127.0.0.1:1980": 1
},
"type": "roundrobin"
},
"desc": "new service 001"
}'
curl http://127.0.0.1:9180/apisix/admin/services/2 -H 'X-API-KEY: edd1c9f034335f136f87ad84b625c8f1' -X PUT -d '
{
"upstream": {
"nodes": {
"127.0.0.1:1980": 1
},
"type": "roundrobin"
},
"desc": "new service 002"
}'
在指定 Consumer 上配置 key-auth
和 插件,并通过将 service_id
加入 whitelist
来限制 Consumer 对 Service 的访问:
{
"username": "new_consumer",
"plugins": {
"key-auth": {
"key": "auth-jack"
},
"consumer-restriction": {
"type": "service_id",
"whitelist": [
"1"
],
"rejected_code": 403
}
}
}'
测试插件
在指定路由上启用并配置 key-auth
插件,并绑定 service_id
为 1
:
对 Service 发出访问请求,返回 403
HTTP 状态码,说明在白名单列中的 service_id
允许访问,插件生效:
curl http://127.0.0.1:9080/index.html -H 'apikey: auth-jack' -i
HTTP/1.1 200 OK
更新配置 key-auth
插件,并绑定 service_id
为 2
:
curl http://127.0.0.1:9180/apisix/admin/routes/1 -H 'X-API-KEY: edd1c9f034335f136f87ad84b625c8f1' -X PUT -d '
{
"uri": "/index.html",
"upstream": {
"type": "roundrobin",
"nodes": {
"127.0.0.1:1980": 1
}
},
"service_id": 2,
"plugins": {
"key-auth": {
}
}
}'
再次对 Service 发出访问请求,返回 403
HTTP 状态码,说明不在白名单列表的 service_id
被拒绝访问,插件生效:
curl http://127.0.0.1:9080/index.html -H 'apikey: auth-jack' -i
HTTP/1.1 403 Forbidden
...
{"message":"The service_id is forbidden."}
curl http://127.0.0.1:9180/apisix/admin/routes/1 -H 'X-API-KEY: edd1c9f034335f136f87ad84b625c8f1' -X PUT -d '
{
"uri": "/index.html",
"upstream": {
"type": "roundrobin",
"nodes": {
"127.0.0.1:1980": 1
}
},
"plugins": {
"basic-auth": {}
}
}'