From 452071a309ce8afe44a67aa9d268a8f6399f771f Mon Sep 17 00:00:00 2001 From: "ayush.kumar" Date: Fri, 30 Oct 2020 11:37:38 +0530 Subject: [PATCH] Changed MNEDC Server Port from 8000 to 3334 Signed-off-by: ayush.kumar --- GoMain/Dockerfile | 2 +- samples/mnedc/client.config | 2 +- src/controller/mnedcmgr/types.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/GoMain/Dockerfile b/GoMain/Dockerfile index e62ade6b..abac9384 100644 --- a/GoMain/Dockerfile +++ b/GoMain/Dockerfile @@ -9,7 +9,7 @@ FROM $PLATFORM/ubuntu:16.04 ENV TARGET_DIR=/edge-orchestration ENV HTTP_PORT=56001 ENV MDNS_PORT=5353 -ENV MNEDC_PORT=8000 +ENV MNEDC_PORT=3334 ENV MNEDC_BROADCAST_PORT=3333 ENV ZEROCONF_PORT=42425 ENV APP_MAIN_DIR=GoMain diff --git a/samples/mnedc/client.config b/samples/mnedc/client.config index d86407b4..3684ebd1 100644 --- a/samples/mnedc/client.config +++ b/samples/mnedc/client.config @@ -1,2 +1,2 @@ 192.168.0.125 -8000 \ No newline at end of file +3334 \ No newline at end of file diff --git a/src/controller/mnedcmgr/types.go b/src/controller/mnedcmgr/types.go index 656f1f16..817906e3 100644 --- a/src/controller/mnedcmgr/types.go +++ b/src/controller/mnedcmgr/types.go @@ -19,7 +19,7 @@ package mnedcmgr const ( logPrefix = "[mnedcmgr]" - mnedcServerPort = 8000 + mnedcServerPort = 3334 broadcastServerPort = 3333 mnedcServerVirtualIP = "10.0.0.1" internalPort = 56002