Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| docker_notes:docker-dns [2024-12-29 Sun wk52 10:05] – [References] baumkp | docker_notes:docker-dns [2025-11-02 Sun wk44 09:07] (current) – [DDNS] baumkp | ||
|---|---|---|---|
| Line 5: | Line 5: | ||
| =====Linux setup to forward packets===== | =====Linux setup to forward packets===== | ||
| + | <color # | ||
| + | |||
| The main router must be set to forward packets! | The main router must be set to forward packets! | ||
| - | The ability to forward packets | + | It would seem that as of Debian 13 the ''/ |
| - | *net.ipv4.ip_forward = 1 | + | |
| - | *net.ipv4.conf.all.proxy_arp = 1 | + | The command '' |
| - | * '' | + | |
| - | After applying these changes reboot or apply setting using '' | + | ++++sudo vim /etc/sysctl.d/ |
| + | < | ||
| + | net.ipv4.conf.all.proxy_arp = 1 | ||
| + | net.ipv6.conf.all.forwarding=1</ | ||
| + | ++++ | ||
| + | After applying these changes reboot or apply setting using '' | ||
| + | * '' | ||
| + | |||
| + | The boot systemctl reads the following configuration files to adjust kernel parameters at boot: | ||
| + | */ | ||
| + | */ | ||
| + | */ | ||
| + | */ | ||
| + | */ | ||
| + | |||
| ====References==== | ====References==== | ||
| + | *[[https:// | ||
| *[[https:// | *[[https:// | ||
| + | *[[http:// | ||
| + | *[[https:// | ||
| + | *[[https:// | ||
| + | *[[https:// | ||
| + | *[[https:// | ||
| + | *[[https:// | ||
| =====Bind9 Controls===== | =====Bind9 Controls===== | ||
| Line 182: | Line 206: | ||
| See internal webpage [[https:// | See internal webpage [[https:// | ||
| + | |||
| + | =====DDNS===== | ||
| + | DDNS (Dynamic DNS) is used to update the DNS server with the DHCP assignments. | ||
| + | |||
| + | To further complicate matters I have 2 Bind9 servers in a master-slave configuration across to separate computers on my LAN as well as 2 separate Kea DHCP servers in a primary-secondary back-up configuration also on 2 separate computers on my LAN. This has worked really well for me. If one DNS or DHCP server are not functional my LAN operates well, previously without backup is the DNS or DHCP servers were not operational the LAN would loose functionality. | ||
| + | |||
| + | *Kea read the Docs: [[https:// | ||
| + | *[[https:// | ||
| + | *[[https:// | ||
| + | *Pre Kea - Using ISC DHCP Server | ||
| + | *[[https:// | ||
| + | *[[https:// | ||
| =====References===== | =====References===== | ||
| | | ||