From f5f09693f2ac52afb6f09a2714c7aa8966ac96a3 Mon Sep 17 00:00:00 2001 From: david hill Date: Wed, 29 Jun 2016 10:48:53 -0500 Subject: [PATCH] add check for invalid ip address of 128.0.0.1 --- oamapps/postConfigure/postConfigure.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oamapps/postConfigure/postConfigure.cpp b/oamapps/postConfigure/postConfigure.cpp index 918cad4b3..abb5aa270 100644 --- a/oamapps/postConfigure/postConfigure.cpp +++ b/oamapps/postConfigure/postConfigure.cpp @@ -1867,7 +1867,7 @@ int main(int argc, char *argv[]) callFree(pcommand); } - if (newModuleIPAddr == "127.0.0.1" || newModuleIPAddr == "0.0.0.0") { + if (newModuleIPAddr == "127.0.0.1" || newModuleIPAddr == "0.0.0.0" || || newModuleIPAddr == "128.0.0.1") { cout << endl << newModuleIPAddr + " is an Invalid IP Address for a multi-server system, please re-enter" << endl << endl; newModuleIPAddr = "unassigned"; if ( noPrompting )