Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
docker_notes:docker-dhcp [2026-04-06 Mon wk15 10:43] – [Network Ports] baumkpdocker_notes:docker-dhcp [2026-04-11 Sat wk15 08:19] (current) – [DHCP testing] baumkp
Line 14: Line 14:
  
 There are more references on building a home router and related here: [[https://wiki.kptree.net/doku.php?id=linux_router:dns_dhcp#main_references_used_2017|Main references used]], sadly some of these already suffer from link rot even though the information was still relevant. There are more references on building a home router and related here: [[https://wiki.kptree.net/doku.php?id=linux_router:dns_dhcp#main_references_used_2017|Main references used]], sadly some of these already suffer from link rot even though the information was still relevant.
 +
 +====ip4 assignment====
 +  *Manual assignment
 +  *dhcpv4 assignment
 +    *Automatic (from group assigned)
 +    *Manual assign from MAC (duidv4 is an option)
 +      *All network devices have a MAC number
 +
 +====ip6 assignment====
 +  *Manual assignment
 +  *slaac assignment
 +  *dhcpv6 assignment
 +    *Automatic (from group assigned)
 +    *Manual assign from DUID (MAC is an option)
 +    *
  
 =====Kea Packages and Hooks===== =====Kea Packages and Hooks=====
 ISC-Kea seems to be provided in a number of [[https://kb.isc.org/docs/isc-kea-packages|packages]] ISC-Kea seems to be provided in a number of [[https://kb.isc.org/docs/isc-kea-packages|packages]]
 +|<60em 12em 5em 30em>|
 ^ Package  ^ Use   ^ Descriptiion   ^ Comment   ^ ^ Package  ^ Use   ^ Descriptiion   ^ Comment   ^
 | isc-kea                  | ISC Kea metapackage                                                                                                                                                     | This installs everything                   | | isc-kea                  | ISC Kea metapackage                                                                                                                                                     | This installs everything                   |
Line 43: Line 59:
 ====Network Ports==== ====Network Ports====
 From IANA Service Name and Transport Protocol Port online [[https://www.iana.org/assignments/service-names-port-numbers/service-names-port-numbers.xhtml|Number Registry]]: From IANA Service Name and Transport Protocol Port online [[https://www.iana.org/assignments/service-names-port-numbers/service-names-port-numbers.xhtml|Number Registry]]:
 +|<40em>|
 ^Service Name ^Port ^Protocol ^Description ^  ^Service Name ^Port ^Protocol ^Description ^ 
 |bootps |67 |{tcp, udp} |Bootstrap Protocol Server (DHCPv4) | |bootps |67 |{tcp, udp} |Bootstrap Protocol Server (DHCPv4) |
Line 55: Line 72:
  
 ====DHCP testing==== ====DHCP testing====
-''%%sudo nmap --script broadcast-dhcp-discover%%'' will test for DHCP servers on the same network. It will only report the first DHCP server discovered.+  *''%%sudo nmap --script broadcast-dhcp-discover%%'' will test for DHCP servers on the same network. It will only report the first DHCP server discovered
 +  *''%%sudo nmap -6 --script broadcast-dhcp6-discover%%'' for Ipv6.