33 lines
636 B
YAML
33 lines
636 B
YAML
---
|
|
|
|
# unbound upstream info
|
|
unbound_upstream_dns:
|
|
- "8.8.8.8"
|
|
- "1.1.1.1"
|
|
|
|
# unbound allow access
|
|
unbound_allow_access:
|
|
- name: "example-lan"
|
|
network: "192.168.1.0/24"
|
|
|
|
# unbound zones
|
|
unbound_zones:
|
|
|
|
# example.internal
|
|
- zone: "example.internal"
|
|
type: "static"
|
|
records:
|
|
|
|
- name: "server.example.internal"
|
|
value: "192.168.1.0"
|
|
|
|
- name: "example.internal"
|
|
type: "TXT"
|
|
value: "v=spf1 include:example.internal ~all"
|
|
|
|
- name: "_sip._tcp.example.internal"
|
|
type: "SRV"
|
|
priority: 10
|
|
weight: 60
|
|
port: 5060
|
|
value: "server.example.internal"
|