diff --git a/examples/platform/linux/AppMain.cpp b/examples/platform/linux/AppMain.cpp index f99cb4cf902219..9030459ed7d7b9 100644 --- a/examples/platform/linux/AppMain.cpp +++ b/examples/platform/linux/AppMain.cpp @@ -222,8 +222,8 @@ CHIP_ERROR InitCommissioner() ReturnErrorOnFailure(gFabricStorage.Initialize(&gServerStorage)); factoryParams.fabricStorage = &gFabricStorage; - // use a different listen port for the commissioner. - factoryParams.listenPort = LinuxDeviceOptions::GetInstance().securedCommissionerPort; + // use a different listen port for the commissioner than the default used by chip-tool. + factoryParams.listenPort = LinuxDeviceOptions::GetInstance().securedCommissionerPort + 10; params.storageDelegate = &gServerStorage; params.deviceAddressUpdateDelegate = nullptr; params.operationalCredentialsDelegate = &gOpCredsIssuer;