Go to file
2020-06-11 01:05:52 -05:00
vendor fix: add tests & fix missing soa 2020-06-09 21:54:01 -05:00
.cz.toml chore: improve cz commit ux 2020-06-09 12:11:05 -05:00
.editorconfig chore 2020-06-07 14:29:18 -05:00
.gitignore Init go package & gitignore 2020-06-04 12:30:08 -05:00
.golangci.yml fix: tests 2020-06-10 01:40:13 -05:00
.pre-commit-config.yaml chore: update pre-commit tooling 2020-06-11 01:05:52 -05:00
.prettierignore chores & lints 2020-06-04 13:07:07 -05:00
.prettierrc chores & lints 2020-06-04 13:07:07 -05:00
go.mod chore 2020-06-07 14:29:18 -05:00
go.sum chore 2020-06-07 14:29:18 -05:00
handler_test.go imp: complete minimum unit test suite 2020-06-10 21:47:52 -05:00
handler.go lint: additional linting & nolints 2020-06-10 03:03:59 -05:00
justfile chore: update pre-commit tooling 2020-06-11 01:05:52 -05:00
ldap.go imp: complete minimum unit test suite 2020-06-10 21:47:52 -05:00
LICENSE Add license 2018-01-16 07:52:25 +00:00
metrics.go chores & lints 2020-06-04 13:07:07 -05:00
README.md chores & lints 2020-06-04 13:07:07 -05:00
ready.go fix: lock value assingments & simplifications 2020-06-09 23:00:48 -05:00
setup_test.go lint: wsl only 2020-06-10 02:41:44 -05:00
setup.go imp: complete minimum unit test suite 2020-06-10 21:47:52 -05:00
sync_test.go imp: complete minimum unit test suite 2020-06-10 21:47:52 -05:00
sync.go imp: complete minimum unit test suite 2020-06-10 21:47:52 -05:00

ldap

Name

ldap - serves a zone from a ldap backend.

Description

The ldap plugin resolves A, AAAA y PTR RR from a ldap backend. To reduce load on the backend, you can enable cache by configuring cacheTimeout=30m.

Compilation

This package will always be compiled as part of CoreDNS and not in a standalone way. It will require you to use go get or as a dependency on plugin.cfg.

The manual will have more information about how to configure and extend the server with external plugins.

A simple way to consume this plugin, is by adding the following on plugin.cfg, and recompile it as detailed on coredns.io.

ldap:github.com/xoe-labs/ldap

After this you can compile coredns by:

go generate
go build

Or you can instead use make:

make

Syntax

ldap

Metrics

If monitoring is enabled (via the prometheus directive) the following metric is exported:

  • coredns_ldap_request_count_total{server} - query count to the ldap plugin.

The server label indicated which server handled the request, see the metrics plugin for details.

Ready

This plugin reports readiness to the ready plugin. It will be immediately ready.

Examples

In this configuration, we forward all queries to 9.9.9.9 and print "ldap" whenever we receive a query.

. {
  forward . 9.9.9.9
  ldap
}

Also See

See the manual.