配置 Kerberos

编辑

您可以为任何支持 Kerberos 的输出或输入(如 Elasticsearch)指定 Kerberos 选项。

支持以下加密类型:

  • aes128-cts-hmac-sha1-96
  • aes128-cts-hmac-sha256-128
  • aes256-cts-hmac-sha1-96
  • aes256-cts-hmac-sha384-192
  • des3-cbc-sha1-kd
  • rc4-hmac

使用基于 Kerberos 密码的身份验证的输出配置示例

output.elasticsearch.hosts: ["http://my-elasticsearch.elastic.co:9200"]
output.elasticsearch.kerberos.auth_type: password
output.elasticsearch.kerberos.username: "elastic"
output.elasticsearch.kerberos.password: "changeme"
output.elasticsearch.kerberos.config_path: "/etc/krb5.conf"
output.elasticsearch.kerberos.realm: "ELASTIC.CO"

Elasticsearch 实例的服务主体名称由这些选项构建。基于此配置,它将是 HTTP/[email protected]

配置选项

编辑

您可以在 filebeat.yml 配置文件的 kerberos 部分中指定以下选项

enabled

编辑

通过将 enabled 设置为 false,可以禁用 Kerberos 配置。默认值为 true

如果 enabled 设置为 false 或缺少 kerberos 部分,则禁用 Kerberos 设置。

auth_type

编辑

有两种选项可以使用 Kerberos KDC 进行身份验证:passwordkeytab

password 需要主体名称及其密码。选择 keytab 时,您必须指定主体名称和密钥表路径。密钥表必须包含所选主体的密钥。否则,身份验证将失败。

config_path

编辑

您需要设置 krb5.conf 的路径,以便 Filebeat 可以找到 Kerberos KDC 来检索票证。

username

编辑

用于连接到输出的主体名称。

password

编辑

如果您为 auth_type 配置了 password,则必须为所选主体提供密码。

keytab

编辑

如果您为 auth_type 配置了 keytab,则必须提供所选主体的密钥表路径。

service_name

编辑

此选项只能为 Kafka 配置。它是 Kafka 服务的名称,通常为 kafka

realm

编辑

输出所在的领域名称。

enable_krb5_fast

编辑

启用 Kerberos FAST 身份验证。这可能会与某些 Active Directory 安装冲突。默认值为 false