blob: 7d22343eb2b1944fd26bc5bf781083f4116338b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
if PACKAGE_coredns
config COREDNS_PLUGIN_GEOIP
bool "GeoIP plugin"
default n
config COREDNS_PLUGIN_TLS
bool "TLS plugin"
default y
config COREDNS_PLUGIN_QUIC
bool "QUIC plugin"
default n
config COREDNS_PLUGIN_ROUTE53
bool "Route53 plugin"
default n
config COREDNS_PLUGIN_AZURE
bool "Azure plugin"
default n
config COREDNS_PLUGIN_CLOUDDNS
bool "CloudDNS plugin"
default n
config COREDNS_PLUGIN_K8S_EXTERNAL
bool "k8s_external plugin"
default n
config COREDNS_PLUGIN_KUBERNETES
bool "Kubernetes plugin"
default n
config COREDNS_PLUGIN_ETCD
bool "Etcd plugin"
default n
config COREDNS_PLUGIN_GRPC
bool "gRPC plugin"
default n
config COREDNS_PLUGIN_ON
bool "On event plugin"
default n
config COREDNS_PLUGIN_NOMAD
bool "Nomad plugin"
default n
config COREDNS_PLUGIN_WGSD
bool "WireGuard Service Discovery plugin"
default y if PACKAGE_wgsd-coredns
select COREDNS_REQUIRE_GO_GET
help
wgsd is a CoreDNS plugin that serves WireGuard peer information via DNS-SD (RFC6763) semantics.
This enables use cases such as:
- Building a mesh of WireGuard peers from a central registry
- Dynamic discovery of WireGuard Endpoint addressing (both IP address and port number)
- NAT-to-NAT WireGuard connectivity where UDP hole punching is supported.
config COREDNS_PLUGIN_NETBOX
bool "Netbox plugin"
default n
select COREDNS_REQUIRE_GO_GET
config COREDNS_PLUGIN_FANOUT
bool "Fanout plugin"
default n
select COREDNS_REQUIRE_GO_GET
config COREDNS_PLUGIN_FINALIZE
bool "Finalize plugin"
default n
select COREDNS_REQUIRE_GO_GET
config COREDNS_REQUIRE_GO_GET
bool
default n
help
Custom plugins require `go get ./...` to pull dependencies.
endif
|