1

Create localexpose

This commit is contained in:
Evan Pratten 2020-12-08 15:32:00 -05:00
parent 80f7e8ec23
commit 6580b48a7e

13
scripts/localexpose Executable file
View File

@ -0,0 +1,13 @@
#! /bin/bash
# Opens a local port that redirects to a remote server
if [ "$#" -lt 2 ]; then
echo "Usage: $0 <remote_host> <remote_port> [local_port]"
exit 1
fi
REMOTE_HOST=$1
REMOTE_PORT=$2
LOCAL_PORT=${3:-$REMOTE_PORT}
echo "Forwarding connections for 0.0.0.0:$LOCAL_PORT to $1:$2"
socat tcp-listen:$3,reuseaddr,fork tcp:$1:$2