zlacker

[parent] [thread] 0 comments
1. bashy+(OP)[view] [source] 2025-12-04 12:04:23
Shell function;

``` tunnl() { if [ -z "$1" ]; then echo "Usage: tunnl <local-port>" return 1 fi

  ssh -t -R 80:localhost:"$1" proxy.tunnl.gg
} ```

There's also https://tunnelmole.com but requires binary or npm install

[go to top]