WhisperLiveKit / scripts /port_forwarding.sh
Marti Umbert
scripts/: some useful bash scripts to launch the server and do port forwarding
39e8fd5
raw
history blame contribute delete
138 Bytes
#!/bin/bash
IP=84.88.51.151
PORT=8000
USER=marti
cmd="ssh -L $PORT:localhost:$PORT -N -o GatewayPorts=yes $USER@$IP"
echo $cmd
eval $cmd