coredns/plugin/bind
Francois Tur 76455c6a0d Plugin/BIND - extend the syntax to allow multiple addresses (#1512)
* Extend bind to allow multiple addresses. UTs added. Changes the log for server starting, adding address when available

* update readme for bind

* fixes after review

* minor fix on readme

* accept multiple BIND directives in blocserver, consolidate the addresses

* fixes after review - format logging server address, variable names
2018-02-14 20:19:32 +01:00
..
bind.go Remove the word middleware (#1067) 2017-09-14 09:36:06 +01:00
bind_test.go Plugin/BIND - extend the syntax to allow multiple addresses (#1512) 2018-02-14 20:19:32 +01:00
OWNERS Add OWNERS file (#1486) 2018-02-08 10:55:51 +00:00
README.md Plugin/BIND - extend the syntax to allow multiple addresses (#1512) 2018-02-14 20:19:32 +01:00
setup.go Plugin/BIND - extend the syntax to allow multiple addresses (#1512) 2018-02-14 20:19:32 +01:00

bind

Name

bind - overrides the host to which the server should bind.

Description

Normally, the listener binds to the wildcard host. However, you may want the listener to bind to another IP instead.

If several addresses are provided, a listener will be open on each of the IP provided.

Each address has to be an IP of one of the interfaces of the host.

Syntax

bind ADDRESS  ...

ADDRESS is an IP address to bind to. When several addresses are provided a listener will be opened on each of the addresses.

Examples

To make your socket accessible only to that machine, bind to IP 127.0.0.1 (localhost):

. {
    bind 127.0.0.1
}

To allow processing DNS requests only local host on both IPv4 and IPv6 stacks, use the syntax:

. {
    bind 127.0.0.1 ::1
}

If the configuration comes up with several bind directives, all addresses are consolidated together: The following sample is equivalent to the preceding:

. {
    bind 127.0.0.1 
    bind ::1
}