7 lines
260 B
Bash
7 lines
260 B
Bash
#!/bin/sh
|
|
set -eu
|
|
# Dedicated simulation channel. Existing Observatory port 18080 is untouched.
|
|
exec ssh -N -T -o BatchMode=yes -o ExitOnForwardFailure=yes \
|
|
-o ServerAliveInterval=5 -o ServerAliveCountMax=3 \
|
|
-R 127.0.0.1:18081:127.0.0.1:8000 mission-gpu
|