#!/bin/sh
# listen and redirect port from 0.0.0.0 to $REMOTE_HOST
LISTEN_PORT=2208
REMOTE_PORT=443
REMOTE_HOST=192.168.1.250
socat tcp-l:$LISTEN_PORT,fork,reuseaddr tcp:$REMOTE_HOST:$REMOTE_PORT
