93c481b975
During AIO-DX IPv6 node installation, the management address for controller-1 set by dhclient receives a "/128" prefix length. The cause comes from DHCPv6, which does not inform a prefix length on its negotiation. The prefix should be learned via RA messages. Since the internode IPv6 communications in StarlingX do not contain a router and RA is in principle disabled on the management network, we must set the system with the default prefix length of 64. A similar patch was done for Centos. Test Plan [PASS] Install AIO-DX on IPv6 network, it is correctly setting the controller-1 mgmt ip address after the first boot. Story: 2009968 Task: 46184 Signed-off-by: Andre Fernando Zanella Kantek <AndreFernandoZanella.Kantek@windriver.com> Change-Id: I2fce4e7fce7f4e1fd6902d24330d7621b238031a
41 lines
1.2 KiB
Diff
41 lines
1.2 KiB
Diff
From 42a0e83df41494cc67157f98b18a4087f6853911 Mon Sep 17 00:00:00 2001
|
|
From: Andre Fernando Zanella Kantek
|
|
<AndreFernandoZanella.Kantek@windriver.com>
|
|
Date: Thu, 1 Sep 2022 10:05:09 -0300
|
|
Subject: [PATCH] Use prefixlen for IPv6 address operations
|
|
|
|
use the prefix length variable available to the script to correctly
|
|
set the address passed by the dhclient program.
|
|
|
|
|
|
Signed-off-by: Andre Fernando Zanella Kantek <AndreFernandoZanella.Kantek@windriver.com>
|
|
---
|
|
debian/dhclient-script.linux | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/debian/dhclient-script.linux b/debian/dhclient-script.linux
|
|
index 8b29988..915cc13 100644
|
|
--- a/debian/dhclient-script.linux
|
|
+++ b/debian/dhclient-script.linux
|
|
@@ -403,7 +403,7 @@ case "$reason" in
|
|
|
|
if [ "${new_ip6_address}" ]; then
|
|
# set leased IP
|
|
- ip -6 addr add ${new_ip6_address} \
|
|
+ ip -6 addr add ${new_ip6_address}/${new_ip6_prefixlen} \
|
|
dev ${interface} scope global
|
|
fi
|
|
|
|
@@ -429,7 +429,7 @@ case "$reason" in
|
|
fi
|
|
|
|
# delete leased IP
|
|
- ip -6 addr del ${old_ip6_address} \
|
|
+ ip -6 addr del ${old_ip6_address}/${old_ip6_prefixlen} \
|
|
dev ${interface}
|
|
|
|
;;
|
|
--
|
|
2.17.1
|
|
|