mailcow-dockerized-docs/docs/manual-guides/Unbound/u_e-unbound-fwd.en.md

56 Zeilen
1,5 KiB
Markdown

If you want or have to use an external DNS service, you can either set a forwarder in Unbound or copy an override file to define external DNS servers:
2022-05-13 11:29:19 +02:00
!!! warning
Please do not use a public resolver like we did in the example above. Many - if not all - blacklist lookups will fail with public resolvers, because blacklist server has limits on how much requests can be done from one IP and public resolvers usually reach this limits. <br>
**Important**: Only DNSSEC validating DNS services will work.
## Method A, Unbound
Edit `data/conf/unbound/unbound.conf` and append the following parameters:
```
forward-zone:
name: "."
forward-addr: 8.8.8.8 # DO NOT USE PUBLIC DNS SERVERS - JUST AN EXAMPLE
forward-addr: 8.8.4.4 # DO NOT USE PUBLIC DNS SERVERS - JUST AN EXAMPLE
```
Restart Unbound:
=== "docker compose (Plugin)"
``` bash
docker compose restart unbound-mailcow
```
=== "docker-compose (Standalone)"
``` bash
docker-compose restart unbound-mailcow
```
## Method B, Override file
```
cd /opt/mailcow-dockerized
2022-09-01 09:33:47 +02:00
cp helper-scripts/docker-compose.override.yml.d/EXTERNAL_DNS/docker-compose.override.yml .
```
2022-09-01 09:33:47 +02:00
Edit `docker-compose.override.yml` and adjust the IP.
Afterwards stop and start the Docker Stack again:
=== "docker compose (Plugin)"
``` bash
docker compose down
docker compose up -d
```
=== "docker-compose (Standalone)"
``` bash
docker-compose down
docker-compose up -d
```