UDP over SSH: Difference between revisions
mNo edit summary |
|||
Line 24: | Line 24: | ||
* socat |
* socat |
||
* SSH <ref>[[wikipedia:SSH_(Secure_Shell)]]</ref> |
* SSH <ref>[[wikipedia:SSH_(Secure_Shell)]]</ref> |
||
* remote computer that can receive SSH connections (e.g. Raspberry Pi) and whose SSH port is exposed to the internet. |
* remote computer that can receive SSH connections (e.g. Raspberry Pi) and whose SSH port is exposed to the internet (e.g. via port forwarding). |
||
===== Example ===== |
===== Example ===== |
||
Connect to the remote computer (example.com) via SSH and forward our local TCP port 7000 to the remote computer: |
Connect to the remote computer (example.com) via SSH and forward our local TCP port 7000 to the remote computer's local TCP port 7000: |
||
ssh -L 7000:localhost:7000 example.com |
ssh -L 7000:localhost:7000 example.com |
||
Line 45: | Line 45: | ||
Now our local UDP traffic on port 6454 is tunneled to the remote device at 10.0.0.2 . |
Now our local UDP traffic on port 6454 is tunneled to the remote device at 10.0.0.2 . |
||
== References == |
== References == |
Revision as of 01:32, 5 February 2021
Forward UDP traffic on a specific port (like Art-Net) to a remote client via SSH.
Background
This comes in handy if you don't want to expose the remote device's UDP port directly to the internet and/or you want the connection through the Internet to be encrypted.
Caveat
SSH is based on TCP. Encapsulating UDP datagrams in TCP packets might have unwanted side effects. While a UDP datagram gets dropped if a transmission error occurs, TCP packets will be retransmitted which may cause unwanted delays. If such a delay is of any significance is open for discussion.
Diagram
Implementations
Linux
Socat
Socat [1] is a command-line utility to read from and write to TCP and UDP network connections.
Requirements
- socat
- SSH [2]
- remote computer that can receive SSH connections (e.g. Raspberry Pi) and whose SSH port is exposed to the internet (e.g. via port forwarding).
Example
Connect to the remote computer (example.com) via SSH and forward our local TCP port 7000 to the remote computer's local TCP port 7000:
ssh -L 7000:localhost:7000 example.com
Note: if you want to forward a port in the 1 - 1023 range you need root privileges (sudo).
Via the SSH shell on the remote computer (example.com) configure socat to listen on TCP port 7000 and forward the traffic (from port 7000) to IP address 10.0.0.2 on UDP port 6454:
sudo socat TCP-LISTEN:7000,fork UDP6:10.0.0.2:6454
On our local device we configure socat to listen on local UDP port 6454 and forward the traffic to local TCP port 7000, where the SSH port forward is configured:
sudo socat UDP-LISTEN:6454 TCP:localhost:7000
Now our local UDP traffic on port 6454 is tunneled to the remote device at 10.0.0.2 .