From ec2809d4538c4716a2116d3bf421449a249a550b Mon Sep 17 00:00:00 2001 From: "Arnaud G. GIBERT" Date: Tue, 2 Sep 2025 18:50:21 +0200 Subject: [PATCH] - Fix old IP problem returned by MyIPD service. --- Dockerfile | 4 ++-- ReleaseNotes.txt | 8 ++++++++ env.dist | 2 +- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index ddc887c..fa30fb3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -40,14 +40,14 @@ user=microsocks' #--------------------------------------------------------------------------------------------------------------- ARG MYIPD_INI='[program:myipd] \n\ directory='${MICROSOCKS_HOME}' \n\ -command=/bin/bash -c `while true; do myip | nc -l -q 0 ${MYIPD_PORT}; done` \n\ +command=/bin/bash -c `while true; do nc -l -q 0 -p ${MYIPD_PORT} -c myip; done` \n\ user=microsocks' #--------------------------------------------------------------------------------------------------------------- RUN urpmi.update -a \ - && urpmi --force microsocks netcat-openbsd \ + && urpmi --force microsocks netcat-traditional \ && mkdir ${MICROSOCKS_LIB} \ && useradd -M --home-dir ${MICROSOCKS_HOME} --password "" microsocks \ && echo -e "${MICROSOCKSD}" | sed -e "s/\`/'/g" -e 's/ *$//' > /etc/init.d/microsocksd \ diff --git a/ReleaseNotes.txt b/ReleaseNotes.txt index cbc45b6..b4d7005 100644 --- a/ReleaseNotes.txt +++ b/ReleaseNotes.txt @@ -1,3 +1,11 @@ +------------------------------------------------------------------------------------------------------------------------------------ +Rx3-Docker/MicroSocks V 1.1.2 - A. GIBERT - 2025/09/02 +------------------------------------------------------------------------------------------------------------------------------------ + +- Fix old IP problem returned by MyIPD service. + + + ------------------------------------------------------------------------------------------------------------------------------------ Rx3-Docker/MicroSocks V 1.1.1 - A. GIBERT - 2025/07/26 ------------------------------------------------------------------------------------------------------------------------------------ diff --git a/env.dist b/env.dist index e0a9dd7..c72bc51 100644 --- a/env.dist +++ b/env.dist @@ -21,7 +21,7 @@ APPL_NAME="microsocks" APPL_NAME_FULL="MicroSocks Proxy" APPL_NAME_SHORT="micsoc" APPL_ORG="rx3" -APPL_VERSION="1.1.1" +APPL_VERSION="1.1.2" APPL_MAINTAINER='"Arnaud G. GIBERT" ' APPL_URL_PREFIX="${ORG_REGISTRY}/${APPL_ORG}"