From 34c810068a7b8d6afa65dfd05ec1fbc95b60c29a Mon Sep 17 00:00:00 2001 From: MarkAckert Date: Wed, 10 Sep 2025 15:16:19 -0400 Subject: [PATCH 1/2] update default http ip address to 0.0.0.0 Signed-off-by: MarkAckert --- c/zss.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/c/zss.c b/c/zss.c index f42ebb517..25dc1c980 100644 --- a/c/zss.c +++ b/c/zss.c @@ -472,7 +472,7 @@ ZSS_LOGGING_COMPONENTS_MAP(zssLogComponents) \"pluginsDir\": \"../defaults/plugins\", \ \"agent\": { \ \"http\": { \ - \"ipAddresses\": [\"127.0.0.1\"], \ + \"ipAddresses\": [\"0.0.0.0\"], \ \"port\": 7557 \ } \ }, \ From ee73c9c3ce1985b5fc7a7cbfda50869272a9a030 Mon Sep 17 00:00:00 2001 From: MarkAckert Date: Wed, 10 Sep 2025 15:36:11 -0400 Subject: [PATCH 2/2] update changelog Signed-off-by: MarkAckert --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 90c517c56..a2198b784 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,9 @@ All notable changes to the ZSS package will be documented in this file. +## `3.4.0` +- Bugfix: Update the default IP address for ZSS in http mode to `0.0.0.0`, fixing errors on some systems where `127.0.0.1` caused connectivity issues. [[#797](https://github.com/zowe/zss/pull/797)] + ## `3.3.0` - Enhancement: Utility "zis-test" is now used to ensure that ZIS is running and accessible by Zowe before starting ZSS. (zowe/zss#764) - Enhancement: Utility "bind-test" is now available in Zowe and used to validate if each Zowe server can succeed in binding to the user requested TCPIP port at each Zowe startup. (zowe/zss#764)