Skip to content

Commit

Permalink
Revert to busybox nc for metricsproxy
Browse files Browse the repository at this point in the history
nmap-ncat is causing issues in metricsproxy with globalnet:

Ncat: Version 7.92 ( https://nmap.org/ncat )
Ncat: Listening on :::8081
Ncat: Listening on 0.0.0.0:8081
Ncat: Connection from 10.129.0.19.
Ncat: Connection from 10.129.0.19:45064.
Ncat: assertion failed: count <= INT_MAX QUITTING.

It's not clear how to fix that, so this installs busybox and reverts
to busybox nc instead. To avoid having too many changes in nettest,
nmap-ncat is preserved for other uses.

Signed-off-by: Stephen Kitt <[email protected]>
  • Loading branch information
skitt authored and tpantelis committed Jan 7, 2025
1 parent 6c995ec commit aa61809
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package/Dockerfile.nettest
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ COPY scripts/shared/dnf_install /

RUN /dnf_install -a ${TARGETPLATFORM} -v ${FEDORA_VERSION} -r /output/nettest \
glibc bash glibc-minimal-langpack coreutils-single libcurl-minimal \
bind-utils curl-minimal iperf3 iproute iputils netperf nmap-ncat tcpdump
bind-utils busybox curl-minimal iperf3 iproute iputils netperf nmap-ncat tcpdump

FROM scratch
ARG TARGETPLATFORM
Expand Down
2 changes: 1 addition & 1 deletion scripts/nettest/metricsproxy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh

# Arguments: source-port target-IP target-port
exec /usr/bin/ncat -v -lk -p "$1" -c "/usr/bin/ncat $2 $3"
exec /usr/sbin/busybox nc -v -lk -p "$1" -e /usr/sbin/busybox nc "$2" "$3"

0 comments on commit aa61809

Please sign in to comment.