Skip to content

Commit eb06746

Browse files
Merge pull request #273 from beagles/fix_bind_config_typo
Changing listen addr from asterisk to any
2 parents f1e0d96 + 9398bca commit eb06746

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

templates/designatebackendbind9/config-named/options.conf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ options {
99

1010
# TODO: The '*'s need to be replaced by actual addresses.
1111
{{ if eq .IPVersion "4" }}
12-
listen-on port 53 { *; };
12+
listen-on port 53 { any; };
1313
listen-on-v6 { none; };
1414
{{ else if eq .IPVersion "6" }}
15-
listen-on-v6 port 53 { *; };
15+
listen-on-v6 port 53 { any; };
1616
listen-on { none; };
1717
{{ end }}
1818

0 commit comments

Comments
 (0)