TLS 双向认证

保护 Admin API

为什么使用

双向认证提供了一种更好的方法来阻止未经授权的对 APISIX Admin API 的访问。

客户端需要向服务器提供证书,服务器将检查该客户端证书是否由受信的 CA 签名,并决定是否响应其请求。

如何配置

  1. 生成自签证书对,包括 CA、server、client 证书对。

  2. 修改 conf/config.yaml 中的配置项:

conf/config.yaml

  1. admin_listen:
  2. ip: 127.0.0.1
  3. port: 9180
  4. https_admin: true
  5. admin_api_mtls:
  6. admin_ssl_ca_cert: "/data/certs/mtls_ca.crt" # Path of your self-signed ca cert.
  7. admin_ssl_cert: "/data/certs/mtls_server.crt" # Path of your self-signed server side cert.
  8. admin_ssl_cert_key: "/data/certs/mtls_server.key" # Path of your self-signed server side key.
  1. 执行命令,使配置生效:
  1. apisix init
  2. apisix reload

客户端如何调用

需要将证书文件的路径与域名按实际情况替换。

  • 注意:提供的 CA 证书需要与服务端的相同。*
  1. curl --cacert /data/certs/mtls_ca.crt --key /data/certs/mtls_client.key --cert /data/certs/mtls_client.crt https://admin.apisix.dev:9180/apisix/admin/routes -H 'X-API-KEY: edd1c9f034335f136f87ad84b625c8f1'

保护 ETCD

如何配置

你需要构建 APISIX-Base,并且需要在配置文件中设定 etcd.tls 来使 ETCD 的双向认证功能正常工作。

conf/config.yaml

  1. deployment:
  2. role: traditional
  3. role_traditional:
  4. config_provider: etcd
  5. etcd:
  6. tls:
  7. cert: /data/certs/etcd_client.pem # path of certificate used by the etcd client
  8. key: /data/certs/etcd_client.key # path of key used by the etcd client

如果 APISIX 不信任 etcd server 使用的 CA 证书,我们需要设置 CA 证书。

conf/config.yaml

  1. apisix:
  2. ssl:
  3. ssl_trusted_certificate: /path/to/certs/ca-certificates.crt # path of CA certificate used by the etcd server

保护路由

为什么使用

双向认证是一种密码学安全的验证客户端身份的手段。当你需要加密并保护流量的双向安全时很有用。

  • 注意:双向认证只发生在 HTTPS 中。如果你的路由也可以通过 HTTP 访问,你应该在 HTTP 中添加额外的保护,或者禁止通过 HTTP 访问。*

如何配置

我们提供了一个演示教程,详细地讲解了如何配置客户端和 APISIX 之间的 mTLS。

在配置 ssl 资源时,同时需要配置 client.caclient.depth 参数,分别代表为客户端证书签名的 CA 列表,和证书链的最大深度。可参考:SSL API 文档

下面是一个可用于生成带双向认证配置的 SSL 资源的 Python 脚本示例。如果需要,可修改 API 地址、API Key 和 SSL 资源的 ID。

create-ssl.py

  1. #!/usr/bin/env python
  2. # coding: utf-8
  3. import sys
  4. # sudo pip install requests
  5. import requests
  6. if len(sys.argv) < 4:
  7. print("bad argument")
  8. sys.exit(1)
  9. with open(sys.argv[1]) as f:
  10. cert = f.read()
  11. with open(sys.argv[2]) as f:
  12. key = f.read()
  13. sni = sys.argv[3]
  14. api_key = "edd1c9f034335f136f87ad84b625c8f1" # Change it
  15. reqParam = {
  16. "cert": cert,
  17. "key": key,
  18. "snis": [sni],
  19. }
  20. if len(sys.argv) >= 5:
  21. print("Setting mTLS")
  22. reqParam["client"] = {}
  23. with open(sys.argv[4]) as f:
  24. clientCert = f.read()
  25. reqParam["client"]["ca"] = clientCert
  26. if len(sys.argv) >= 6:
  27. reqParam["client"]["depth"] = int(sys.argv[5])
  28. resp = requests.put("http://127.0.0.1:9180/apisix/admin/ssls/1", json=reqParam, headers={
  29. "X-API-KEY": api_key,
  30. })
  31. print(resp.status_code)
  32. print(resp.text)

使用上述 Python 脚本创建 SSL 资源:

  1. ./create-ssl.py ./server.pem ./server.key 'mtls.test.com' ./client_ca.pem 10
  2. # 测试
  3. curl --resolve 'mtls.test.com:<APISIX_HTTPS_PORT>:<APISIX_URL>' "https://<APISIX_URL>:<APISIX_HTTPS_PORT>/hello" -k --cert ./client.pem --key ./client.key

注意,测试时使用的域名需要符合证书的参数。

APISIX 与上游间的双向认证

为什么使用

有时候上游的服务启用了双向认证。在这种情况下,APISIX 作为上游服务的客户端,需要提供客户端证书来正常与其进行通信。

如何配置

在配置 upstream 资源时,可以使用参数 tls.client_certtls.client_key 来配置 APISIX 用于与上游进行通讯时使用的证书。可参考 Upstream API 文档

该功能需要 APISIX 运行在 APISIX-Base 上。

下面是一个与配置 SSL 时相似的 Python 脚本,可为一个已存在的 upstream 资源配置双向认证。如果需要,可修改 API 地址和 API Key。

patch_upstream_mtls.py

  1. #!/usr/bin/env python
  2. # coding: utf-8
  3. import sys
  4. # sudo pip install requests
  5. import requests
  6. if len(sys.argv) < 4:
  7. print("bad argument")
  8. sys.exit(1)
  9. with open(sys.argv[2]) as f:
  10. cert = f.read()
  11. with open(sys.argv[3]) as f:
  12. key = f.read()
  13. id = sys.argv[1]
  14. api_key = "edd1c9f034335f136f87ad84b625c8f1" # Change it
  15. reqParam = {
  16. "tls": {
  17. "client_cert": cert,
  18. "client_key": key,
  19. },
  20. }
  21. resp = requests.patch("http://127.0.0.1:9180/apisix/admin/upstreams/"+id, json=reqParam, headers={
  22. "X-API-KEY": api_key,
  23. })
  24. print(resp.status_code)
  25. print(resp.text)

为 ID 为 testmtls 的 upstream 配置双向认证:

  1. ./patch_upstream_mtls.py testmtls ./client.pem ./client.key