From 01ff8952ab66b72c737960f3f8c369011c9d31fb Mon Sep 17 00:00:00 2001 From: Eduardo Montoya Date: Mon, 4 Apr 2022 03:11:38 +0200 Subject: [PATCH] [thci] do not set `P_slaac` flag for Domain prefix (#7557) According to the Thread Specification the `P_slaac` flag should be set to false for the Domain prefix. --- tools/harness-thci/OpenThread.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/harness-thci/OpenThread.py b/tools/harness-thci/OpenThread.py index 29d999b7f..d1f3705b3 100644 --- a/tools/harness-thci/OpenThread.py +++ b/tools/harness-thci/OpenThread.py @@ -3219,7 +3219,7 @@ class OpenThreadTHCI(object): return dua def __addDefaultDomainPrefix(self): - self.configBorderRouter(P_dp=1, P_slaac_preferred=1, P_stable=1, P_on_mesh=1, P_default=1) + self.configBorderRouter(P_dp=1, P_stable=1, P_on_mesh=1, P_default=1) def __setDUA(self, sDua): """specify the DUA before Thread Starts."""