You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
187 B

#!/bin/bash
# socks-proxy.sh
# GPLv3+
# Creates a SOCKS proxy from the local machine to the host on the commandline.
# Usage:
# socks-proxy.sh [hostname]
set -x
ssh -S none -N -D 8080 $@