From 5274cb3ce09c40cccd29ec771ad49a2069aa37c4 Mon Sep 17 00:00:00 2001 From: Dimitri Staessens Date: Sun, 17 Aug 2025 12:09:12 +0200 Subject: ipcpd: Add ipcpd over UDP/IPv6 This adds an IPCP that runs over UDP/IPv6. It's structured like the eth-dix and eth-llc in that it builds two separate binaries: ipcpd-udp4 and ipcpd-udp6. The IRM CLI is backwards compatible in that type 'udp' will resolve to type 'udp4'. Signed-off-by: Dimitri Staessens Signed-off-by: Sander Vrijders --- irmd.conf.in | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'irmd.conf.in') diff --git a/irmd.conf.in b/irmd.conf.in index 5f44ed45..4861bc51 100644 --- a/irmd.conf.in +++ b/irmd.conf.in @@ -86,13 +86,20 @@ dev="lo" # hash="SHA3_224" # Defaults to SHA3_256. reg=["lan1"] -[udp.udp1] +[udp4.udp1] bootstrap="udp" # Defaults to not set. # BOOTSTRAP CONFIGURATION ip="127.0.0.1" # port=9000 # Defaults to 3435. # dns="127.0.0.1" # Requires a DDNS server. Disables DDNS support if not set. +[udp6.udp2] +bootstrap="udp2" # Defaults to not set. + # BOOTSTRAP CONFIGURATION +ip="::1" +# port=9000 # Defaults to 3435. +# dns="::1" # Requires a DDNS server. Disables DDNS support if not set. + [broadcast.bc1] bootstrap="broadcast" # Defaults to not set. # autobind=true # Defaults to false. -- cgit v1.2.3