summaryrefslogtreecommitdiff
path: root/irmd.conf.in
diff options
context:
space:
mode:
authorDimitri Staessens <dimitri@ouroboros.rocks>2025-08-17 12:09:12 +0200
committerSander Vrijders <sander@ouroboros.rocks>2025-09-10 08:19:52 +0200
commit5274cb3ce09c40cccd29ec771ad49a2069aa37c4 (patch)
tree634d94ede018b6c108a85e30e5f29f1725bf6100 /irmd.conf.in
parentf2a6a1c302a5e962c61857ed4a2f03bd5991b41c (diff)
downloadouroboros-5274cb3ce09c40cccd29ec771ad49a2069aa37c4.tar.gz
ouroboros-5274cb3ce09c40cccd29ec771ad49a2069aa37c4.zip
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 <dimitri@ouroboros.rocks> Signed-off-by: Sander Vrijders <sander@ouroboros.rocks>
Diffstat (limited to 'irmd.conf.in')
-rw-r--r--irmd.conf.in9
1 files changed, 8 insertions, 1 deletions
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.