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) 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 \ } \ }, \