Robin Mueller
918cd7b237
All checks were successful
EIVE/eive-obsw/pipeline/head This commit looks good
8 lines
280 B
Bash
Executable File
8 lines
280 B
Bash
Executable File
#!/bin/bash
|
|
echo "Q7S UDP connection from local port 18000 -> TCP ssh tunnel -> EM port 7301"
|
|
|
|
|
|
socat udp4-listen:18000,reuseaddr,fork tcp:localhost:18002 &
|
|
ssh -L 18002:localhost:18123 eive@flatsat.eive.absatvirt.lw \
|
|
'socat tcp4-listen:18123,reuseaddr udp:192.168.133.10:7301'
|